From 9dc653694a0f9f056eb9e3ba3472509fe7efa09b Mon Sep 17 00:00:00 2001 From: mgw <1392924357@qq.com> Date: Fri, 22 Sep 2023 09:31:56 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=89=8D=E6=9A=82?= =?UTF-8?q?=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_plan/__manifest__.py | 3 +- sf_plan/models/__init__.py | 1 + sf_plan/models/duration.py | 25 +++++++++++ sf_plan/security/ir.model.access.csv | 1 + sf_plan/views/duration_view.xml | 52 +++++++++++++++++++++++ sf_plan/views/view.xml | 2 +- web_gantt/static/src/js/gantt_renderer.js | 15 +++++-- web_gantt/static/src/js/gantt_row.js | 45 ++++++++++++++++++-- web_gantt/static/src/xml/web_gantt.xml | 13 +++++- 9 files changed, 146 insertions(+), 11 deletions(-) create mode 100644 sf_plan/models/duration.py create mode 100644 sf_plan/views/duration_view.xml diff --git a/sf_plan/__manifest__.py b/sf_plan/__manifest__.py index 54f3b064..430084ef 100644 --- a/sf_plan/__manifest__.py +++ b/sf_plan/__manifest__.py @@ -16,7 +16,8 @@ 'depends': ['sf_manufacturing'], 'data': [ 'security/ir.model.access.csv', - 'views/view.xml' + 'views/view.xml', + 'views/duration_view.xml' ], 'assets': { diff --git a/sf_plan/models/__init__.py b/sf_plan/models/__init__.py index c47d4ff3..bc694edf 100644 --- a/sf_plan/models/__init__.py +++ b/sf_plan/models/__init__.py @@ -2,3 +2,4 @@ # Part of Odoo. See LICENSE file for full copyright and licensing details. from . import custom_plan +from . import duration diff --git a/sf_plan/models/duration.py b/sf_plan/models/duration.py new file mode 100644 index 00000000..6fbe34e2 --- /dev/null +++ b/sf_plan/models/duration.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +import base64 +import json, requests +from odoo import models, fields, api, _ +from datetime import datetime, timedelta +from odoo.exceptions import UserError, ValidationError + + +class HoleDuration(models.Model): + _name = 'hole.duration' + _description = 'Hole Duration' + + hole_diameter = fields.Selection([('3', '≤¢3'), ('6', '≤¢6'), ('10', '≤¢10'), ('12', '≤¢12'), ('16', '≤¢16'), ('25', '≤¢25')], string='孔径', required=True) + name = fields.Char(string='名称', required=True, default='钻孔') + hole_depth = fields.Selection([ + ('10', '≤10'), + ('30', '≤30'), + ('50', '≤50'), + ('70', '≤70'), + ('90', '≤90'), + ('100', '≤100'), + ('120', '≤120'), + ('150', '≤150')], string='深度', required=True) + working_hours = fields.Float(string='工时', required=True) + hole_expansion = fields.Float(string='扩孔', required=True, default=0.6) diff --git a/sf_plan/security/ir.model.access.csv b/sf_plan/security/ir.model.access.csv index 3a1a20c9..9fe7bb5c 100644 --- a/sf_plan/security/ir.model.access.csv +++ b/sf_plan/security/ir.model.access.csv @@ -1,6 +1,7 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_sf_production_plan,sf.production.plan,model_sf_production_plan,base.group_user,1,1,1,1 access_sf_machine_schedule,sf.machine.schedule,model_sf_machine_schedule,base.group_user,1,1,1,1 +access_hole_duration,hole.duration,model_hole_duration,base.group_user,1,1,1,1 diff --git a/sf_plan/views/duration_view.xml b/sf_plan/views/duration_view.xml new file mode 100644 index 00000000..c592fae3 --- /dev/null +++ b/sf_plan/views/duration_view.xml @@ -0,0 +1,52 @@ + + + + + hole.duration.tree + hole.duration + + + + + + + + + + + + + hole.duration.form + hole.duration + +
+ + + + + + + + + +
+
+
+ + + 孔加工 + ir.actions.act_window + hole.duration + tree,form + + + + +
+
diff --git a/sf_plan/views/view.xml b/sf_plan/views/view.xml index 49a42c5f..5df9e8db 100644 --- a/sf_plan/views/view.xml +++ b/sf_plan/views/view.xml @@ -128,7 +128,7 @@ decoration-success="state == 'done'" progress_bar="name" form_view_id="sf_production_plan_form" - default_scale="week" + default_scale="day" scales="day,week,month,year" precision="{'day': 'hour:quarter', 'week': 'day:half', 'month': 'day', 'year': 'month:quarter'}"> diff --git a/web_gantt/static/src/js/gantt_renderer.js b/web_gantt/static/src/js/gantt_renderer.js index d0c55a1d..f5b9ccc2 100644 --- a/web_gantt/static/src/js/gantt_renderer.js +++ b/web_gantt/static/src/js/gantt_renderer.js @@ -684,10 +684,18 @@ export default AbstractRenderer.extend(WidgetAdapterMixin, { const stopDate = this.state.stopDate; let day = this.state.startDate; const dates = []; - while (day <= stopDate) { - dates.push(day); - day = day.clone().add(1, token); + if (this.state.scale == "day") { + while (day <= stopDate) { + dates.push(day); + day = day.clone().add(8, token); + } + } else { + while (day <= stopDate) { + dates.push(day); + day = day.clone().add(1, token); + } } + console.log(dates) return dates; }, /** @@ -806,6 +814,7 @@ export default AbstractRenderer.extend(WidgetAdapterMixin, { * @override */ async _renderView() { + console.log('this.state', this.state) const oldRowWidgets = Object.keys(this.rowWidgets).map((rowId) => { return this.rowWidgets[rowId]; }); diff --git a/web_gantt/static/src/js/gantt_row.js b/web_gantt/static/src/js/gantt_row.js index 4527a2ad..03de908b 100644 --- a/web_gantt/static/src/js/gantt_row.js +++ b/web_gantt/static/src/js/gantt_row.js @@ -261,12 +261,18 @@ var GanttRow = Widget.extend({ _adaptPills: function () { var self = this; var dateStartField = this.state.dateStartField; + console.log("dateStartField",dateStartField) var dateStopField = this.state.dateStopField; + console.log("dateStopField",dateStopField) var ganttStartDate = this.state.startDate; + console.log("ganttStartDate",ganttStartDate) var ganttStopDate = this.state.stopDate; + console.log("ganttStopDate",ganttStopDate) this.pills.forEach(function (pill) { var pillStartDate = self._convertToUserTime(pill[dateStartField]); + console.log("pillStartDate",pillStartDate) var pillStopDate = self._convertToUserTime(pill[dateStopField]); + console.log("pillStopDate",pillStopDate) if (pillStartDate < ganttStartDate) { pill.startDate = ganttStartDate; pill.disableStartResize = true; @@ -459,13 +465,44 @@ var GanttRow = Widget.extend({ let margin; switch (self.state.scale) { case 'day': - left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); - pill.leftMargin = (left / 60) * 100; + // left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); + // console.log('left', left) + // pill.leftMargin = (left / 60) * 100; + // console.log('pill.leftMargin', pill.leftMargin) + // diff = pill.stopDate.diff(pill.startDate, 'minutes'); + // console.log('diff', diff) + // var gapSize = pill.stopDate.diff(pill.startDate, 'hours') - 1; // Eventually compensate border(s) width + // console.log('gapSize', gapSize) + // widthPill = (diff / 60) * 100; + // console.log('widthPill', widthPill) + // margin = pill.aggregatedPills ? 0 : 4; + // console.log('margin', margin) + // pill.width = gapSize > 0 ? `calc(${widthPill}% + ${gapSize}px - ${margin}px)` : `calc(${widthPill}% - ${margin}px)`; + // console.log('pill.width', pill.width) + // break; + + left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); + console.log('left', left) + left = (left / (8 * 60)) * 100; // 修改这里,以8小时为单位 + console.log('adjusted left', left) + pill.leftMargin = left; + diff = pill.stopDate.diff(pill.startDate, 'minutes'); - var gapSize = pill.stopDate.diff(pill.startDate, 'hours') - 1; // Eventually compensate border(s) width - widthPill = (diff / 60) * 100; + console.log('diff', diff) + diff = (diff / (8 * 60)) * 100; // 修改这里,以8小时为单位 + console.log('adjusted diff', diff) + + var gapSize = pill.stopDate.diff(pill.startDate, 'hours') / 8 - 1; // 修改这里,以8小时为单位 + console.log('gapSize', gapSize) + + widthPill = diff; + console.log('widthPill', widthPill) + margin = pill.aggregatedPills ? 0 : 4; + console.log('margin', margin) + pill.width = gapSize > 0 ? `calc(${widthPill}% + ${gapSize}px - ${margin}px)` : `calc(${widthPill}% - ${margin}px)`; + console.log('pill.width', pill.width) break; case 'week': case 'month': diff --git a/web_gantt/static/src/xml/web_gantt.xml b/web_gantt/static/src/xml/web_gantt.xml index 264a37ae..5af631a8 100644 --- a/web_gantt/static/src/xml/web_gantt.xml +++ b/web_gantt/static/src/xml/web_gantt.xml @@ -76,8 +76,17 @@
- - + +
夜班
+
+ +
早班
+
+ +
晚班
+
+ +
From cee39f3e1fee36a1cca49b310fb482998c2a0621 Mon Sep 17 00:00:00 2001 From: mgw <1392924357@qq.com> Date: Fri, 22 Sep 2023 11:13:13 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=9C=8B=E6=9D=BF?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jikimo_frontend/static/src/scss/custom_style.scss | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/jikimo_frontend/static/src/scss/custom_style.scss b/jikimo_frontend/static/src/scss/custom_style.scss index f557fe38..4cb7e696 100644 --- a/jikimo_frontend/static/src/scss/custom_style.scss +++ b/jikimo_frontend/static/src/scss/custom_style.scss @@ -253,6 +253,17 @@ div[class="o_content o_component_with_search_panel"] .show_state span { div[class="o_content o_component_with_search_panel"] .o_kanban_primary_right > .row { position: absolute; top: 55px; - right: 263px; + right: 43.5%; +} + +@media screen and (min-width: 1200px) { + div[class="o_content o_component_with_search_panel"] .o_kanban_primary_right > .row { + right: 52%; + } + + div[class="o_content o_component_with_search_panel"] .o_kanban_card_content button { + left: -95px; +} + } From 52a7e2d6985cc5728895c8724d5d243cb5efca87 Mon Sep 17 00:00:00 2001 From: mgw <1392924357@qq.com> Date: Fri, 22 Sep 2023 17:34:45 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E6=96=B0=E6=97=B6=E9=97=B4=E5=B0=BA?= =?UTF-8?q?=E5=BA=A6=E4=B8=8Bpill=E5=B7=B2=E5=8F=AF=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=EF=BC=88=E5=8C=85=E6=8B=AC=E5=B7=A6=E8=BE=B9?= =?UTF-8?q?=E8=B7=9D=E5=92=8C=E5=AE=BD=E5=BA=A6=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web_gantt/static/src/js/gantt_row.js | 66 ++++++++++++++++------------ 1 file changed, 38 insertions(+), 28 deletions(-) diff --git a/web_gantt/static/src/js/gantt_row.js b/web_gantt/static/src/js/gantt_row.js index 03de908b..1d7058e1 100644 --- a/web_gantt/static/src/js/gantt_row.js +++ b/web_gantt/static/src/js/gantt_row.js @@ -466,44 +466,46 @@ var GanttRow = Widget.extend({ switch (self.state.scale) { case 'day': // left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); - // console.log('left', left) - // pill.leftMargin = (left / 60) * 100; - // console.log('pill.leftMargin', pill.leftMargin) - // diff = pill.stopDate.diff(pill.startDate, 'minutes'); - // console.log('diff', diff) - // var gapSize = pill.stopDate.diff(pill.startDate, 'hours') - 1; // Eventually compensate border(s) width - // console.log('gapSize', gapSize) - // widthPill = (diff / 60) * 100; - // console.log('widthPill', widthPill) - // margin = pill.aggregatedPills ? 0 : 4; - // console.log('margin', margin) - // pill.width = gapSize > 0 ? `calc(${widthPill}% + ${gapSize}px - ${margin}px)` : `calc(${widthPill}% - ${margin}px)`; - // console.log('pill.width', pill.width) - // break; + left = pill.startDate.diff(pill.startDate.clone().startOf('day'), 'minutes') % (8 * 60); - left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); console.log('left', left) - left = (left / (8 * 60)) * 100; // 修改这里,以8小时为单位 - console.log('adjusted left', left) - pill.leftMargin = left; - + pill.leftMargin = (left / 480) * 100; + console.log('pill.leftMargin', pill.leftMargin) diff = pill.stopDate.diff(pill.startDate, 'minutes'); console.log('diff', diff) - diff = (diff / (8 * 60)) * 100; // 修改这里,以8小时为单位 - console.log('adjusted diff', diff) - - var gapSize = pill.stopDate.diff(pill.startDate, 'hours') / 8 - 1; // 修改这里,以8小时为单位 + var gapSize = pill.stopDate.diff(pill.startDate, 'hours') - 8; // Eventually compensate border(s) width console.log('gapSize', gapSize) - - widthPill = diff; + widthPill = (diff / 480) * 100; console.log('widthPill', widthPill) - margin = pill.aggregatedPills ? 0 : 4; console.log('margin', margin) - pill.width = gapSize > 0 ? `calc(${widthPill}% + ${gapSize}px - ${margin}px)` : `calc(${widthPill}% - ${margin}px)`; console.log('pill.width', pill.width) break; + + // left = pill.startDate.diff(pill.startDate.clone().startOf('hour'), 'minutes'); + // console.log('left', left) + // left = (left / (8 * 60)) * 100; // 修改这里,以8小时为单位 + // console.log('adjusted left', left) + // pill.leftMargin = left; + // + // diff = pill.stopDate.diff(pill.startDate, 'minutes'); + // console.log('diff', diff) + // diff = (diff / (8 * 60)) * 100; // 修改这里,以8小时为单位 + // console.log('adjusted diff', diff) + // + // var gapSize = pill.stopDate.diff(pill.startDate, 'hours') / 8 - 1; // 修改这里,以8小时为单位 + // console.log('gapSize', gapSize) + // + // widthPill = diff; + // console.log('widthPill', widthPill) + // + // margin = pill.aggregatedPills ? 0 : 4; + // console.log('margin', margin) + // + // pill.width = gapSize > 0 ? `calc(${widthPill}% + ${gapSize}px - ${margin}px)` : `calc(${widthPill}% - ${margin}px)`; + // console.log('pill.width', pill.width) + // break; case 'week': case 'month': left = pill.startDate.diff(pill.startDate.clone().startOf('day'), 'hours'); @@ -703,21 +705,28 @@ var GanttRow = Widget.extend({ * @private */ _insertIntoSlot: function () { + console.log('this.slots', this.slots); var slotsToFill = this.slots; this.pills.forEach(function (currentPill) { var skippedSlots = []; slotsToFill.some(function (currentSlot) { + console.log('currentPill.startDate1111111111', currentPill) + // console.log('currentSlot.stop2222222222222', currentSlot.stop) var fitsInThisSlot = currentPill.startDate < currentSlot.stop; + console.log('fitsInThisSlot', fitsInThisSlot) if (fitsInThisSlot) { currentSlot.pills.push(currentPill); + console.log('currentSlot.pills', currentSlot.pills) } else { skippedSlots.push(currentSlot); + console.log('skippedSlots', skippedSlots) } return fitsInThisSlot; }); // Pills are sorted by start date, so any slot that was skipped // for this pill will not be suitable for any of the next pills slotsToFill = _.difference(slotsToFill, skippedSlots); + console.log('slotsToFill', slotsToFill) }); }, /** @@ -764,7 +773,7 @@ var GanttRow = Widget.extend({ let index = 0; for (const date of this.viewInfo.slots) { const slotStart = date; - const slotStop = date.clone().add(1, interval); + const slotStop = date.clone().add(8, interval); const isToday = date.isSame(new Date(), 'day') && this.state.scale !== 'day'; let slotStyle = ''; @@ -796,6 +805,7 @@ var GanttRow = Widget.extend({ stop: slotStop, pills: [], }); + console.log('啊啊啊啊this啊啊啊啊.啊啊啊啊slots啊啊啊啊', this.slots) } }, /** From b574175a56c656b9cb34773196d78763f1465f29 Mon Sep 17 00:00:00 2001 From: mgw <1392924357@qq.com> Date: Tue, 26 Sep 2023 11:31:14 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E9=A1=BA=E5=BA=8F=EF=BC=8C=E4=BF=AE=E6=94=B9=E2=80=9D=E5=BC=80?= =?UTF-8?q?=E7=A5=A8=E2=80=9C=E7=BF=BB=E8=AF=91=E4=B8=BA=E2=80=9D=E5=BA=94?= =?UTF-8?q?=E6=94=B6=E5=BA=94=E4=BB=98=E2=80=9C=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_machine_connect/__manifest__.py | 6 +- sf_plan_management/i18n/zh_CN.po | 81533 +++++++++++++++- .../views/operations_rename_menu.xml | 63 + .../static/img/jikimo_backgroud.png | Bin 0 -> 1101818 bytes 4 files changed, 78732 insertions(+), 2870 deletions(-) create mode 100644 web_enterprise/static/img/jikimo_backgroud.png diff --git a/sf_machine_connect/__manifest__.py b/sf_machine_connect/__manifest__.py index 92a4548e..3afbb200 100644 --- a/sf_machine_connect/__manifest__.py +++ b/sf_machine_connect/__manifest__.py @@ -33,9 +33,9 @@ ], 'assets': { 'web.assets_backend': [ - 'sf_machine_connect/static/src/xml/barcode_button.xml', - 'sf_machine_connect/static/src/js/barcode_button.js', - 'sf_machine_connect/static/src/css/barcode_button.css', + # 'sf_machine_connect/static/src/xml/barcode_button.xml', + # 'sf_machine_connect/static/src/js/barcode_button.js', + # 'sf_machine_connect/static/src/css/barcode_button.css', ], }, diff --git a/sf_plan_management/i18n/zh_CN.po b/sf_plan_management/i18n/zh_CN.po index d92d2937..1b311da9 100644 --- a/sf_plan_management/i18n/zh_CN.po +++ b/sf_plan_management/i18n/zh_CN.po @@ -1,29 +1,37 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sf_manufacturing -# * quality -# * maintenance -# * purchase_stock # * purchase -# * mrp_workorder -# * mrp -# * sf_plan_management -# * sale_management -# * stock -# * stock_account -# * sf_quality -# * quality_mrp_workorder -# * quality_control -# * sf_base +# * sf_plan # * account -# * quality_mrp +# * sf_quality +# * sf_sale +# * sf_base +# * sf_plan_management +# * mrp +# * sf_manufacturing +# * sf_tool_management +# * quality +# * mail +# * base +# * sf_bf_connect +# * base_import +# * sf_mrs_connect +# * sale_management +# * maintenance +# * stock_barcode +# * sf_dlm +# * quality_control +# * purchase_stock +# * stock +# * sf_warehouse +# * mrp_workorder # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-03 03:20+0000\n" -"PO-Revision-Date: 2023-08-03 03:20+0000\n" +"POT-Creation-Date: 2023-09-26 02:53+0000\n" +"PO-Revision-Date: 2023-09-26 02:53+0000\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -32,6 +40,7 @@ msgstr "" "Plural-Forms: \n" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -43,7 +52,41 @@ msgstr "" "\n" "%s --> 产品单位是 %s (%s) - 库存移动单位是 %s (%s)" +#. module: base +#: model:ir.module.module,description:base.module_l10n_at_reports +msgid "" +"\n" +"\n" +"Accounting reports for Austria.\n" +"================================\n" +"\n" +" * Defines the following reports:\n" +" * Profit/Loss (§ 231 UGB Gesamtkostenverfahren)\n" +" * Balance Sheet (§ 224 UGB)\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_at +msgid "" +"\n" +"\n" +"Austrian charts of accounts (Einheitskontenrahmen 2010).\n" +"==========================================================\n" +"\n" +" * Defines the following chart of account templates:\n" +" * Austrian General Chart of accounts 2010\n" +" * Defines templates for VAT on sales and purchases\n" +" * Defines tax templates\n" +" * Defines fiscal positions for Austrian fiscal legislation\n" +" * Defines tax reports U1/U30\n" +"\n" +" " +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -55,7 +98,244 @@ msgstr "" "\n" "阻塞: %s" +#. module: base +#: model:ir.module.module,description:base.module_mail +msgid "" +"\n" +"\n" +"Chat, mail gateway and private channel.\n" +"=======================================\n" +"\n" +"Communicate with your colleagues/customers/guest within Odoo.\n" +"\n" +"Discuss/Chat\n" +"------------\n" +"User-friendly \"Discuss\" features that allows one 2 one or group communication\n" +"(text chat/voice call/video call), invite guests and share documents with\n" +"them, all real-time.\n" +"\n" +"Mail gateway\n" +"------------\n" +"Sending information and documents made simplified. You can send emails\n" +"from Odoo itself, and that too with great possibilities. For example,\n" +"design a beautiful email template for the invoices, and use the same\n" +"for all your customers, no need to do the same exercise every time.\n" +"\n" +"Chatter\n" +"-------\n" +"Do all the contextual conversation on a document. For example on an\n" +"applicant, directly post an update to send email to the applicant,\n" +"schedule the next interview call, attach the contract, add HR officer\n" +"to the follower list to notify them for important events(with help of\n" +"subtypes),...\n" +"\n" +"\n" +"Retrieve incoming email on POP/IMAP servers.\n" +"============================================\n" +"Enter the parameters of your POP/IMAP account(s), and any incoming emails on\n" +"these accounts will be automatically downloaded into your Odoo system. All\n" +"POP3/IMAP-compatible servers are supported, included those that require an\n" +"encrypted SSL/TLS connection.\n" +"This can be used to easily create email-based workflows for many email-enabled Odoo documents, such as:\n" +"----------------------------------------------------------------------------------------------------------\n" +" * CRM Leads/Opportunities\n" +" * CRM Claims\n" +" * Project Issues\n" +" * Project Tasks\n" +" * Human Resource Recruitment (Applicants)\n" +"Just install the relevant application, and you can assign any of these document\n" +"types (Leads, Project Issues) to your incoming email accounts. New emails will\n" +"automatically spawn new documents of the chosen type, so it's a snap to create a\n" +"mailbox-to-Odoo integration. Even better: these documents directly act as mini\n" +"conversations synchronized by email. You can reply from within Odoo, and the\n" +"answers will automatically be collected when they come back, and attached to the\n" +"same *conversation* document.\n" +"For more specific needs, you may also assign custom-defined actions\n" +"(technically: Server Actions) to be triggered for each incoming mail.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_dk +msgid "" +"\n" +"\n" +"Localization Module for Denmark\n" +"===============================\n" +"\n" +"This is the module to manage the **accounting chart for Denmark**. Cover both one-man business as well as I/S, IVS, ApS and A/S\n" +"\n" +"**Modulet opsætter:**\n" +"\n" +"- **Dansk kontoplan**\n" +"\n" +"- Dansk moms\n" +" - 25% moms\n" +" - Resturationsmoms 6,25%\n" +" - Omvendt betalingspligt\n" +"\n" +"- Konteringsgrupper\n" +" - EU (Virksomhed)\n" +" - EU (Privat)\n" +" - 3.lande\n" +"\n" +"- Finans raporter\n" +" - Resulttopgørelse\n" +" - Balance\n" +" - Momsafregning\n" +" - Afregning\n" +" - Rubrik A, B og C\n" +"\n" +"- **Anglo-Saxon regnskabsmetode**\n" +"\n" +".\n" +"\n" +"Produkt setup:\n" +"==============\n" +"\n" +"**Vare**\n" +"\n" +"**Salgsmoms:** Salgmoms 25%\n" +"\n" +"**Salgskonto:** 1010 Salg af vare, m/moms\n" +"\n" +"**Købsmoms:** Købsmoms 25%\n" +"\n" +"**Købskonto:** 2010 Direkte omkostninger vare, m/moms\n" +"\n" +".\n" +"\n" +"**Ydelse**\n" +"\n" +"**Salgsmoms:** Salgmoms 25%, ydelser\n" +"\n" +"**Salgskonto:** 1011 Salg af ydelser, m/moms\n" +"\n" +"**Købsmoms:** Købsmoms 25%, ydelser\n" +"\n" +"**Købskonto:** 2011 Direkte omkostninger ydelser, m/moms\n" +"\n" +".\n" +"\n" +"**Vare med omvendt betalingspligt**\n" +"\n" +"**Salgsmoms:** Salg omvendt betalingspligt\n" +"\n" +"**Salgskonto:** 1012 Salg af vare, u/moms\n" +"\n" +"**Købsmoms:** Køb omvendt betalingspligt\n" +"\n" +"**Købskonto:** 2012 Direkte omkostninger vare, u/moms\n" +"\n" +"\n" +".\n" +"\n" +"**Restauration**\n" +"\n" +"**Købsmoms:** Restaurationsmoms 6,25%, købsmoms\n" +"\n" +"**Købskonto:** 4010 Restaurationsbesøg\n" +"\n" +".\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_do +msgid "" +"\n" +"\n" +"Localization Module for Dominican Republic\n" +"===========================================\n" +"\n" +"Catálogo de Cuentas e Impuestos para República Dominicana, Compatible para\n" +"**Internacionalización** con **NIIF** y alineado a las normas y regulaciones\n" +"de la Dirección General de Impuestos Internos (**DGII**).\n" +"\n" +"**Este módulo consiste de:**\n" +"\n" +"- Catálogo de Cuentas Estándar (alineado a DGII y NIIF)\n" +"- Catálogo de Impuestos con la mayoría de Impuestos Preconfigurados\n" +" - ITBIS para compras y ventas\n" +" - Retenciones de ITBIS\n" +" - Retenciones de ISR\n" +" - Grupos de Impuestos y Retenciones:\n" +" - Telecomunicaiones\n" +" - Proveedores de Materiales de Construcción\n" +" - Personas Físicas Proveedoras de Servicios\n" +" - Otros impuestos\n" +"- Secuencias Preconfiguradas para manejo de todos los NCF\n" +" - Facturas con Valor Fiscal (para Ventas)\n" +" - Facturas para Consumidores Finales\n" +" - Notas de Débito y Crédito\n" +" - Registro de Proveedores Informales\n" +" - Registro de Ingreso Único\n" +" - Registro de Gastos Menores\n" +" - Gubernamentales\n" +"- Posiciones Fiscales para automatización de impuestos y retenciones\n" +" - Cambios de Impuestos a Exenciones (Ej. Ventas al Estado)\n" +" - Cambios de Impuestos a Retenciones (Ej. Compra Servicios al Exterior)\n" +" - Entre otros\n" +"\n" +"**Nota:**\n" +"Esta localización, aunque posee las secuencias para NCF, las mismas no pueden\n" +"ser utilizadas sin la instalación de módulos de terceros o desarrollo\n" +"adicional.\n" +"\n" +"Estructura de Codificación del Catálogo de Cuentas:\n" +"===================================================\n" +"\n" +"**Un dígito** representa la categoría/tipo de cuenta del del estado financiero.\n" +"**1** - Activo **4** - Cuentas de Ingresos y Ganancias\n" +"**2** - Pasivo **5** - Costos, Gastos y Pérdidas\n" +"**3** - Capital **6** - Cuentas Liquidadoras de Resultados\n" +"\n" +"**Dos dígitos** representan los rubros de agrupación:\n" +"11- Activo Corriente\n" +"21- Pasivo Corriente\n" +"31- Capital Contable\n" +"\n" +"**Cuatro dígitos** se asignan a las cuentas de mayor: cuentas de primer orden\n" +"1101- Efectivo y Equivalentes de Efectivo\n" +"2101- Cuentas y Documentos por pagar\n" +"3101- Capital Social\n" +"\n" +"**Seis dígitos** se asignan a las sub-cuentas: cuentas de segundo orden\n" +"110101 - Caja\n" +"210101 - Proveedores locales\n" +"\n" +"**Ocho dígitos** son para las cuentas de tercer orden (las visualizadas\n" +"en Odoo):\n" +"1101- Efectivo y Equivalentes\n" +"110101- Caja\n" +"11010101 Caja General\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_jp +msgid "" +"\n" +"\n" +"Overview:\n" +"---------\n" +"\n" +"* Chart of Accounts and Taxes template for companies in Japan.\n" +"* This probably does not cover all the necessary accounts for a company. You are expected to add/delete/modify accounts based on this template.\n" +"\n" +"Note:\n" +"-----\n" +"\n" +"* Fiscal positions '内税' and '外税' have been added to handle special requirements which might arise from POS implementation. [1] Under normal circumstances, you might not need to use those at all.\n" +"\n" +"[1] See https://github.com/odoo/odoo/pull/6470 for detail.\n" +"\n" +" " +msgstr "" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "" @@ -68,10 +348,86 @@ msgstr "" "\n" "\n" "凭证 (%s) 不平衡.\n" -"借方合计 %s 与贷方合计 %s需相等.\n" -"您可能需要在日记帐 \"%s\" 上指定默认科目,以自动平衡每个凭证。" +"借方总数等于 %s, 贷方总数等于 %s.\n" +"您可能希望在日记帐“%s”上指定一个默认科目以自动平衡每个凭证." + +#. module: base +#. odoo-python +#: code:addons/base/models/res_config.py:0 +#: code:addons/base/models/res_config.py:0 +#, python-format +msgid "" +"\n" +"\n" +"This addon is already installed on your system" +msgstr "" +"\n" +"\n" +"该模块已经安装到您的系统中了" + +#. module: base +#: model:ir.module.module,description:base.module_pos_sale +msgid "" +"\n" +"\n" +"This module adds a custom Sales Team for the Point of Sale. This enables you to view and manage your point of sale sales with more ease.\n" +msgstr "" +"\n" +"此模块为PoS营业点增加自定销售团队. 这使您能够更轻松地视图和管理PoS营业点.\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_sale_margin +msgid "" +"\n" +"\n" +"This module adds enable you to view the margin of your Point of Sale orders in the Sales Margin report.\n" +msgstr "" +"\n" +"\n" +"添加此模块后,您可以在《销售利润报告》中查看销售点的订单利润。\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_restaurant +msgid "" +"\n" +"\n" +"This module adds several features to the Point of Sale that are specific to restaurant management:\n" +"- Bill Printing: Allows you to print a receipt before the order is paid\n" +"- Bill Splitting: Allows you to split an order into different orders\n" +"- Kitchen Order Printing: allows you to print orders updates to kitchen or bar printers\n" +"\n" +msgstr "" +"\n" +"本模块向PoS营业点增加了几个特定于餐厅管理的功能:\n" +"- 帐单打印: 允许您在支付订单之前打印收据\n" +"- 帐单拆分: 允许您将订单拆分为不同的订单\n" +"- 厨房订单打印: 允许您打印订单更新到厨房或酒吧打印机\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_discount +msgid "" +"\n" +"\n" +"This module allows the cashier to quickly give percentage-based\n" +"discount to a customer.\n" +"\n" +msgstr "" +"\n" +"此模块允许出纳快速给出基于百分比的客户折扣.\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_daily_sales_reports +msgid "" +"\n" +"\n" +"This module allows the cashier to quickly print a X and a Z sale report\n" +"for a given session or a Sales Details for multiple sessions\n" +"and configs.\n" +"\n" +msgstr "" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "" @@ -84,6 +440,7 @@ msgstr "" "调拨 %s:如果没有预留或完成任何数量的调拨,则无法验证这些调拨。 要强制执行这些调拨,请编辑以增加完成的数量。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "" @@ -95,6 +452,27 @@ msgstr "" "\n" "调拨%s:您需要提供产品%s的批号/序列号。" +#. module: base +#: model:ir.module.module,description:base.module_pos_epson_printer_restaurant +msgid "" +"\n" +"\n" +"Use Epson Printers as Order Printers in the Point of Sale without the IoT Box\n" +msgstr "" +"\n" +"在没有IoT物联网盒子的PoS营业点使用爱普生打印机作为订单打印机\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_epson_printer +msgid "" +"\n" +"\n" +"Use Epson ePOS Printers without the IoT Box in the Point of Sale\n" +msgstr "" +"\n" +"\n" +"使用爱普生ePOS打印机,在PoS营业点不使用IoT物联网盒子\n" + #. module: purchase #: model:ir.actions.report,print_report_name:purchase.action_report_purchase_order msgid "" @@ -103,6 +481,1111 @@ msgid "" " 'Purchase Order - %s' % (object.name))" msgstr "" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_gateway_allowed.py:0 +#, python-format +msgid "" +"\n" +"

\n" +" Add addresses to the Allowed List\n" +"

\n" +" To protect you from spam and reply loops, Odoo automatically blocks emails\n" +" coming to your gateway past a threshold of %i emails every %i\n" +" minutes. If there are some addresses from which you need to receive very frequent\n" +" updates, you can however add them below and Odoo will let them go through.\n" +"

\n" +" " +msgstr "" +"\n" +"

将地址添加到允许列表

为了保护您免受垃圾邮件和回复循环的侵害,Odoo会自动阻止电子邮件\n" +" 进入您的网关超过电子邮件%i%i值\n" +" 纪要。如果有一些地址,您需要非常频繁地接收\n" +" 更新,但是您可以在下面添加它们,Odoo会让它们通过。

\n" +" " + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_eg_edi_eta +msgid "" +"\n" +" Egyptian Tax Authority Invoice Integration\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_ke_edi_tremol +msgid "" +"\n" +" Kenya Tremol Device EDI Integration\n" +" " +msgstr "" +"\n" +" 肯尼亚Tremol设备EDI集成\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_timesheet +msgid "" +"\n" +" - Allow to set project for Helpdesk team\n" +" - Track timesheet for a task from a ticket\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hu +msgid "" +"\n" +" Accounting chart and localization for Hungary\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_reports +msgid "" +"\n" +" Accounting reports for Belgium\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl_reports +msgid "" +"\n" +" Accounting reports for Chile\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hr_reports +msgid "" +"\n" +" Accounting reports for Croatia (in EURO !)\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de_reports +msgid "" +"\n" +" Accounting reports for Germany\n" +" Contains Balance sheet, Profit and Loss, VAT and Partner VAT reports\n" +" Also adds DATEV export options to general ledger\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hu_reports +msgid "" +"\n" +" Accounting reports for Hungary\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lt_reports +msgid "" +"\n" +" Accounting reports for Lithuania\n" +"\n" +" Contains Balance Sheet, Profit/Loss reports\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_nl_reports +msgid "" +"\n" +" Accounting reports for Netherlands\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pk_reports +msgid "" +"\n" +" Accounting reports for Pakistan\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pl_reports +msgid "" +"\n" +" Accounting reports for Poland\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_rs_reports +msgid "" +"\n" +" Accounting reports for Serbia\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_es_reports +msgid "" +"\n" +" Accounting reports for Spain\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_se_reports +msgid "" +"\n" +" Accounting reports for Sweden\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ch_reports +msgid "" +"\n" +" Accounting reports for Switzerland\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_tr_reports +msgid "" +"\n" +" Accounting reports for Turkey\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_uk_reports +msgid "" +"\n" +" Accounting reports for UK\n" +"\n" +" Allows to send the tax report via the\n" +" MTD-VAT API to HMRC.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_us_reports +msgid "" +"\n" +" Accounting reports for US\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_event_crm_questions +msgid "" +"\n" +" Add information when we build the description of a lead to include\n" +" the questions and answers linked to the registrations.\n" +" " +msgstr "" +"\n" +" 在我们构建要包含的潜在客户描述时增加消息\n" +" 与报名相关的问题和答案. " + +#. module: base +#: model:ir.module.module,description:base.module_appointment +msgid "" +"\n" +" Allow clients to Schedule Appointments through the Portal\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_us_1099 +msgid "" +"\n" +" Allows users to easily export accounting data that can be imported to a 3rd party that does 1099 e-filing.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents +msgid "" +"\n" +" App to upload and manage your documents.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_gcc_invoice_stock_account +msgid "" +"\n" +" Arabic/English for GCC + lot/SN numbers\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_fsm +msgid "" +"\n" +" Avoid auto-enabling the documents feature on fsm projects.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_bo_reports +msgid "" +"\n" +" Base module for Bolivian reports\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_bg_reports +msgid "" +"\n" +" Base module for Bulgarian reports\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mz_reports +msgid "" +"\n" +" Base module for Mozambican reports\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_timesheet_forecast_contract +msgid "" +"\n" +" Better plan your future schedules by considering time effectively spent on old plannings\n" +" taking employees' contracts into account\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_sale_timesheet +msgid "" +"\n" +" Bill timesheets logged on helpdesk tickets.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_maintenance +msgid "" +"\n" +" Bridge between HR and Maintenance." +msgstr "" +"\n" +" HR和维护之间的桥梁." + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_fsm_sale +msgid "" +"\n" +" Bridge between Helpdesk and Industry FSM Sale\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_quality +msgid "" +"\n" +" Bridge module between MRP subcontracting and Quality\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_repair +msgid "" +"\n" +" Bridge module between MRP subcontracting and Repair\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_reports_sms +msgid "" +"\n" +" Bridge module between belgian accounting and SMS\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_account_reports +msgid "" +"\n" +" Bridge module between point_of_sale and account_reports,\n" +" for tax reporting." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_intrastat +msgid "" +"\n" +" Bridge module between purchase and intrastat.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_intrastat +msgid "" +"\n" +" Bridge module between sale and intrastat.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_product_configurator +msgid "" +"\n" +" Bridge module for website_sale / sale_product_configurator" +msgstr "" +"\n" +"网站/销售/销售_产品_设置的桥接模块" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_stock_product_configurator +msgid "" +"\n" +" Bridge module for website_sale_stock / sale_product_configurator" +msgstr "" +"\n" +"网站_销售_库存/销售_产品_设置 的桥接模块" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_product_configurator +msgid "" +"\n" +" Bridge module to make the website e-commerce compatible with the product configurator\n" +" " +msgstr "" +"\n" +"桥接模块使网站电子商务与产品设置兼容\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_stock_product_configurator +msgid "" +"\n" +" Bridge module to make the website e-commerce stock management compatible with the product configurator\n" +" " +msgstr "" +"\n" +"桥接模块使网站电子商务库存管理与产品设置兼容\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_bg +msgid "" +"\n" +" Chart accounting and taxes for Bulgaria\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lv +msgid "" +"\n" +" Chart of Accounts (COA) Template for Latvia's Accounting.\n" +" This module also includes:\n" +" * Tax groups,\n" +" * Most common Latvian Taxes,\n" +" * Fiscal positions,\n" +" * Latvian bank list.\n" +"\n" +" author is Allegro IT (visit for more information https://www.allegro.lv)\n" +" co-author is Chick.Farm (visit for more information https://www.myacc.cloud)\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lt +msgid "" +"\n" +" Chart of Accounts (COA) Template for Lithuania's Accounting.\n" +"\n" +" This module also includes:\n" +"\n" +" * List of available banks in Lithuania.\n" +" * Tax groups.\n" +" * Most common Lithuanian Taxes.\n" +" * Fiscal positions.\n" +" * Account Tags.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_si +msgid "" +"\n" +" Chart of accounts and taxes for Slovenia.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_fsm +msgid "" +"\n" +" Convert helpdesk tickets to field service tasks.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_product_unspsc +msgid "" +"\n" +" Countries like Colombia, Peru and Mexico need to be able to use the\n" +" UNSPSC code for their products and uoms.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_in_purchase_stock +msgid "" +"\n" +" Define default purchase journal on the warehouse" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_purchase_stock +msgid "" +"\n" +" Define default purchase journal on the warehouse,\n" +" help you to choose correct purchase journal on the purchase order when\n" +" you change the picking operation.\n" +" useful when you setup the multiple GSTIN units.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_in_sale_stock +msgid "" +"\n" +" Define default sales journal on the warehouse" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_sale_stock +msgid "" +"\n" +" Define default sales journal on the warehouse,\n" +" help you to choose correct sales journal on the sales order when\n" +" you change the warehouse.\n" +" useful when you setup the multiple GSTIN units.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_disallowed_expenses +msgid "" +"\n" +" Disallowed Expenses Data for Belgium\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_fsm_report +msgid "" +"\n" +" Display the worksheet template when planning an Intervention from a ticket\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_id_efaktur +msgid "" +"\n" +" E-Faktur Menu(Indonesia)\n" +" Format : 010.000-16.00000001\n" +" * 2 (dua) digit pertama adalah Kode Transaksi\n" +" * 1 (satu) digit berikutnya adalah Kode Status\n" +" * 3 (tiga) digit berikutnya adalah Kode Cabang\n" +" * 2 (dua) digit pertama adalah Tahun Penerbitan\n" +" * 8 (delapan) digit berikutnya adalah Nomor Urut\n" +"\n" +" To be able to export customer invoices as e-Faktur,\n" +" you need to put the ranges of numbers you were assigned\n" +" by the government in Accounting > Customers > e-Faktur\n" +"\n" +" When you validate an invoice, where the partner has the ID PKP\n" +" field checked, a tax number will be assigned to that invoice.\n" +" Afterwards, you can filter the invoices still to export in the\n" +" invoices list and click on Action > Download e-Faktur to download\n" +" the csv and upload it to the site of the government.\n" +"\n" +" You can replace an already sent invoice by another by indicating\n" +" the replaced invoice and the new one and you can reset an invoice\n" +" you have not already sent to the government to reuse its number.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_sa_edi +msgid "" +"\n" +" E-Invoicing, Universal Business Language\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sa_edi +msgid "" +"\n" +" E-invoice implementation for the Kingdom of Saudi Arabia\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_reports +msgid "" +"\n" +" Electronic accounting reports\n" +" - COA\n" +" - Trial Balance\n" +" DIOT Report\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_reports_post_wizard +msgid "" +"\n" +" Enable the VAT wizard when posting a tax return journal entry\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_digest_enterprise +msgid "" +"\n" +" Enterprise digest data\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_us_payment_nacha +msgid "" +"\n" +" Export payments as NACHA files for use in the United States.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_temporal +msgid "" +"\n" +" Extend sale flow to sell/lease/rent a product depending on duration, quantity, price list" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_sepa +msgid "" +"\n" +" Generate payment orders as recommended by the SEPA norm, thanks to pain.001 messages. Supported pain version (countries) are pain.001.001.03 (generic), pain.001.001.03.ch.02 (Switzerland) and pain.001.003.03 (Germany). The generated XML file can then be uploaded to your bank.\n" +"\n" +" This module follow the implementation guidelines issued by the European Payment Council.\n" +" For more information about the SEPA standards : http://www.iso20022.org/ and http://www.europeanpaymentscouncil.eu/\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_winbooks_import +msgid "" +"\n" +" Import Data From Winbooks\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_au_keypay +msgid "" +"\n" +" KeyPay Payroll Integration\n" +" This Module will synchronise all payrun journals from KeyPay to Odoo.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_voip +msgid "" +"\n" +" Make calls using a VOIP system" +msgstr "" +"\n" +" 使用 VOIP 系统来拨打电话" + +#. module: base +#: model:ir.module.module,description:base.module_mail_group +msgid "" +"\n" +" Manage your mailing lists from Odoo.\n" +" " +msgstr "" +"\n" +" 从 Odoo 管理您的邮件列表\n" +" " + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_reports_closing +msgid "" +"\n" +" Mexico Month 13 Trial Balance Report\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_fec_import +msgid "" +"\n" +" Module for the import of FEC standard files, useful for importing accounting history.\n" +"\n" +" FEC files (fichier des écritures comptables) are the standard accounting reports that French businesses have to submit to the tax authorities.\n" +" This module allows the import of accounts, journals, partners and moves from these files.\n" +"\n" +" Only the CSV format of FEC is implemented.\n" +" 'utf-8', 'utf-8-sig' and 'iso8859_15' are the only allowed encodings.\n" +" Several delimiters are allowed : ';' or '|' or ',' or '\t'.\n" +"\n" +" Official Technical Specification (fr)\n" +" https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000027804775/\n" +"\n" +" FEC Testing tool from the tax authorities\n" +" https://github.com/DGFiP/Test-Compta-Demat\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mz +msgid "" +"\n" +" Mozambican Accounting localization\n" +" " +msgstr "" +"\n" +" 莫桑比克会计本地化" + +#. module: base +#: model:ir.module.module,summary:base.module_fixed_header_list +msgid "" +"\n" +" Set Fix Header List, Set Fix Header Tree, Set Permanent Header List, Web Sticky Header List, Freeze Header List, \n" +" Set Fix Header, Set Permanent Header, Web Sticky Header, Freeze Header, Set Fix Header in List, Set Permanent Header in List, \n" +" Web Sticky Header in List, Freeze Header in List, Set Fix List Header, Set Permanent List Header, Web Sticky List Header, \n" +" Freeze List Header, All in one Fix Header, All in one Permanent Header, All in one Web Sticky Header List, Frozen Header Frozen,\n" +" All in one Freeze Header List, All in one Sticky Tree Header, All in one Sticky List Header, All ine One Sticky View List,\n" +" List View Manager ListView Manager, Sticky Tree View Fixed Tree View, All in one Tree View, Fix List Header Table, Fixed Table Header, \n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_renting +msgid "" +"\n" +" Specify rentals of products (products, quotations, invoices, ...)\n" +" Manage status of products, rentals, delays\n" +" Manage user and manager notifications\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_sparse_field +msgid "" +"\n" +" The purpose of this module is to implement \"sparse\" fields, i.e., fields\n" +" that are mostly null. This implementation circumvents the PostgreSQL\n" +" limitation on the number of columns in a table. The values of all sparse\n" +" fields are stored in a \"serialized\" field in the form of a JSON mapping.\n" +" " +msgstr "" +"\n" +" 该模块的目的是实现\"分布\"字段,即大部分为空的字段.\n" +" 此实现规避了 PostgreSQL 对表中列数的限制.\n" +" 所有分布字段的值都以 JSON 对应的形式存储在一个\"连续的\"字段中.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_purchase +msgid "" +"\n" +" This bridge module adds some smart buttons between Purchase and Subcontracting\n" +" " +msgstr "" +"\n" +" 这个桥接模块在采购和分销之间增加了一些智慧按钮. " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_dropshipping +msgid "" +"\n" +" This bridge module allows to manage subcontracting with the dropshipping module.\n" +" " +msgstr "" +"\n" +"此桥接模块允许使用跌落模块管理外包发包.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_account +msgid "" +"\n" +" This bridge module allows to manage subcontracting with valuation.\n" +" " +msgstr "" +"\n" +"此桥模块允许管理具有估价的外包合同.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_stock_barcode_mrp_subcontracting +msgid "" +"\n" +" This bridge module is auto-installed when the modules stock_barcode and mrp_subcontracting are installed.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_barcode_quality_control +msgid "" +"\n" +" This bridge module is auto-installed when the modules stock_barcode and quality_control are installed.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_rs +msgid "" +"\n" +" This is the base module of the Serbian localization. It manages chart of accounts and taxes.\n" +" " +msgstr "" +"\n" +" 本模块为塞尔维亚本地化基础模块,管理会计科目表和税务。" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_ph +msgid "" +"\n" +" This is the module to manage the accounting chart for The Philippines.\n" +" " +msgstr "" +"\n" +" 本模块管理菲律宾会计图表。 " + +#. module: base +#: model:ir.module.module,description:base.module_account_qr_code_sepa +msgid "" +"\n" +" This module adds support for SEPA Credit Transfer QR-code generation.\n" +" " +msgstr "" +"\n" +"此模块增加了对 SEPA Credit Transfer QR 码创建的支持.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_approvals_purchase +msgid "" +"\n" +" This module adds to the approvals workflow the possibility to generate\n" +" RFQ from an approval purchase request.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_delivery_mondialrelay +msgid "" +"\n" +" This module allow your customer to choose a Point Relais® and use it as shipping address.\n" +" " +msgstr "" +"\n" +"此模块允许您的客户选择 Point Relais® 并用作送货地址.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_delivery_mondialrelay +msgid "" +"\n" +" This module allow your customer to choose a Point Relais® and use it as shipping address.\n" +" This module doesn't implement the WebService. It is only the integration of the widget.\n" +"\n" +" Delivery price pre-configured is an example, you need to adapt the pricing's rules.\n" +" " +msgstr "" +"\n" +" 此模块允许您的客户选择 Point Relais® 并将其用作送货地址.\n" +" 该模块不实现网站服务(WebService). 它只是小部件的集合.\n" +"\n" +" 默认定的交货价格是一个样例,您需要调整定价规则.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_purchase_product_matrix +msgid "" +"\n" +" This module allows to fill Purchase Orders rapidly\n" +" by choosing product variants quantity through a Grid Entry.\n" +" " +msgstr "" +"\n" +"该模块允许通过矩阵分录选择产品变体数量来快速填写采购订单.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_product_matrix +msgid "" +"\n" +" This module allows to fill Sales Order rapidly\n" +" by choosing product variants quantity through a Grid Entry.\n" +" " +msgstr "" +"\n" +"该模块允许通过矩阵分录选择产品变体数量来快速填写销售订单.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_project_forecast +msgid "" +"\n" +" This module allows you to schedule your Sales Order based on the product configuration.\n" +"\n" +" For products on which the \"Plan Services\" option is enabled, you will have the opportunity\n" +" to automatically forecast the shifts for employees whom are able to take the shift\n" +" (i.e. employees who have the same role as the one configured on the product).\n" +"\n" +" Forecast shifts and keep an eye on the hours consumed on your plannable products.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_planning +msgid "" +"\n" +" This module allows you to schedule your Sales Order based on the product configuration.\n" +"\n" +" For products on which the \"Plan Services\" option is enabled, you will have the opportunity\n" +" to automatically plan the shifts for employees whom are able to take the shift\n" +" (i.e. employees who have the same role as the one configured on the product).\n" +"\n" +" Plan shifts and keep an eye on the hours consumed on your plannable products.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_sepa_direct_debit +msgid "" +"\n" +" This module enables the generation of SEPA Direct Debit (SDD)-compliant XML files (consistent\n" +" with pain.008.001.02 specification) to send to your bank in order to\n" +" collect a set of payments.\n" +"\n" +" To be elligible for this payment method, a customer must have first\n" +" returned a mandate to the company, giving his consent to use direct debit.\n" +" This consent must have been encoded as a 'customer mandate' into Odoo.\n" +"\n" +" You also need to meet the following requirements in order to properly\n" +" generate a SDD file:\n" +" - Your company account must be set to a valid IBAN number\n" +" - Your company must have been given a creditor identifier (this can be done in the 'settings' menu of the accounting module)\n" +" - Your company must have defined a journal to receive SDD payments (again, in 'settings' of accounting module)\n" +" - Every customer for which you generate a payment must have a valid IBAN account number.\n" +"\n" +" Odoo will let you know if any of these requirements are not satisfied.\n" +"\n" +" Any invoice that gets validated for a customer with a mandate will be\n" +" automatically set in 'paid' state, and a payment will be generated. An\n" +" option in the dashboard will then allow you to view all the payments generated\n" +" via SDD and to generate a XML collection file for them, grouping them as\n" +" you see fit.\n" +"\n" +" A dedicated 'SEPA Direct Debit' payment method is also available for\n" +" open invoices, when selecting a bank account in the 'register payment' wizard.\n" +" Use it to generate a SDD payment for the invoices if you added a mandate\n" +" for its owner after its validation. You will see an error message if you\n" +" try to use this method on an invoice for whose payment no mandate can be used.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_google_recaptcha +msgid "" +"\n" +" This module implements reCaptchaV3 so that you can prevent bot spam on your public modules.\n" +" " +msgstr "" +"\n" +"此模块实现了 reCaptchaV3,以便您可以防止公共模块上的机器人垃圾邮件.\n" +" " + +#. module: base +#: model:ir.module.module,summary:base.module_account_online_synchronization +msgid "" +"\n" +" This module is used for Online bank synchronization." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_appraisal_skills +msgid "" +"\n" +" This module makes it possible to manage employee skills during an appraisal process.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_mobile +msgid "" +"\n" +" This module provides the core of the Odoo Mobile App.\n" +" " +msgstr "" +"\n" +" 此模块会为您提供 Odoo 行动应用的核心.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_es_edi_sii +msgid "" +"\n" +" This module sends the taxes information (mostly VAT) of the \n" +" vendor bills and customer invoices to the SII. It is called \n" +" Procedimiento G417 - IVA. Llevanza de libros registro. It is \n" +" required for every company with a turnover of +6M€ and others can \n" +" already make use of it. The invoices are automatically \n" +" sent after validation. \n" +" \n" +" How the information is sent to the SII depends on the \n" +" configuration that is put in the taxes. The taxes \n" +" that were in the chart template (l10n_es) are automatically \n" +" configured to have the right type. It is possible however \n" +" that extra taxes need to be created for certain exempt/no sujeta reasons. \n" +" \n" +" You need to configure your certificate and the tax agency. \n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de_datev_reports +msgid "" +"\n" +" This module serves to provide the possibility to define two identifiers\n" +" on partners: one for customer and one for supplier, used for the DateV export\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_maintenance +msgid "" +"\n" +" Track equipments and maintenance requests" +msgstr "" +"\n" +" 跟踪设备和维护请求" + +#. module: base +#: model:ir.module.module,description:base.module_hr_recruitment_survey +msgid "" +"\n" +" Use interview forms during recruitment process.\n" +" This module is integrated with the survey module\n" +" to allow you to define interviews for different jobs.\n" +" " +msgstr "" +"\n" +"在招聘过程中使用面试表格.\n" +"此模块与调查模块集成,\n" +"允许您定义不同工作的面试.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_timesheet_enterprise +msgid "" +"\n" +" When invoicing timesheets, allows invoicing either all timesheets\n" +" linked to an SO, or only the validated timesheets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_xml_polizas +msgid "" +"\n" +" XML Export of the Journal Entries for the Mexican Tax Authorities for a compulsory audit.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_zpl_print +msgid "" +"\n" +" 在本模块,实现了一键打印功能\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_purchase_product_matrix +msgid "" +"\n" +" Add variants to your purchase orders through an Order Grid Entry.\n" +" " +msgstr "" +"\n" +"通过订单矩阵分录向采购订单增加变体.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_partner_autocomplete +msgid "" +"\n" +" Auto-complete partner companies' data\n" +" " +msgstr "" +"\n" +"自动完成合作伙伴公司的数据\n" +" " + +#. module: base +#: model:ir.module.module,summary:base.module_product_matrix +msgid "" +"\n" +" Technical module: Matrix Implementation\n" +" " +msgstr "" +"\n" +"技术模块:矩阵实现\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_eg_edi_eta +msgid "" +"\n" +" This module integrate with the ETA Portal to automatically sign and send your invoices to the tax Authority.\n" +" Special thanks to Plementus for their help in developing this module.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke_edi_tremol +msgid "" +"\n" +" This module integrates with the Kenyan G03 Tremol control unit device to the KRA through TIMS.\n" +" " +msgstr "" +"\n" +" 本模块通过TIMS与肯尼亚G03 Tremol控制单元设备集成至KRA。 " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_multilang +msgid "" +"\n" +" * Multi language support for Chart of Accounts, Taxes, Tax Codes, Journals,\n" +" Accounting Templates, Analytic Chart of Accounts and Analytic Journals.\n" +" * Setup wizard changes\n" +" - Copy translations for COA, Tax, Tax Code and Fiscal Position from\n" +" templates to target objects.\n" +" " +msgstr "" + #. module: account #: model:ir.model.fields,help:account.field_account_tax__amount_type msgid "" @@ -128,7 +1611,316 @@ msgstr "" " 例如200 *(1 - 10%)= 180(含价格)\n" " " +#. module: base +#: model:ir.module.module,description:base.module_quality_mrp_workorder_iot +msgid "" +"\n" +" Adds Quality Control to workorders with IoT.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality_mrp_workorder +msgid "" +"\n" +" Adds Quality Control to workorders.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality_mrp +msgid "" +"\n" +" Adds workcenters to Quality Control\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_gcc_invoice +msgid "" +"\n" +" Arabic/English for GCC\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi_stock_extended +msgid "" +"\n" +" Bridge module to extend the delivery guide (Complemento XML Carta de Porte)\n" +" - exported goods (COMEX)\n" +" - extended address fields\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi_stock_extended_40 +msgid "" +"\n" +" Bridge module to extend the delivery guide (Complemento XML Carta de Porte) for CFDI v4.0\n" +" - exported goods (COMEX)\n" +" - extended address fields\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_workorder_iot +msgid "" +"\n" +" Configure IoT devices to be used in certain \n" +" steps for taking measures, taking pictures, ...\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality_mrp_workorder_worksheet +msgid "" +"\n" +" Create customizable quality worksheet for workorder.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality_control_worksheet +msgid "" +"\n" +" Create customizable worksheet for Quality Control.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hr_euro +msgid "" +"\n" +" Croatian Chart of Accounts updated (RRIF ver.2021) (in EURO !)\n" +" \n" +" Sources:\n" +" https://www.rrif.hr/dok/preuzimanje/Bilanca-2016.pdf\n" +" https://www.rrif.hr/dok/preuzimanje/RRIF-RP2021.PDF\n" +" https://www.rrif.hr/dok/preuzimanje/RRIF-RP2021-ENG.PDF\n" +" " +msgstr "" +"\n" +" 克罗地亚会计科目表已更新(RRIF版本2021)(欧元!)\n" +" \n" +" 来源:\n" +" https://www.rrif.hr/dok/preuzimanje/Bilanca-2016.pdf\n" +" https://www.rrif.hr/dok/preuzimanje/RRIF-RP2021.PDF\n" +" https://www.rrif.hr/dok/preuzimanje/RRIF-RP2021-ENG.PDF\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hr_holidays_gantt +msgid "" +"\n" +" Gantt view for Time Off Dashboard\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lt_saft +msgid "" +"\n" +" Lithuanian SAF-T is standard file format for exporting various types of accounting transactional data using the XML format.\n" +" The XSD version used is v2.01 (since 2019). It is the latest one used by the Lithuanian Authorities.\n" +" The first version of the SAF-T Financial is limited to the general ledger level including customer and supplier transactions.\n" +" Necessary master data is also included.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_lock +msgid "" +"\n" +" Make the lock date irreversible:\n" +"\n" +" * You cannot set stricter restrictions on accountants than on users. Therefore, the All Users Lock Date must be anterior (or equal) to the Invoice/Bills Lock Date.\n" +" * You cannot lock a period that has not yet ended. Therefore, the All Users Lock Date must be anterior (or equal) to the last day of the previous month.\n" +" * Any new All Users Lock Date must be posterior (or equal) to the previous one.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_loyalty_taxcloud +msgid "" +"\n" +" Manage discounts in taxclouds computations.\n" +" See https://taxcloud.com/support/discounts or\n" +" https://service.taxcloud.net/hc/en-us/articles/360015649791-How-can-discounts-be-applied-\n" +"\n" +" Summary: all seller-provided discounts must be applied to the Sales Price before calculating sales tax.\n" +" Sellers should disclose their methodology to customers in a Discount Application Policy.\n" +"\n" +" The algorithm is as follows:\n" +" - line-specific discounts are applied first, on the lines they are supposed to apply to.\n" +" This means product-specific discounts or discounts on the cheapest line.\n" +" - Then global discounts are applied evenly across paid lines, as much as possible.\n" +" If there is a remainder, it is applied sequentially, in the order of the lines,\n" +" until there is either no discount left or no discountable line left.\n" +"\n" +" Note that discount lines (with a negative price) will have no taxes applied to them,\n" +" but rather the amount of these lines will be deduced from the lines they apply to during tax computation.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_loyalty_taxcloud_delivery +msgid "" +"\n" +" Manage discounts with deliveries in taxclouds computations.\n" +" This module follows the same logic as \"Account Taxcloud - Sale (coupon)\".\n" +" More information can be found there on how discount computations are made for TaxCloud.\n" +"\n" +" There is an added option for discount (free shipping) on deliveries.\n" +" With Sale coupon delivery, the discount computation does not apply on delivery lines.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_timesheet_attendance +msgid "" +"\n" +" Module linking the attendance module to the timesheet app.\n" +" " +msgstr "" +"\n" +" 模块连接考勤模块到工时表应用.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_no_saft +msgid "" +"\n" +" Norwegian SAF-T is standard file format for exporting various types of accounting transactional data using the XML format.\n" +" The first version of the SAF-T Financial is limited to the general ledger level including customer and supplier transactions.\n" +" Necessary master data is also included.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_forecast +msgid "" +"\n" +" Schedule your teams across projects and estimate deadlines more accurately.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_planning +msgid "" +"\n" +" Schedule your teams and employees with shift.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu_peppol_id +msgid "" +"\n" +" Some Luxembourg public institutions do not have a VAT number but have been assigned an arbitrary number \n" +" (see: https://pch.gouvernement.lu/fr/peppol.html). Thus, this module adds the Peppol Identifier field on \n" +" the account.move form view. If this field is set, it is then read when exporting electronic invoicing formats.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi_stock +msgid "" +"\n" +" The delivery guide (Complemento XML Carta de Porte) is needed as a proof\n" +" that you are sending goods between A and B.\n" +"\n" +" It is only when a delivery order is validated that you can create the delivery\n" +" guide.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pe_edi_stock +#: model:ir.module.module,description:base.module_l10n_pe_edi_stock_20 +msgid "" +"\n" +" The delivery guide (Guía de Remisión) is needed as a proof\n" +" that you are sending goods between A and B.\n" +"\n" +" It is only when a delivery order is validated that you can create the delivery\n" +" guide.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl_edi_stock +msgid "" +"\n" +" The delivery guide (guia de despacho) is needed as a proof\n" +" that you are sending goods between A and B. \n" +" \n" +" It is configurable on the partner if prices are needed on the \n" +" delivery guide and if they need to come from the sale order \n" +" or the product itself. \n" +" \n" +" It is only when a delivery order is validated that you can create the delivery \n" +" guide. Then it will follow the same flow as for the invoices, sending it to \n" +" the SII. \n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ie +msgid "" +"\n" +" This module is for all the Irish SMEs who would like to setup their accounting quickly. The module provides:\n" +"\n" +" - a Chart of Accounts customised to Ireland\n" +" - VAT Rates and Structure" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_es_edi_tbai +msgid "" +"\n" +" This module sends invoices and vendor bills to the \"Diputaciones\n" +" Forales\" of Araba/Álava, Bizkaia and Gipuzkoa.\n" +"\n" +" Invoices and bills get converted to XML and regularly sent to the\n" +" Basque government servers which provides them with a unique identifier.\n" +" A hash chain ensures the continuous nature of the invoice/bill\n" +" sequences. QR codes are added to emitted (sent/printed) invoices,\n" +" bills and tickets to allow anyone to check they have been declared.\n" +"\n" +" You need to configure your certificate and the tax agency.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_account_edi_ubl_cii_tests +msgid "" +"\n" +" This module tests the module 'account_edi_ubl_cii', it is separated since dependencies to some \n" +" localizations were required. Its name begins with 'l10n' to not overload runbot.\n" +" \n" +" The test files are separated by sources, they were taken from:\n" +" \n" +" * the factur-x doc (form the FNFE)\n" +" * the peppol-bis-invoice-3 doc (the github repository: https://github.com/OpenPEPPOL/peppol-bis-invoice-3/tree/master/rules/examples contains examples)\n" +" * odoo, these files pass all validation tests (using ecosio or the FNFE validator)\n" +" \n" +" We test that the external examples are correctly imported (currency, total amount and total tax match).\n" +" We also test that generating xml from odoo with given parameters gives exactly the same xml as the expected, \n" +" valid ones.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_yizuo_login_background_and_styles +msgid "" +"\n" +" You can customised login page like add background image or color and change position of login form.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_ebay +msgid "" +"\n" +" Publish your products on eBay" +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -138,7 +1930,4726 @@ msgstr "" "\n" "(%s)存在于位置%s中。" +#. module: base +#: model:ir.module.module,description:base.module_l10n_ar_reports +msgid "" +"\n" +"* Add VAT Book report which is a legal requirement in Argentina and that holds the VAT detail info of sales or purchases made in a period of time.\n" +"* Add a VAT summary report that is used to analyze invoicing\n" +"* Add Digital VAT Book functionality that let us generate TXT files to import in AFIP. The ones we implement are:\n" +"\n" +" * LIBRO_IVA_DIGITAL_VENTAS_CBTE\n" +" * LIBRO_IVA_DIGITAL_VENTAS_ALICUOTAS\n" +" * LIBRO_IVA_DIGITAL_COMPRAS_CBTE\n" +" * LIBRO_IVA_DIGITAL_COMPRAS_ALICUOTAS\n" +" * LIBRO_IVA_DIGITAL_IMPORTACION_BIENES_ALICUOTA\n" +"\n" +"Official Documentation AFIP\n" +"\n" +"* Digital VAT Book - record design https://www.afip.gob.ar/libro-iva-digital/documentos/libro-iva-digital-diseno-registros.pdf\n" +"* CITI - record design (same as the Digital VAT Book): https://www.afip.gob.ar/comprasyventas/documentos/RegimendeInformaciondeComprasyVentasDisenosdeRegistros1.xls\n" +"* CITI - specification (provides more information on how to format the numbers and the fillings of the numeric / alphanumeric fields): https://www.afip.gob.ar/comprasyventas/documentos/Regimen-Informacion-Compras-Ventas-Especificaciones.doc\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_timesheet_grid +msgid "" +"\n" +"* Timesheet submission and validation\n" +"* Activate grid view for timesheets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_auth_totp_mail +msgid "" +"\n" +"2FA Invite mail\n" +"===============\n" +"Allow the users to invite another user to use Two-Factor authentication\n" +"by sending an email to the target user. This email redirect them to :\n" +"- the users security settings if the user is internal.\n" +"- the portal security settings page if the user is not internal. \n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_auth_totp_mail_enforce +msgid "" +"\n" +"2FA by mail\n" +"===============\n" +"Two-Factor authentication by sending a code to the user email inbox\n" +"when the 2FA using an authenticator app is not configured.\n" +"To enforce users to use a two-factor authentication by default,\n" +"and encourage users to configure their 2FA using an authenticator app.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_global_search +msgid "" +"\n" +"A global search used to search any object based on the configuration. You can search all object's data easily. You can also configure one to many fields. The \"Global Search\" is visible to all odoo users. The search box is available at the top of the menu. Search results on click redirect to that record on the new tab. You can easily perform a search on multi-company objects also we have beautifully show company name before so you can see search results related to that company, we have show object (model) nicely whenever you have search query found in multiple objects, you can very easily see the difference of different objects. It also takes care of access rights of users, if a user doesn't have any object access than it will not show that record in search results. if the user has multi-company enabled than it shows multi-company results. We have made this looks fully configurable you can easily configure what is an important object(model) and related fields of that object(model), We have made security groups for this configurations so only who have right that user only can configure this global search objects and fields, All internal users can use this global search feature. Cheers!" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_intrastat +msgid "" +"\n" +"A module that add the stock management in intrastat reports.\n" +"============================================================\n" +"\n" +"This module gives the details of the goods traded between the countries of\n" +"European Union." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_tax_python +msgid "" +"\n" +"A tax defined as python code consists of two snippets of python code which are executed in a local environment containing data such as the unit price, product or partner.\n" +"\n" +"\"Applicable Code\" defines if the tax is to be applied.\n" +"\n" +"\"Python Code\" defines the amount of the tax.\n" +" " +msgstr "" +"\n" +"定义为 python 代码的税由两个 python 代码片段组成,这些代码片段在包含单价、产品或合\n" +"作伙伴等数据的本地环境中执行.\n" +"\n" +"\"适用代码\"定义是否应用该税.\n" +"\n" +"\"Python 代码\"定义税额.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_au_aba +msgid "" +"\n" +"ABA Credit Transfer\n" +"===================\n" +"\n" +"This module allows the generation of payment batches as ABA (Australian\n" +"Bankers Association) text files. The generated 'aba' file can be uploaded\n" +"to many Australian banks.\n" +"\n" +"Setup\n" +"-----\n" +"\n" +"- *Account > Configuration > invoicing > Journals*\n" +"\n" +" If needed, create new journal or choose an existing journal with **Type**\n" +" set to *“Bank”*.\n" +"\n" +" On **Advanced Settings**, ensure ABA Credit Transfer is ticked.\n" +"\n" +" On the **Bank Account** tab, enter the **Account Number**.\n" +"\n" +" On the same tab, ensure the ABA transfer information is set up.\n" +"\n" +" **BSB** - Required, 6 digits, and will be auto formatted.\n" +"\n" +" **Financial Institution Code** - Required (provided by bank or can be found\n" +" on Google). It is three uppercase 3 characters.\n" +"\n" +" **Supplying User Name** - Some banks allow this to be freeform, some banks\n" +" may reject the ABA file if the Supplying User Name is not as expected. It\n" +" cannot be longer than 26 characters.\n" +"\n" +" **APCA Identification Number** - User Identification number is bank\n" +" allocated. It is 6 digits.\n" +"\n" +" **Include Self Balancing Transaction** - Some institutions require that the\n" +" last be a self balancing transaction which is used as a verification.\n" +"\n" +"- *Accounting > Configuration > Payments > Bank Accounts*\n" +"\n" +" Account will show up in list as the journal name.\n" +"\n" +" Editing will show the **Account Number**. This is important as it is used by\n" +" the ABA process.\n" +"\n" +" **Bank** is optional.\n" +"\n" +"- *Contacts > Configuration > Bank Accounts > Bank Accounts*\n" +"\n" +" Paying account will show up in list as the account number.\n" +"\n" +" **Account Holder Name** - Can be entered here, if Required. Generally not\n" +" validated by the banks on ABA file transfers, but may show up on the payee\n" +" bank statement against the payment.\n" +"\n" +"- Vendor bank accounts can be set up in the same place, however, it is\n" +" generally easier to set them up from the partner from for the Vendor.\n" +"\n" +"- *Accounting > Vendors > Vendors*\n" +"\n" +" On **Accounting** tab, click on *\"View accounts detail\"* from where a\n" +" vendor bank account can be created or edited.\n" +"\n" +" **Account Number** - Required, must be less than 9 digits.\n" +"\n" +" **BSB** - Required, 6 digits, and will be auto formatted.\n" +"\n" +" **Account Holder Name** - Optional.\n" +"\n" +"Use\n" +"---\n" +"\n" +"- Create a vendor payment in the normal way.\n" +"\n" +" Ensure the **Vendor** is one with a valid ABA payment account.\n" +"\n" +" Choose the correct **Payment Journal** which is set for ABA payments.\n" +"\n" +" Select **ABA Credit Transfer** radio button.\n" +"\n" +" If the vendor has multiple bank account, you may need to select the\n" +" correct **Recipient Bank Account**. Or if paying a vendor bill, it may\n" +" need the correct bank account associated with it.\n" +"\n" +" Enter payment amount, etc.\n" +"\n" +"- *Vendors > Payments*\n" +"\n" +" After payment(s) are confirmed, they will show up in the payments list.\n" +"\n" +" Using filters, or sorting, select the payments to be included. Under\n" +" *Actions* choose *Create batch payment*.\n" +"\n" +"- *Vendors > Batch Payments*\n" +"\n" +" When validating a batch payment, the ABA file will be generated. It can\n" +" be regenerated. This file can then be uploaded to the bank.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_auto_transfer +msgid "" +"\n" +"Account Automatic Transfers\n" +"===========================\n" +"Manage automatic transfers between your accounts.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_generic_auto_transfer_demo +msgid "" +"\n" +"Account Automatic Transfers Demo\n" +"================================\n" +"Demo data for account automatic transfers module\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_us_consolidation_demo +msgid "" +"\n" +"Account Consolidation Demo Data\n" +"==================================\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_accountant +msgid "" +"\n" +"Accounting Access Rights\n" +"========================\n" +"It gives the Administrator user access to all accounting features such as journal items and the chart of accounts.\n" +"\n" +"It assigns manager and user access rights to the Administrator for the accounting application and only user rights to the Demo user.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_hr_payroll_account +msgid "" +"\n" +"Accounting Data for Belgian Payroll Rules.\n" +"==========================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_hr_payroll_account +msgid "" +"\n" +"Accounting Data for French Payroll Rules.\n" +"==========================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hk_hr_payroll_account +msgid "" +"\n" +"Accounting Data for Hong Kong Payroll Rules\n" +"===========================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_hr_payroll_account +msgid "" +"\n" +"Accounting Data for Indian Payroll Rules.\n" +"==========================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sa_hr_payroll_account +msgid "" +"\n" +"Accounting Data for KSA Payroll Rules.\n" +"=======================================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke_hr_payroll_account +msgid "" +"\n" +"Accounting Data for Kenyan Payroll Rules\n" +"========================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu_hr_payroll_account +msgid "" +"\n" +"Accounting Data for Luxembourg Payroll Rules\n" +"============================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ae_hr_payroll_account +msgid "" +"\n" +"Accounting Data for UAE Payroll Rules.\n" +"=======================================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_base_import +msgid "" +"\n" +"Accounting Import\n" +"==================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_reports +msgid "" +"\n" +"Accounting Reports\n" +"==================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_reports_tax_reminder +msgid "" +"\n" +"Accounting Reports Tax Reminder\n" +"===============================\n" +"This module adds a notification when the tax report is ready to be sent\n" +"to the administration.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ee_reports +msgid "" +"\n" +"Accounting Reports for Estonia\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_co_reports +msgid "" +"\n" +"Accounting reports for Colombia\n" +"================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_dk_reports +msgid "" +"\n" +"Accounting reports for Denmark\n" +"=================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ec_reports +msgid "" +"\n" +"Accounting reports for Ecuador\n" +"==============================\n" +"* Adds Balance Sheet report adapted for Ecuador\n" +"* Adds Profit and Loss report adapted for Ecuador\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fi_reports +msgid "" +"\n" +"Accounting reports for Finland\n" +"================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_reports +msgid "" +"\n" +"Accounting reports for France\n" +"================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_reports +msgid "" +"\n" +"Accounting reports for India\n" +"================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_it_reports +msgid "" +"\n" +"Accounting reports for Italy\n" +"============================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke_reports +msgid "" +"\n" +"Accounting reports for Kenya\n" +"============================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu_reports +msgid "" +"\n" +"Accounting reports for Luxembourg\n" +"=================================\n" +"Luxembourgish SAF-T (also known as FAIA) is standard file format for exporting various types of accounting transactional data using the XML format.\n" +"The first version of the SAF-T Financial is limited to the general ledger level including customer and supplier transactions.\n" +"Necessary master data is also included.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_no_reports +msgid "" +"\n" +"Accounting reports for Norway\n" +"================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_syscohada_reports +msgid "" +"\n" +"Accounting reports for OHADA\n" +"=================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pt_reports +msgid "" +"\n" +"Accounting reports for Portugal\n" +"================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sg_reports +msgid "" +"\n" +"Accounting reports for Singapore\n" +"================================\n" +"This module allow to generate the IRAS Audit File.\n" +" - To generate the IRAS Audit File, go to Accounting -> Reporting -> IRAS Audit File\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_account_enterprise +msgid "" +"\n" +"Add Subcontracting information in Cost Analysis Report and The Production Analysis\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_contract_reports +msgid "" +"\n" +"Add a dynamic report about contracts and employees.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_recruitment_reports +msgid "" +"\n" +"Add a dynamic report about recruitment.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_latam_base +msgid "" +"\n" +"Add a new model named \"Identification Type\" that extend the vat field functionality in the partner and let the user to identify (an eventually invoice) to contacts not only with their fiscal tax ID (VAT) but with other types of identifications like national document, passport, foreign ID, etc. With this module installed you will see now in the partner form view two fields:\n" +"\n" +"* Identification Type\n" +"* Identification Number\n" +"\n" +"This behavior is a common requirement for some latam countries like Argentina and Chile. If your localization has this requirements then you need to depend on this module and define in your localization module the identifications types that are used in your country. Generally these types of identifications are defined by the government authorities that regulate the fiscal operations. For example:\n" +"\n" +"* AFIP in Argentina defines DNI, CUIT (vat for legal entities), CUIL (vat for natural person), and another 80 valid identification types.\n" +"\n" +"Each identification holds this information:\n" +"\n" +"* name: short name of the identification\n" +"* description: could be the same short name or a long name\n" +"* country_id: the country where this identification belongs\n" +"* is_vat: identify this record as the corresponding VAT for the specific country.\n" +"* sequence: let us to sort the identification types depending on the ones that are most used.\n" +"* active: we can activate/inactivate identifications to make it easier to our customers\n" +"\n" +"In order to make this module compatible for multi-company environments where we have companies that does not need/support this requirement, we have added generic identification types and generic rules to manage the contact information and make it transparent for the user when only use the VAT as we formerly know.\n" +"\n" +"Generic Identifications:\n" +"\n" +"* VAT: The Fiscal Tax Identification or VAT number, by default will be selected as identification type so the user will only need to add the related vat number.\n" +"* Passport\n" +"* Foreign ID (Foreign National Document)\n" +"\n" +"Rules when creating a new partner: We will only see the identification types that are meaningful, taking into account these rules:\n" +"\n" +"* If the partner have not country address set: Will show the generic identification types plus the ones defined in the partner's related company country (If the partner has not specific company then will show the identification types related to the current user company)\n" +"\n" +"* If the partner has country address : will show the generic identification types plus the ones defined for the country of the partner.\n" +"\n" +"When creating a new company, will set to the related partner always the related country is_vat identification type.\n" +"\n" +"All the defined identification types can be reviewed and activate/deactivate in \"Contacts / Configuration / Identification Type\" menu.\n" +"\n" +"This module is compatible with base_vat module in order to be able to validate VAT numbers for each country that have or not have the possibility to manage multiple identification types.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_delivery +msgid "" +"\n" +"Add a selection of delivery methods to your eCommerce store.\n" +"Configure your own methods with a pricing grid or integrate with carriers for a fully automated shipping process.\n" +" " +msgstr "" +"\n" +"向您的电子商务商店增加一系列投放方式.\n" +"使用定价矩阵设置您自己的方法或与运营商集成以实现完全自动化的运输流程.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hr_contract +msgid "" +"\n" +"Add all information on the employee form to manage contracts.\n" +"=============================================================\n" +"\n" +" * Contract\n" +" * Place of Birth,\n" +" * Medical Examination Date\n" +" * Company Vehicle\n" +"\n" +"You can assign several contracts per employee.\n" +" " +msgstr "" +"\n" +"劳动合同管理,在员工界面提供员工劳动合同信息管理.\n" +"====================================================================\n" +"\n" +"* 劳动合同\n" +"* 出生地信息\n" +"* 最近体验日期\n" +"* 交通补贴等\n" +"\n" +"每个员工可以签定多份劳动合同(续签).\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_crm +msgid "" +"\n" +"Add capability to your website forms to generate leads or opportunities in the CRM app.\n" +"Forms has to be customized inside the *Website Builder* in order to generate leads.\n" +"\n" +"This module includes contact phone and mobile numbers validation." +msgstr "" +"\n" +"向您的网站表单增加功能,以在 CRM 模块中创建潜在客户或机会.\n" +"必须在 *Website Builder* 中自定表单才能创建潜在客户.\n" +"\n" +"该模块包括联系电话和手机号码验证." + +#. module: base +#: model:ir.module.module,description:base.module_product_email_template +msgid "" +"\n" +"Add email templates to products to be sent on invoice confirmation\n" +"==================================================================\n" +"\n" +"With this module, link your products to a template to send complete information and tools to your customer.\n" +"For instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'\n" +" " +msgstr "" +"\n" +"为产品增加电子邮件模板来发送结算单确认.\n" +"有了这个模块,连接您的产品到模板以发送完整的信息和工具给您的客户.\n" +"例如为培训开立结算单的时候,培训日程和材料将被自动发送到您的客户.'\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_purchase_stock +msgid "" +"\n" +"Add relation information between Sale Orders and Purchase Orders if Make to Order (MTO) is activated on one sold product.\n" +msgstr "" +"\n" +"如果在一个已售产品上启用按订单生产 (MTO),则增加销售订单和采购订单之间的关系信息.\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_facturx_chorus_pro +msgid "" +"\n" +"Add supports to fill three optional fields used when using Chorus Pro, especially when invoicing public services.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_project +msgid "" +"\n" +"Add the ability to create invoices from the document module.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_sign +msgid "" +"\n" +"Add the ability to create signatures from the document module.\n" +"The first element of the selection (in DRM) will be used as the signature attachment.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_hr_recruitment +msgid "" +"\n" +"Add the ability to manage resumés and letters from the Documents app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_product_margin +msgid "" +"\n" +"Adds a reporting menu in products that computes sales, purchases, margins and other interesting indicators based on invoices.\n" +"=============================================================================================================================\n" +"\n" +"The wizard to launch the report has several options to help you get the data you need.\n" +msgstr "" +"\n" +"在产品上增加一个报告菜单,根据结算单计算销售、采购、毛利,以及其它有趣的指标.\n" +"=============================================================================================================================\n" +"\n" +"此向导装入的报告有若干选项用来帮助您获取您需要的数据.\n" + +#. module: base +#: model:ir.module.module,description:base.module_documents_project_sign +msgid "" +"\n" +"Adds an action to sign documents attached to tasks.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_fleet +msgid "" +"\n" +"Adds fleet data to documents\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_product +msgid "" +"\n" +"Adds the ability to create products from the document module and adds the\n" +"option to send products' attachments to the documents app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_project_sale +msgid "" +"\n" +"Adds the ability to set workspace templates on products.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_voip_crm +msgid "" +"\n" +"Adds the lead partner to phonecall list\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_enterprise +msgid "" +"\n" +"Advanced features for the PoS like better views \n" +"for IoT Box config. \n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_appointment +msgid "" +"\n" +"Allow clients to Schedule Appointments through your Website\n" +"-------------------------------------------------------------\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_mercury +msgid "" +"\n" +"Allow credit card POS payments\n" +"==============================\n" +"\n" +"This module allows customers to pay for their orders with credit\n" +"cards. The transactions are processed by Vantiv (developed by Wells\n" +"Fargo Bank). A Vantiv merchant account is necessary. It allows the\n" +"following:\n" +"\n" +"* Fast payment by just swiping a credit card while on the payment screen\n" +"* Combining of cash payments and credit card payments\n" +"* Cashback\n" +"* Supported cards: Visa, MasterCard, American Express, Discover\n" +" " +msgstr "" +"\n" +"允许信用卡 POS 付款\n" +"==============================\n" +"\n" +"此模块允许客户使用信用支付订单\n" +"卡. 交易由Vantiv处理(由威尔士开发\n" +"法戈银行). Vantiv 商家帐户是必需的. 它允许\n" +"以下:\n" +"\n" +"• 只需在付款屏幕上轻扫信用卡,快速付款\n" +"• 现金支付与信用卡支付相结合\n" +"• 现金返还\n" +"• 支持的卡: 威士卡、万事达卡、美国运通卡、探索卡\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_base_install_request +msgid "" +"\n" +"Allow internal users requesting a module installation\n" +"=====================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_wishlist +msgid "" +"\n" +"Allow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.\n" +" " +msgstr "" +"\n" +"允许您的电子商务商店的购物者创建他们想要购买的个性化产品集成并存储以供将来参考.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_stock_wishlist +msgid "" +"\n" +"Allow the user to select if he wants to receive email notifications when a product of his wishlist gets back in stock.\n" +" " +msgstr "" +"\n" +"允许用户选择是否希望在其心愿单中的产品重新入库时接收电子邮件通知.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_appointment_crm +msgid "" +"\n" +"Allow to generate lead from Scheduled Appointments through your Website\n" +"-----------------------------------------------------------------------\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_auth_oauth +msgid "" +"\n" +"Allow users to login through OAuth2 Provider.\n" +"=============================================\n" +msgstr "" +"\n" +"允许用户通过 OAuth2 服务商登录.\n" +"=============================================\n" + +#. module: base +#: model:ir.module.module,description:base.module_auth_signup +msgid "" +"\n" +"Allow users to sign up and reset their password\n" +"===============================================\n" +" " +msgstr "" +"\n" +"允许用户注册并重置密码\n" +"===============================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_livechat +msgid "" +"\n" +"Allow website visitors to chat with the collaborators. This module also brings a feedback tool for the livechat and web pages to display your channel with its ratings on the website.\n" +" " +msgstr "" +"\n" +"允许网站访问者与合作者聊天. 该模块还为及时聊天和Web网页带来反馈工具,以在网站上显示您的频道.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_picking +msgid "" +"\n" +"Allows customers to pay for their orders at a shop, instead of paying online.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_purchase +msgid "" +"\n" +"Allows the outsourcing of services. This module allows one to sell services provided\n" +"by external providers and will automatically generate purchase orders directed to the service seller.\n" +" " +msgstr "" +"\n" +"允许外包服务. 该模块允许销售提供的服务\n" +"由外部提供商自动创建针对服务销售商的采购订单.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_timesheet_margin +msgid "" +"\n" +"Allows to compute accurate margin for Service sales.\n" +"======================================================\n" +msgstr "" +"\n" +"允许计算服务销售的准确利润.\n" +"================================================== ====\n" + +#. module: base +#: model:ir.module.module,description:base.module_sale_project +msgid "" +"\n" +"Allows to create task from your sales order\n" +"=============================================\n" +"This module allows to generate a project/task from sales orders.\n" +msgstr "" +"\n" +"允许从您的销售订单创建任务\n" +"==============================================\n" +"该模块允许从销售订单创建项目/任务.\n" + +#. module: base +#: model:ir.module.module,description:base.module_voip +msgid "" +"\n" +"Allows to make call from next activities or with click-to-dial.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_timesheet +msgid "" +"\n" +"Allows to sell timesheets in your sales order\n" +"=============================================\n" +"\n" +"This module set the right product on all timesheet lines\n" +"according to the order/contract you work on. This allows to\n" +"have real delivered quantities in sales orders.\n" +msgstr "" +"\n" +"允许在销售订单销售工时表\n" +"\"=============================================\n" +"\n" +"该模块根据您工作的订单/合约\n" +"设置正确的产品在所有工时表行.\n" +"这样才会有真正的销售订单交付量.\n" + +#. module: base +#: model:ir.module.module,description:base.module_pos_iot +msgid "" +"\n" +"Allows to use in the Point of Sale the devices that are connected to an IoT Box.\n" +"Supported devices include payment terminals, receipt printers, scales and customer displays.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_stock_renting +msgid "" +"\n" +"Allows use of stock application to manage rentals inventory\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_snailmail +msgid "" +"\n" +"Allows users to send documents by post\n" +"=====================================================\n" +" " +msgstr "" +"\n" +"允许用户通过邮件方式发送文件\n" +"=====================================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_snailmail_account +msgid "" +"\n" +"Allows users to send invoices by post\n" +"=====================================================\n" +" " +msgstr "" +"\n" +"允许用户通过邮件方式发送结算单\n" +"=====================================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_delivery_iot +msgid "" +"\n" +"Allows using IoT devices, such as scales and printers, for delivery operations.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_delivery +msgid "" +"\n" +"Allows you to add delivery methods in sale orders and picking.\n" +"==============================================================\n" +"\n" +"You can define your own carrier for prices. When creating\n" +"invoices from picking, the system is able to add and compute the shipping line.\n" +msgstr "" +"\n" +"允许增加发货方式在销售订单和拣货.\n" +"============================\n" +"您可以定义自己的承运商的价格. 当创建\n" +"拣货的结算单,该系统能够增加和计算运输行.\n" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_account_enterprise +msgid "" +"\n" +"Analytic Accounting in MRP\n" +"==========================\n" +"\n" +"* Cost structure report\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_account +msgid "" +"\n" +"Analytic Accounting in MRP\n" +"==========================\n" +"\n" +"* Cost structure report\n" +"\n" +"Also, allows to compute the cost of the product based on its BoM, using the costs of its components and work center operations.\n" +"It adds a button on the product itself but also an action in the list view of the products.\n" +"If the automated inventory valuation is active, the necessary accounting entries will be created.\n" +"\n" +msgstr "" +"\n" +"MRP 中的分析会计\n" +"==========================\n" +"\n" +"• 成本结构报告\n" +"\n" +"此外,还允许使用其组件和工作中心动作的成本,基于其 BoM 计算产品成本.\n" +"它在产品本身上增加一个按钮,但也在产品清单视图中增加一个动作.\n" +"如果自动库存估价处于有效状态,则将创建必要的会计分录.\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu_reports_annual_vat_2023 +msgid "" +"\n" +"Annual VAT report for Luxembourg - 2023 update\n" +"===============================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_forum +msgid "" +"\n" +"Ask questions, get answers, no distractions\n" +" " +msgstr "" +"\n" +"提出问题, 获得答案, 不为杂乱无章的信息而分心\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_account_test +msgid "" +"\n" +"Asserts on accounting.\n" +"======================\n" +"With this module you can manually check consistencies and inconsistencies of accounting module from menu Reporting/Accounting/Accounting Tests.\n" +"\n" +"You can write a query in order to create Consistency Test and you will get the result of the test \n" +"in PDF format which can be accessed by Menu Reporting -> Accounting Tests, then select the test \n" +"and print the report from Print button in header area.\n" +msgstr "" +"\n" +"会计上的资产\n" +"======================\n" +"在这个模块您可以从菜单 报告->财务->财务检测 来手工检查记帐模块的一致性.\n" +"\n" +"进入菜单 报告->会计测试,您可以写一个查询去创建一致性测试, \n" +"最后能得到PDF格式的测试结果,\n" +"选择测试的顶部菜单执行打印按钮来打印.\n" + +#. module: base +#: model:ir.module.module,description:base.module_account_asset +msgid "" +"\n" +"Assets management\n" +"=================\n" +"Manage assets owned by a company or a person.\n" +"Keeps track of depreciations, and creates corresponding journal entries.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_attachment_indexation +msgid "" +"\n" +"Attachments list and document indexation\n" +"========================================\n" +"* Show attachment on the top of the forms\n" +"* Document Indexation: odt, pdf, xlsx, docx\n" +"\n" +"The `pdfminer.six` Python library has to be installed in order to index PDF files\n" +msgstr "" +"\n" +"附件列表和单据索引\n" +"========================================\n" +"* 在表格顶部显示附件\n" +"* 单据索引: odt、pdf、xlsx、docx\n" +"\n" +"必须安装 `pdfminer.six` Python 库才能索引 PDF 单据\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_au +msgid "" +"\n" +"Australian Accounting Module\n" +"============================\n" +"\n" +"Australian accounting basic charts and localizations.\n" +"\n" +"Also:\n" +" - activates a number of regional currencies.\n" +" - sets up Australian taxes.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_au_reports +msgid "" +"\n" +"Australian Accounting Module\n" +"============================\n" +"\n" +"Taxable Payments Annual Reports (TPAR) for Australia\n" +"\n" +"The Taxable payments annual report (TPAR) allows:\n" +"\n" +" • Payments made to contractors (or subcontractors) for services, or\n" +" • Grants paid by government entities to ABN holders\n" +"\n" +"to be reported where required under the Taxable Payments Reporting System (TPRS) and the Taxable Government Grants and Payments reporting measure.\n" +"\n" +"The TPAR is due by 28th August each year.\n" +"\n" +"Penalties may apply if you don’t lodge your TPAR on time.\n" +"\n" +"For further information on who is required to lodge a Taxable payments annual report refer to\n" +"https://softwaredevelopers.ato.gov.au/tprs\n" +"\n" +"The annual report must be provided to the Commissioner no later than 28 August after the end of the financial year. Reports can be sent more frequently for those that wish to do so.\n" +"\n" +"The report uses tax tags ``Service`` and ``Tax Withheld`` in order to find adequate journal items. These are set using the fiscal positions, and the right type of product (Services).\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_hr_payroll_dimona +msgid "" +"\n" +"Automatic DIMONA declarations\n" +"=============================\n" +"\n" +"Prerequisites:\n" +"--------------\n" +"\n" +"- You need a Belgian Government Compliant Digital Certificate, delivered by Global\n" +" Sign. See: https://shop.globalsign.com/en/belgian-government-services\n" +"\n" +"- Generate certificate files from your SSL certificate (.pfx file) that are needed to create\n" +" a technical user (.cer file) and to authenticate remotely to the ONSS (.pem) file. On a UNIX\n" +" system, you may use the following commands:\n" +"\n" +" - PFX -> CRT : openssl pkcs12 -in my_cert.pfx -out my_cert.crt -nokeys -clcerts\n" +"\n" +" - CRT -> CER : openssl x509 -inform pem -in my_cert.crt -outform der -out my_cert.cer\n" +"\n" +" - PFX -> PEM : openssl pkcs12 -in my_cert.pfx -out my_cert.pem -nodes\n" +"\n" +"- Before you can use the social security REST web service, you must create an account\n" +" for yourself or for your client and configure the security. (The whole procedure is\n" +" available at https://www.socialsecurity.be/site_fr/employer/applics/dimona/introduction/webservice.htm)\n" +"\n" +" - User account management: Follow the Procedure https://www.socialsecurity.be/site_fr/general/helpcentre/rest/documents/pdf/procedure_pour_gestion_des_acces_UMan_FR.pdf\n" +"\n" +" - Create a technical user: Your client must now create a technical user in the Access management\n" +" online service. The follow this procedure: https://www.socialsecurity.be/site_fr/general/helpcentre/rest/documents/pdf/webservices_creer_le_canal_FR.pdf\n" +"\n" +" - Activate a web service channel: Once the technical user has been created, your client must\n" +" activate the web service channel in Access Management. The following manual explains the\n" +" steps to follow to activate the channel: https://www.socialsecurity.be/site_fr/general/helpcentre/rest/documents/pdf/webservices_ajouter_le_canal_FR.pdf\n" +"\n" +" - At the end of the procedure, you should receive a \"ONSS Expeditor Number\", you may\n" +" encode in in the payroll Settings, with the .pem file and the related password, if any.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_event_booth_exhibitor +msgid "" +"\n" +"Automatically create a sponsor when renting a booth.\n" +" " +msgstr "" +"\n" +"租用展位时自动创建赞助商.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_product_images +msgid "" +"\n" +"Automatically set product images based on the barcode\n" +"=====================================================\n" +"\n" +"This module integrates with the Google Custom Search API to set images on products based on the\n" +"barcode.\n" +" " +msgstr "" +"\n" +"根据条码自动设置商品图像\n" +"================================================== ===\n" +"\n" +"此模块与 Google Custom Search API 集成,可根据\n" +"条码.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_et +msgid "" +"\n" +"Base Module for Ethiopian Localization\n" +"======================================\n" +"\n" +"This is the latest Ethiopian Odoo localization and consists of:\n" +" - Chart of Accounts\n" +" - VAT tax structure\n" +" - Withholding tax structure\n" +" - Regional State listings\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_saft +msgid "" +"\n" +"Base module for SAF-T reporting\n" +"===============================\n" +"This is meant to be used with localization specific modules.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_br +msgid "" +"\n" +"Base module for the Brazilian localization\n" +"==========================================\n" +"\n" +"This module consists of:\n" +"\n" +" - Generic Brazilian chart of accounts\n" +" - Brazilian taxes such as:\n" +"\n" +" - IPI\n" +" - ICMS\n" +" - PIS\n" +" - COFINS\n" +" - ISS\n" +" - IR\n" +" - IRPJ\n" +" - CSLL\n" +"\n" +"The field tax_discount has also been added in the account.tax.template and\n" +"account.tax objects to allow the proper computation of some Brazilian VATs\n" +"such as ICMS. The chart of account creation wizard has been extended to\n" +"propagate those new data properly.\n" +"\n" +"It's important to note however that this module lack many implementations to\n" +"use Odoo properly in Brazil. Those implementations (such as the electronic\n" +"fiscal Invoicing which is already operational) are brought by more than 15\n" +"additional modules of the Brazilian Launchpad localization project\n" +"https://launchpad.net/openerp.pt-br-localiz and their dependencies in the\n" +"extra addons branch. Those modules aim at not breaking with the remarkable\n" +"Odoo modularity, this is why they are numerous but small. One of the\n" +"reasons for maintaining those modules apart is that Brazilian Localization\n" +"leaders need commit rights agility to complete the localization as companies\n" +"fund the remaining legal requirements (such as soon fiscal ledgers,\n" +"accounting SPED, fiscal SPED and PAF ECF that are still missing as September\n" +"2011). Those modules are also strictly licensed under AGPL V3 and today don't\n" +"come with any additional paid permission for online use of 'private modules'.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_batch_payment +msgid "" +"\n" +"Batch Payments\n" +"=======================================\n" +"Batch payments allow grouping payments.\n" +"\n" +"They are used namely, but not only, to group several cheques before depositing them in a single batch to the bank.\n" +"The total amount deposited will then appear as a single transaction on your bank statement.\n" +"When you reconcile, simply select the corresponding batch payment to reconcile all the payments in the batch.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_hr_payroll +msgid "" +"\n" +"Belgian Payroll Rules.\n" +"======================\n" +"\n" +" * Employee Details\n" +" * Employee Contracts\n" +" * Passport based Contract\n" +" * Allowances/Deductions\n" +" * Allow to configure Basic/Gross/Net Salary\n" +" * Employee Payslip\n" +" * Monthly Payroll Register\n" +" * Integrated with Leaves Management\n" +" * Salary Maj, ONSS, Withholding Tax, Child Allowance, ...\n" +"\n" +"Automatic DmfA Signature\n" +"========================\n" +"\n" +"Prerequisites:\n" +"--------------\n" +"\n" +"- You need a Belgian Government Compliant Digital Certificate, delivered by Global\n" +" Sign. See: https://shop.globalsign.com/en/belgian-government-services\n" +"\n" +"- Generate certificate files from your SSL certificate (.pfx file) that are needed to create\n" +" a technical user (.cer file) and to authenticate remotely to the ONSS (.pem) file. On a UNIX\n" +" system, you may use the following commands:\n" +"\n" +" - PFX -> CRT : openssl pkcs12 -in my_cert.pfx -out my_cert.crt -nokeys -clcerts\n" +"\n" +" - CRT -> CER : openssl x509 -inform pem -in my_cert.crt -outform der -out my_cert.cer\n" +"\n" +" - PFX -> PEM : openssl pkcs12 -in my_cert.pfx -out my_cert.pem -nodes\n" +"\n" +" - PFX -> KEY : openssl pkcs12 -in my_cert.pfx -out my_cert.key -nocerts\n" +"\n" +"- Before you can use the social security REST web service, you must create an account\n" +" for yourself or for your client and configure the security. (The whole procedure is\n" +" available at https://www.socialsecurity.be/site_fr/general/helpcentre/batch/sftp/previewstep.htm)\n" +"\n" +" - Create a technical user + Activate a SFTP channel: Your client must now create a technical user in the Access management\n" +" online service. The follow this procedure: https://www.socialsecurity.be/site_fr/general/helpcentre/rest/documents/pdf/webservices_creer_le_canal_FR.pdf\n" +"\n" +" - Configure your SFTP client: https://www.socialsecurity.be/site_fr/general/helpcentre/batch/document/pdf/step6_sftp_F.pdf\n" +"\n" +" - At the end of the procedure, you should have received a \"ONSS Expeditor Number\", you may\n" +" encode in in the payroll Settings, with the .pem file and the related password, if any.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_blackbox_be +msgid "" +"\n" +"Belgian Registered Cash Register\n" +"================================\n" +"\n" +"This module turns the Point Of Sale module into a certified Belgian cash register.\n" +"\n" +"More info:\n" +" * http://www.systemedecaisseenregistreuse.be/\n" +" * http://www.geregistreerdkassasysteem.be/\n" +"\n" +"Legal\n" +"-----\n" +"**The use of pos_blackbox_be sources is only certified on odoo.com SaaS platform\n" +"for version 16.0.** Contact Odoo SA before installing pos_blackbox_be module.\n" +"\n" +"An obfuscated and certified version of the pos_blackbox_be may be provided on\n" +"requests for on-premise installations.\n" +"No modified version is certified and supported by Odoo SA.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_bo +msgid "" +"\n" +"Bolivian accounting chart and tax localization.\n" +"\n" +"Plan contable boliviano e impuestos de acuerdo a disposiciones vigentes\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_portal_rating +msgid "" +"\n" +"Bridge module adding rating capabilities on portal. It includes notably\n" +"inclusion of rating directly within the customer portal discuss widget.\n" +" " +msgstr "" +"\n" +"桥接模块在网站登录上增加评级功能. 它特别包括\n" +"直接在客户网站登录中包含评级讨论的小部件. " + +#. module: base +#: model:ir.module.module,description:base.module_documents_account +msgid "" +"\n" +"Bridge module between the accounting and documents apps. It enables\n" +"the creation invoices from the Documents module, and adds a\n" +"button on Accounting's reports allowing to save the report into the\n" +"Documents app in the desired format(s).\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mail_enterprise +msgid "" +"\n" +"Bridge module for mail and enterprise\n" +"=====================================\n" +"\n" +"Display a preview of the last chatter attachment in the form view for large\n" +"screen devices.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_enterprise +msgid "" +"\n" +"Bridge module for project and enterprise\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_enterprise_hr +msgid "" +"\n" +"Bridge module for project_enterprise and hr\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_enterprise_hr_contract +msgid "" +"\n" +"Bridge module for project_enterprise and hr_contract\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_timesheet_holidays +msgid "" +"\n" +"Bridge module to integrate leaves in timesheet\n" +"================================================\n" +"\n" +"This module allows to automatically log timesheets when employees are\n" +"on leaves. Project and task can be configured company-wide.\n" +" " +msgstr "" +"\n" +" 集成工时表中休假情况的连接模块\n" +"================================================\n" +"\n" +" 此模块在员工\n" +" 休假时允许自动纪录工时. 可在全公司设置专案和任务\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_base_automation_hr_contract +msgid "" +"\n" +"Bridge to add contract calendar on automated actions\n" +"====================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_reports_cash_basis +msgid "" +"\n" +"Cash Basis for Accounting Reports\n" +"=================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_skills_survey +msgid "" +"\n" +"Certification and Skills for HR\n" +"===============================\n" +"\n" +"This module adds certification to resume for employees.\n" +" " +msgstr "" +"\n" +"人力资源认证和技能\n" +"===============================\n" +"\n" +"本模块用于为员工简历添加证书。 " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ve +msgid "" +"\n" +"Chart of Account for Venezuela.\n" +"===============================\n" +"\n" +"Venezuela doesn't have any chart of account by law, but the default\n" +"proposed in Odoo should comply with some Accepted best practices in Venezuela,\n" +"this plan comply with this practices.\n" +"\n" +"This module has been tested as base for more of 1000 companies, because\n" +"it is based in a mixtures of most common software in the Venezuelan\n" +"market what will allow for sure to accountants feel them first steps with\n" +"Odoo more comfortable.\n" +"\n" +"This module doesn't pretend be the total localization for Venezuela,\n" +"but it will help you to start really quickly with Odoo in this country.\n" +"\n" +"This module give you.\n" +"---------------------\n" +"\n" +"- Basic taxes for Venezuela.\n" +"- Have basic data to run tests with community localization.\n" +"- Start a company from 0 if your needs are basic from an accounting PoV.\n" +"\n" +"We recomend use of account_anglo_saxon if you want valued your\n" +"stocks as Venezuela does with out invoices.\n" +"\n" +"If you install this module, and select Custom chart a basic chart will be proposed,\n" +"but you will need set manually account defaults for taxes.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_th +msgid "" +"\n" +"Chart of Accounts for Thailand.\n" +"===============================\n" +"\n" +"Thai accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cr +msgid "" +"\n" +"Chart of accounts for Costa Rica.\n" +"=================================\n" +"\n" +"Includes:\n" +"---------\n" +" * account.account.template\n" +" * account.tax.template\n" +" * account.chart.template\n" +"\n" +"Everything is in English with Spanish translation. Further translations are welcome,\n" +"please go to http://translations.launchpad.net/openerp-costa-rica.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl +msgid "" +"\n" +"Chilean accounting chart and tax localization.\n" +"Plan contable chileno e impuestos de acuerdo a disposiciones vigentes.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_timesheet_forecast_sale +msgid "" +"\n" +"Compare timesheets and forecast for your projects.\n" +"==================================================\n" +"\n" +"In your project plan, you can compare your timesheets and your forecast to better schedule your resources.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_timesheet_forecast +msgid "" +"\n" +"Compare timesheets and plannings\n" +"================================\n" +"\n" +"Better plan your future schedules by considering time effectively spent on old plannings\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_taxcloud +msgid "" +"\n" +"Computes the sales tax automatically using TaxCloud and the customer's address in United States.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_crm_enterprise +msgid "" +"\n" +"Contains advanced features for CRM such as new views\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_enterprise +msgid "" +"\n" +"Contains advanced features for purchase management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_enterprise +msgid "" +"\n" +"Contains advanced features for sale management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_account_enterprise +msgid "" +"\n" +"Contains the enterprise views for Stock account\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_enterprise +msgid "" +"\n" +"Contains the enterprise views for Stock management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_presence +msgid "" +"\n" +"Control Employees Presence\n" +"==========================\n" +"\n" +"Based on:\n" +" * The IP Address\n" +" * The User's Session\n" +" * The Sent Emails\n" +"\n" +"Allows to contact directly the employee in case of unjustified absence.\n" +" " +msgstr "" +"\n" +"控制员工状态\n" +"==========================\n" +"\n" +"基于:\n" +" • IP 地址\n" +" • 用户作业阶段\n" +" • 已发送的电子邮件\n" +"\n" +"允许在无理由缺勤的情况下直接联系员工.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_crm_helpdesk +msgid "" +"\n" +"Convert business inquiries that have ended up in the Helpdesk pipeline by mistake,\n" +"or generate a ticket from a business inquiry\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_holidays_attendance +msgid "" +"\n" +"Convert employee's extra hours to leave allocations.\n" +" " +msgstr "" +"\n" +"将员工的加班时间转换为休假配置.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_account +msgid "" +"\n" +"Create Credit Notes from Helpdesk tickets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_slides +msgid "" +"\n" +"Create Online Courses\n" +"=====================\n" +"\n" +"Featuring\n" +"\n" +" * Integrated course and lesson management\n" +" * Fullscreen navigation\n" +" * Support Youtube videos, Google documents, PDF, images, articles\n" +" * Test knowledge with quizzes\n" +" * Filter and Tag\n" +" * Statistics\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_industry_fsm_report +msgid "" +"\n" +"Create Reports for Field Service\n" +"================================\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_industry_fsm_sale +msgid "" +"\n" +"Create Sales order with timesheets and products from tasks\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_survey +msgid "" +"\n" +"Create beautiful surveys and visualize answers\n" +"==============================================\n" +"\n" +"It depends on the answers or reviews of some questions by different users. A\n" +"survey may have multiple pages. Each page may contain multiple questions and\n" +"each question may have multiple answers. Different users may give different\n" +"answers of question and according to that survey is done. Partners are also\n" +"sent mails with personal token for the invitation of the survey.\n" +" " +msgstr "" +"\n" +"该模块创建优雅调查问卷网页, 并能对调查结果进行可视化分析\n" +"==============================================\n" +"\n" +"这取决于不同用户对一些问题的观点与答案.\n" +"调查问卷可以由多个页面组成. 每个页面可以包含多个问题,每个问题可能有多个答案\n" +"对于所调查的问题, 不同的用户会有不同的答案, 问卷中后续的问题会依据此前的答案进行\n" +"还可以向合作伙伴发送附上用户名和口令的邮件\n" +"以邀请他们参与调查.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_event_booth +msgid "" +"\n" +"Create booths for your favorite event.\n" +" " +msgstr "" +"\n" +"为您最喜欢的活动创建展位.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_loyalty +msgid "" +"\n" +"Create coupon, promotion codes, gift cards and loyalty programs to boost your sales (free products, discounts, etc.). Shoppers can use them in the eCommerce checkout.\n" +"\n" +"Coupon & promotion programs can be edited in the Catalog menu of the Website app.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_worksheet +msgid "" +"\n" +"Create customizable worksheet\n" +"================================\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_event_sale +msgid "" +"\n" +"Creating registration with sales orders.\n" +"========================================\n" +"\n" +"This module allows you to automate and connect your registration creation with\n" +"your main sale flow and therefore, to enable the invoicing feature of registrations.\n" +"\n" +"It defines a new kind of service products that offers you the possibility to\n" +"choose an event category associated with it. When you encode a sales order for\n" +"that product, you will be able to choose an existing event of that category and\n" +"when you confirm your sales order it will automatically create a registration for\n" +"this event.\n" +msgstr "" +"\n" +" 创建活动报名销售订单记录.\n" +"========================================\n" +"\n" +" 此模块允许您自动创建活动报名记录,并将创建登记记录与\n" +" 主要的销售流程连接起来,以此来启用登记记录的开立凭单功能.\n" +"\n" +" 它会定义新型服务产品,该产品为您提供选\n" +" 选择与之相关联的事件类别的机会. 当编码\n" +" 该产品的销售订单时,您将可以选择该类别的现有事件,并且\n" +" 当确认您的销售订单时,其将为此事件自动创建登记记录.\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hr +msgid "" +"\n" +"Croatian localisation.\n" +"======================\n" +"\n" +"Author: Goran Kliska, Slobodni programi d.o.o., Zagreb\n" +" https://www.slobodni-programi.hr\n" +"\n" +"Contributions:\n" +" Tomislav Bošnjaković, Storm Computers: tipovi konta\n" +" Ivan Vađić, Slobodni programi: tipovi konta\n" +"\n" +"Description:\n" +"\n" +"Croatian Chart of Accounts (RRIF ver.2012)\n" +"\n" +"RRIF-ov računski plan za poduzetnike za 2012.\n" +"Vrste konta\n" +"Kontni plan prema RRIF-u, dorađen u smislu kraćenja naziva i dodavanja analitika\n" +"Porezne grupe prema poreznoj prijavi\n" +"Porezi PDV obrasca\n" +"Ostali porezi\n" +"Osnovne fiskalne pozicije\n" +"\n" +"Izvori podataka:\n" +" https://www.rrif.hr/dok/preuzimanje/rrif-rp2011.rar\n" +" https://www.rrif.hr/dok/preuzimanje/rrif-rp2012.rar\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cz +msgid "" +"\n" +"Czech accounting chart and localization. With Chart of Accounts with taxes and basic fiscal positions.\n" +"\n" +"Tento modul definuje:\n" +"\n" +"- Českou účetní osnovu za rok 2020\n" +"\n" +"- Základní sazby pro DPH z prodeje a nákupu\n" +"\n" +"- Základní fiskální pozice pro českou legislativu\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_themes +msgid "" +"\n" +"Design gorgeous mails\n" +" " +msgstr "" +"\n" +" 设计美观大方的邮件\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de +#: model:ir.module.module,description:base.module_l10n_de_skr03 +msgid "" +"\n" +"Dieses Modul beinhaltet einen deutschen Kontenrahmen basierend auf dem SKR03.\n" +"==============================================================================\n" +"\n" +"German accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de_skr04 +msgid "" +"\n" +"Dieses Modul beinhaltet einen deutschen Kontenrahmen basierend auf dem SKR04.\n" +"==============================================================================\n" +"\n" +"German accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_event_booth +msgid "" +"\n" +"Display your booths on your website for the users to register.\n" +" " +msgstr "" +"\n" +"在您的网站上展示您的展位供用户注册.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_it_stock_ddt +msgid "" +"\n" +"Documento di Trasporto (DDT)\n" +"\n" +"Whenever goods are transferred between A and B, the DDT serves\n" +"as a legitimation e.g. when the police would stop you. \n" +"\n" +"When you want to print an outgoing picking in an Italian company, \n" +"it will print you the DDT instead. It is like the delivery \n" +"slip, but it also contains the value of the product, \n" +"the transportation reason, the carrier, ... which make it a DDT. \n" +"\n" +"We also use a separate sequence for the DDT as the number should not \n" +"have any gaps and should only be applied at the moment the goods are sent. \n" +"\n" +"When invoices are related to their sale order and the sale order with the \n" +"delivery, the system will automatically calculate the linked DDTs for every \n" +"invoice line to export in the FatturaPA XML. \n" +" " +msgstr "" +"\n" +"Documento di Trasporto (DDT)\n" +"\n" +"Whenever goods are transferred between A and B, the DDT serves\n" +"as a legitimation e.g. when the police would stop you. \n" +"\n" +"When you want to print an outgoing picking in an Italian company, \n" +"it will print you the DDT instead. It is like the delivery \n" +"slip, but it also contains the value of the product, \n" +"the transportation reason, the 承运商, ... which make it a DDT. \n" +"\n" +"We also use a separate sequence for the DDT as the number should not \n" +"have any gaps and should only be applied at the moment the goods are sent. \n" +"\n" +"When invoices are related to their sale order and the sale order with the \n" +"delivery, the system will automatically calculate the linked DDTs for every \n" +"invoice line to export in the FatturaPA XML. \n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_it_edi +msgid "" +"\n" +"E-invoice implementation\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_skills_slides +msgid "" +"\n" +"E-learning and Skills for HR\n" +"============================\n" +"\n" +"This module add completed courses to resume for employees.\n" +" " +msgstr "" +"\n" +"人力资源线上学习和技能\n" +"============================\n" +"\n" +"本模块用于为员工简历添加已完成课程。" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi_40 +msgid "" +"\n" +"EDI CFDI 4.0\n" +"============\n" +"Convert CFDI XML documents to version 4.0 (from 3.3).\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl_edi +msgid "" +"\n" +"EDI Chilean Localization\n" +"========================\n" +"This code allows to generate the DTE document for Chilean invoicing.\n" +"- DTE (Electronic Taxable Document) format in XML\n" +"- Direct Communication with SII (Servicio de Impuestos Internos) to send invoices and other tax documents related to sales.\n" +"- Communication with Customers to send sale DTEs.\n" +"- Communication with Suppliers (vendors) to accept DTEs from them.\n" +"- Direct Communication with SII informing the acceptance or rejection of vendor bills or other DTEs.\n" +"\n" +" In order to see the barcode on the invoice, you need the pdf417gen library.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ec_edi +msgid "" +"\n" +"EDI Ecuadorian Localization\n" +"===========================\n" +"Adds electronic documents with its XML, RIDE, with electronic signature and direct connection to tax authority SRI,\n" +"\n" +"The supported documents are Invoices, Credit Notes, Debit Notes, Purchase Liquidations and Withholds\n" +"\n" +"Includes automations to easily predict the withholding tax to be applied to each purchase invoice\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi +msgid "" +"\n" +"EDI Mexican Localization\n" +"========================\n" +"Allow the user to generate the EDI document for Mexican invoicing.\n" +"\n" +"This module allows the creation of the EDI documents and the communication with the Mexican certification providers (PACs) to sign/cancel them.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pe_edi +msgid "" +"\n" +"EDI Peru Localization\n" +"======================\n" +"Allow the user to generate the EDI document for Peruvian invoicing.\n" +"\n" +"By default, the system uses the IAP proxy. This has the advantage that you\n" +"can use the system immediately the moment you choose Digiflow as your OSE\n" +"in the SUNAT portal.\n" +"\n" +"You can also directly send it to Digiflow if you bought an account from them\n" +"and even to SUNAT in case of contingency.\n" +"\n" +"We support sending and cancelling of customer invoices.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hw_escpos +msgid "" +"\n" +"ESC/POS Hardware Driver\n" +"=======================\n" +"\n" +"This module allows Odoo to print with ESC/POS compatible printers and\n" +"to open ESC/POS controlled cashdrawers in the point of sale and other modules\n" +"that would need such functionality.\n" +"\n" +msgstr "" +"\n" +" ESC/POS 硬件驱动程序\n" +"=======================\n" +"\n" +" 此模块允许 Odoo 使用 ESC/POS 兼容打印机进行打印并\n" +" 在PoS营业点以及将需要此功能的其它模块中打开 ESC/POS 控制的收银机.\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_eu_oss +msgid "" +"\n" +"EU One Stop Shop (OSS) VAT\n" +"==========================\n" +"\n" +"From July 1st 2021, EU businesses that are selling goods within the EU above EUR 10 000 to buyers located in another EU Member State need to register and pay VAT in the buyers’ Member State.\n" +"Below this new EU-wide threshold you can continue to apply the domestic rules for VAT on your cross-border sales. In order to simplify the application of this EU directive, the One Stop Shop (OSS) registration scheme allows businesses to make a unique tax declaration.\n" +"\n" +"This module makes it possible by helping with the creation of the required EU fiscal positions and taxes in order to automatically apply and record the required taxes.\n" +"\n" +"All you have to do is check that the proposed mapping is suitable for the products and services you sell.\n" +"\n" +"References\n" +"++++++++++\n" +"Council Directive (EU) 2017/2455 Council Directive (EU) 2019/1995\n" +"Council Implementing Regulation (EU) 2019/2026\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_eu_oss_reports +msgid "" +"\n" +"EU One Stop Shop (OSS) VAT Reports\n" +"=============================================================================================\n" +"\n" +"Provides Reports for OSS with export files for available EU countries.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_hr +msgid "" +"\n" +"Easily access your documents from your employee profile.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_edi +msgid "" +"\n" +"Electronic Data Interchange\n" +"=======================================\n" +"EDI is the electronic interchange of business information using a standardized format.\n" +"\n" +"This is the base module for import and export of invoices in various EDI formats, and the\n" +"the transmission of said documents to various parties involved in the exchange (other company,\n" +"governements, etc.)\n" +" " +msgstr "" +"\n" +"现场服务管理\n" +"==========================\n" +"该模块增加了摩登现场服务管理所需的功能.\n" +"它安装以下应用程序: \n" +"- 专案\n" +"- 时间表\n" +"\n" +"增加以下选项: \n" +"- 任务报表\n" +"- FSM 应用程序,为现场工作人员提供自定查看\n" +"- 在任务上增加产品 " + +#. module: base +#: model:ir.module.module,description:base.module_account_edi_ubl_cii +msgid "" +"\n" +"Electronic invoicing module\n" +"===========================\n" +"\n" +"Allows to export and import formats: E-FFF, UBL Bis 3, EHF3, NLCIUS, Factur-X (CII), XRechnung (UBL).\n" +"When generating the PDF on the invoice, the PDF will be embedded inside the xml for all UBL formats. This allows the \n" +"receiver to retrieve the PDF with only the xml file. Note that **EHF3 is fully implemented by UBL Bis 3** (`reference \n" +"`_).\n" +"\n" +"The formats can be chosen from the journal (Journal > Advanced Settings) linked to the invoice. \n" +"\n" +"Note that E-FFF, NLCIUS and XRechnung (UBL) are only available for Belgian, Dutch and German companies, \n" +"respectively. UBL Bis 3 is only available for companies which country is present in the `EAS list \n" +"`_.\n" +"\n" +"Note also that in order for Chorus Pro to automatically detect the \"PDF/A-3 (Factur-X)\" format, you need to activate \n" +"the \"Factur-X PDF/A-3\" option on the journal. This option will also validate the xml against the Factur-X and Chorus\n" +"Pro rules and show the errors.\n" +" " +msgstr "" +"\n" +"电子结算模块\n" +"===========================\n" +"\n" +"可以导出/导入以下格式:E-FFF、UBL Bis 3、EHF3、NLCIUS、Factur-X(CII)和XRechnung(UBL)\n" +"在结算上表单PDF时,PDF将嵌入所有UBL格式的xml中。允许\n" +"接收方仅使用xml文件检索PDF。请注意,**EHF3由UBL Bis 3**完全执行(参见\n" +"`_)。\n" +"\n" +"可以从链接至结算的日记账(日记账>高级设置)中选择格式。\n" +"\n" +"请注意,E-FFF、NLCIUS和XRechnung(UBL)分别仅适用于\n" +"比利时、荷兰和德国公司。UBL Bis 3仅适用于EAS列表中所列国家的公司\n" +"`_。\n" +"\n" +"请注意,为了使Chorus Pro自动检测“PDF/A-3(Factur-X)”格式,您需要激活\n" +"日记账中的“Factur-X PDF/A-3”选项。该选项还将验证Factur-X和Chorus Pro规则,\n" +"同时显示错误。\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_documents_l10n_be_hr_payroll +msgid "" +"\n" +"Employee 281.10 and 281.45 forms will be automatically integrated to the Document app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_hr_contract +msgid "" +"\n" +"Employee contracts files will be automatically integrated to the Document app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_documents_hr_payroll +msgid "" +"\n" +"Employee payslips will be automatically integrated to the Document app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_utm +msgid "" +"\n" +"Enable management of UTM trackers: campaign, medium, source.\n" +msgstr "" +"\n" +"启用 UTM 跟踪器的管理:市场营销、规模、来源.\n" + +#. module: base +#: model:ir.module.module,description:base.module_website_appointment_crm +msgid "" +"\n" +"Enrich lead created automatically through an appointment with gathered website visitor information such as language, \n" +"country and detailed information like pages browsed by the lead (through a link to website visitor).\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl_edi_exports +msgid "" +"\n" +"Even when the quantity of packages is apparently only inherent to stock application, we need a field for this \n" +"in the invoice, because that info could also depend on the DUS declaration.\n" +"We should also consider that there may be users without the inventory application installed and keep a less\n" +"complex logic.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_address_extended +msgid "" +"\n" +"Extended Addresses Management\n" +"=============================\n" +"\n" +"This module provides the ability to choose a city from a list (in specific countries).\n" +"\n" +"It is primarily used for EDIs that might need a special city code.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_snailmail_account_followup +msgid "" +"\n" +"Extension to send follow-up documents by post\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_industry_fsm +msgid "" +"\n" +"Field Services Management\n" +"=========================\n" +"This module adds the features needed for a modern Field service management.\n" +"It installs the following apps:\n" +"- Project\n" +"- Timesheet\n" +"\n" +"Adds the following options:\n" +"- reports on tasks\n" +"- FSM app with custom view for onsite worker\n" +"- add products on tasks\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_accountant +msgid "" +"\n" +"Filters the stock lines out of the reconciliation widget\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_hr_payroll +msgid "" +"\n" +"French Payroll Rules.\n" +"=====================\n" +"\n" +" - Configuration of hr_payroll for French localization\n" +" - All main contributions rules for French payslip, for 'cadre' and 'non-cadre'\n" +" - New payslip report\n" +"\n" +"TODO:\n" +"-----\n" +" - Integration with holidays module for deduction and allowance\n" +" - Integration with hr_payroll_account for the automatic account_move_line\n" +" creation from the payslip\n" +" - Continue to integrate the contribution. Only the main contribution are\n" +" currently implemented\n" +" - Remake the report under webkit\n" +" - The payslip.line with appears_in_payslip = False should appears in the\n" +" payslip interface, but not in the payslip report\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_mrp_workorder_quality +msgid "" +"\n" +"Full Traceability Report Demo Data\n" +"==================================\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ar_edi +msgid "" +"\n" +"Functional\n" +"----------\n" +"\n" +"Be able to create journals in Odoo to create electronic customer invoices and report then to AFIP (via webservices).\n" +"The options available are:\n" +"\n" +" * Electronic Invoice - Web Service\n" +" * Export Voucher - Web Service\n" +" * Electronic Fiscal Bond - Web Service\n" +"\n" +"In the electronic journals if you validate an invoice this one will be validated in both Odoo and AFIP. This validation is\n" +"made at the instant and we recieve and \"approved/approved with observation/rejected\" state from AFIP. If the invoice has\n" +"been rejected by AFIP will not be post in the system and a pop up message will be shown with both the error detail (reject reasons)\n" +"we recieve and a HINT about what the problem could be.\n" +"\n" +"For auditing and troubleshooting purposes we also add a menu \"Consulit Invoice in AFIP\" that let us to consult invoices previously\n" +"sent to AFIP and last number used as support for any possible issues on the sequences synchronization between Odoo and AFIP.\n" +"\n" +" NOTE: From the Journal's form view we are able to force a sync between the odoo sequences to each of the document types in\n" +" with the last numbers registered in AFIP.\n" +"\n" +"From vendor bills, we have added a functionality that can be configured in the accounting settings to be able to verify\n" +"vendor bills in AFIP to check if the vendor bills are real (more information please review the setting description).\n" +"\n" +"Configuration:\n" +"\n" +"1. Go to the Accounting Settings > Argentinean Localization section\n" +"\n" +" 1.1. Configure the AFIP Web Services mode:\n" +"\n" +" * Testing environment in order to use demo certificates that will be use to test the instance and to make NOT\n" +" real invoices to AFIP. is just for testing. For demo instaces is already pre-defined you will not need to configure\n" +" it (commonly named in AFIP as Homologation environment).\n" +" * Production environment in order to generate real certificates and legal invoices to AFIP,\n" +"\n" +" 1.2. Configure your AFIP Certificate: If you are in a demo instance this one will be have been set by default. If you\n" +" are in production instance just need to go to upload your AFIP Certificate\n" +"\n" +" 1.3. Optionally you can define if you like to be eable to verify vendor bills in AFIP.\n" +"\n" +"2. Create Sales journals that will represent each one of your AFIP POS (Available in AFIP Portal) you want to use in Odoo.\n" +"\n" +" 2.1. Use Documents field is set by default please dont change\n" +" 2.2. Set AFIP POS System for one of the electronic ones.\n" +"\n" +" * Electronic Invoice - Web Service'\n" +" * Electronic Fiscal Bond - Web Service'\n" +" * Export Voucher - Web Service'\n" +"\n" +" 2.3. Set the AFIP POS Number and AFIP POS Address taking into account what you have configured in your AFIP Portal.\n" +"\n" +" NOTE: You can use the \"Check Available AFIP POS\" button in Journal's form to corroborate the to use to create the journals.\n" +"\n" +"For more information about Argentinean Electronic invoicing please go to http://www.afip.gob.ar/fe/ayuda.asp\n" +"\n" +"Technical\n" +"---------\n" +"\n" +"The web services that are implemented are the ones that are the most common:\n" +"\n" +"* wsfev1 - \"Factura Electrónica\" (Electronic Invoice)\n" +"* wsbfev1 - \"Bono Fiscal Electrónico\" (Electronic Fiscal Bond)\n" +"* wsfexv1 - \"Factura de Exportación Electrónica\" (Electronic Exportation Invoice - same as Export Voucher)\n" +"* wscdc - \"Constatación de Comprobantes\" (Invoices Verification)\n" +"\n" +"For Development information go to http://www.afip.gob.ar/fe/documentos/WSBFEv1%20-%20Manual%20para%20el%20desarrollador.pdf\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_latam_invoice_document +msgid "" +"\n" +"Functional\n" +"----------\n" +"\n" +"In some Latinamerica countries, including Argentina and Chile, some accounting transactions like invoices and vendor bills are classified by a document types defined by the government fiscal authorities (In Argentina case AFIP, Chile case SII).\n" +"\n" +"This module is intended to be extended by localizations in order to manage these document types and is an essential information that needs to be displayed in the printed reports and that needs to be easily identified, within the set of invoices as well of account moves.\n" +"\n" +"Each document type have their own rules and sequence number, this last one is integrated with the invoice number and journal sequence in order to be easy for the localization user. In order to support or not this document types a Journal has a new option that lets to use document or not.\n" +"\n" +"Technical\n" +"---------\n" +"\n" +"If your localization needs this logic will then need to add this module as dependency and in your localization module extend:\n" +"\n" +"* extend company's _localization_use_documents() method.\n" +"* create the data of the document types that exists for the specific country. The document type has a country field\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ar +msgid "" +"\n" +"Functional\n" +"----------\n" +"\n" +"This module add accounting features for the Argentinean localization, which represent the minimal configuration needed for a company to operate in Argentina and under the AFIP (Administración Federal de Ingresos Públicos) regulations and guidelines.\n" +"\n" +"Follow the next configuration steps for Production:\n" +"\n" +"1. Go to your company and configure your VAT number and AFIP Responsibility Type\n" +"2. Go to Accounting / Settings and set the Chart of Account that you will like to use.\n" +"3. Create your Sale journals taking into account AFIP POS info.\n" +"\n" +"Demo data for testing:\n" +"\n" +"* 3 companies were created, one for each AFIP responsibility type with the respective Chart of Account installed. Choose the company that fix you in order to make tests:\n" +"\n" +" * (AR) Responsable Inscripto\n" +" * (AR) Exento\n" +" * (AR) Monotributo\n" +"\n" +"* Journal sales configured to Pre printed and Expo invoices in all companies\n" +"* Invoices and other documents examples already validated in “(AR) Responsable Inscripto” company\n" +"* Partners example for the different responsibility types:\n" +"\n" +" * ADHOC (IVA Responsable Inscripto)\n" +" * Consejo Municipal Rosario (IVA Sujeto Exento)\n" +" * Gritti (Monotributo)\n" +" * Cerro Castor. IVA Liberado in Zona Franca\n" +" * Expresso (Cliente del Exterior)\n" +" * Odoo (Proveedor del Exterior)\n" +"\n" +"Highlights:\n" +"\n" +"* Chart of account will not be automatically installed, each CoA Template depends on the AFIP Responsibility of the company, you will need to install the CoA for your needs.\n" +"* No sales journals will be generated when installing a CoA, you will need to configure your journals manually.\n" +"* The Document type will be properly pre selected when creating an invoice depending on the fiscal responsibility of the issuer and receiver of the document and the related journal.\n" +"* A CBU account type has been added and also CBU Validation\n" +"\n" +"\n" +"Technical\n" +"---------\n" +"\n" +"This module adds both models and fields that will be eventually used for the electronic invoice module. Here is a summary of the main features:\n" +"\n" +"Master Data:\n" +"\n" +"* Chart of Account: one for each AFIP responsibility that is related to a legal entity:\n" +"\n" +" * Responsable Inscripto (RI)\n" +" * Exento (EX)\n" +" * Monotributo (Mono)\n" +"\n" +"* Argentinean Taxes and Account Tax Groups (VAT taxes with the existing aliquots and other types)\n" +"* AFIP Responsibility Types\n" +"* Fiscal Positions (in order to map taxes)\n" +"* Legal Documents Types in Argentina\n" +"* Identification Types valid in Argentina.\n" +"* Country AFIP codes and Country VAT codes for legal entities, natural persons and others\n" +"* Currency AFIP codes\n" +"* Unit of measures AFIP codes\n" +"* Partners: Consumidor Final and AFIP\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ec +msgid "" +"\n" +"Functional\n" +"----------\n" +"\n" +"This module adds accounting features for Ecuadorian localization, which\n" +"represent the minimum requirements to operate a business in Ecuador in compliance\n" +"with local regulation bodies such as the ecuadorian tax authority -SRI- and the \n" +"Superintendency of Companies -Super Intendencia de Compañías-\n" +"\n" +"Follow the next configuration steps:\n" +"1. Go to your company and configure your country as Ecuador\n" +"2. Install the invoicing or accounting module, everything will be handled automatically\n" +"\n" +"Highlights:\n" +"* Ecuadorian chart of accounts will be automatically installed, based on example provided by Super Intendencia de Compañías\n" +"* List of taxes (including withholds) will also be installed, you can switch off the ones your company doesn't use\n" +"* Fiscal position, document types, list of local banks, list of local states, etc, will also be installed\n" +"\n" +"Technical\n" +"---------\n" +"Master Data:\n" +"* Chart of Accounts, based on recomendation by Super Cías\n" +"* Ecuadorian Taxes, Tax Tags, and Tax Groups\n" +"* Ecuadorian Fiscal Positions\n" +"* Document types (there are about 41 purchase documents types in Ecuador)\n" +"* Identification types\n" +"* Ecuador banks\n" +"* Partners: Consumidor Final, SRI, IESS, and also basic VAT validation\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_gcc_pos +msgid "" +"\n" +"GCC POS Localization\n" +"=======================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_reports_gstr +msgid "" +"\n" +"GST return filing using IAP\n" +"================================\n" +"\n" +"** GSTR-1: Send and view summary report\n" +"** GSTR-2B: matching\n" +"** GSTR-3B: view report\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_reports_gstr_pos +msgid "" +"\n" +"GSTR-1 return data set as per point of sale orders\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_gamification +msgid "" +"\n" +"Gamification process\n" +"====================\n" +"The Gamification module provides ways to evaluate and motivate the users of Odoo.\n" +"\n" +"The users can be evaluated using goals and numerical objectives to reach.\n" +"**Goals** are assigned through **challenges** to evaluate and compare members of a team with each others and through time.\n" +"\n" +"For non-numerical achievements, **badges** can be granted to users. From a simple \"thank you\" to an exceptional achievement, a badge is an easy way to exprimate gratitude to a user for their good work.\n" +"\n" +"Both goals and badges are flexibles and can be adapted to a large range of modules and actions. When installed, this module creates easy goals to help new users to discover Odoo and configure their user profile.\n" +msgstr "" +"\n" +" 游戏化过程\n" +"====================\n" +" 游戏化模块会提供评估和激励 Odoo 用户的方法.\n" +"\n" +" 可使用要达到的目标和数值目标评估用户.\n" +" 使用**挑战**配置**目标**以通过时间评估团队成员,并互相比较.\n" +"\n" +" 对于非数值成绩,可授予用户 **徽标**. 对于杰出成绩的简单「感谢」而言,徽标是一种简单的方式,用以表达对用户出色工作的感激.\n" +"\n" +" 目标和徽标都是灵活的,并且可适用于大量的模块和动作. 安装时,此模块会创建简单的目标以帮助新用户探索 Odoo 并设置其用户资料.\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_uy +msgid "" +"\n" +"General Chart of Accounts.\n" +"==========================\n" +"\n" +"Provide Templates for Chart of Accounts, Taxes for Uruguay.\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_sale_loyalty +msgid "" +"\n" +"Generate Coupons from Helpdesks tickets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_edi_landing +msgid "" +"\n" +"Generate Electronic Invoice with custom numbers\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_links +msgid "" +"\n" +"Generate short links with analytics trackers (UTM) to share your pages through marketing campaigns.\n" +"Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to analyze the efficiency of those campaigns in terms of lead generation, related revenues (sales orders), recruitment, etc.\n" +" " +msgstr "" +"\n" +"使用分析跟踪器(UTM)创建短连结,以通过行销活动共享您的网页.\n" +"这些跟踪器可以在Google Analytics中用于跟踪点选次数和访问者,或者在Odoo报告中用于分析这些广告系列在潜在客户创建,相关收入(销售订单),招聘等方面的效率.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_form_project +msgid "" +"\n" +"Generate tasks in Project app from a form published on your website. This module requires the use of the *Form Builder* module (available in Odoo Enterprise) in order to build the form.\n" +" " +msgstr "" +"\n" +"从网站上发布的表单创建专案应用程序中的任务. 这个模块需要使用 *表单创建器* 模块(需要Odoo企业中可用)以构建表单.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_intrastat +msgid "" +"\n" +"Generates Intrastat XML report for declaration\n" +"Based on invoices.\n" +"Adds the possibility to specify the origin country of goods and the partner VAT in the Intrastat XML report.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_nl_intrastat +msgid "" +"\n" +"Generates Netherlands Intrastat report for declaration based on invoices.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_payroll_account +msgid "" +"\n" +"Generic Payroll system Integrated with Accounting.\n" +"==================================================\n" +"\n" +" * Expense Encoding\n" +" * Payment Encoding\n" +" * Company Contribution Management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_de_pos_cert +msgid "" +"\n" +"Germany TSS Regulation\n" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_de_pos_res_cert +msgid "" +"\n" +"Germany TSS Regulation for restaurant\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hw_drivers +msgid "" +"\n" +"Hardware Poxy\n" +"=============\n" +"\n" +"This module allows you to remotely use peripherals connected to this server.\n" +"\n" +"This modules only contains the enabling framework. The actual devices drivers\n" +"are found in other modules that must be installed separately.\n" +"\n" +msgstr "" +"\n" +"硬件代理\n" +"=============\n" +"\n" +"这个模块可以使您远程使用并行端口地址连接到服务器.\n" +"\n" +"这个模块只包含启用的框架. 实际的设备驱动可以在\n" +"其它必须单独安装的模块中找到.\n" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk +msgid "" +"\n" +"Helpdesk - Ticket Management App\n" +"================================\n" +"\n" +"Features:\n" +"\n" +" - Process tickets through different stages to solve them.\n" +" - Add priorities, types, descriptions and tags to define your tickets.\n" +" - Use the chatter to communicate additional information and ping co-workers on tickets.\n" +" - Enjoy the use of an adapted dashboard, and an easy-to-use kanban view to handle your tickets.\n" +" - Make an in-depth analysis of your tickets through the pivot view in the reports menu.\n" +" - Create a team and define its members, use an automatic assignment method if you wish.\n" +" - Use a mail alias to automatically create tickets and communicate with your customers.\n" +" - Add Service Level Agreement deadlines automatically to your tickets.\n" +" - Get customer feedback by using ratings.\n" +" - Install additional features easily using your team form view.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_helpdesk_knowledge +msgid "" +"\n" +"Helpdesk integration with knowledge\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_holidays +msgid "" +"\n" +"Helpdesk integration with time off\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hk_hr_payroll +#: model:ir.module.module,description:base.module_l10n_hk_hr_payroll_hsbc_autopay +msgid "" +"\n" +"Hong Kong Payroll Rules.\n" +"========================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_import_module +msgid "" +"\n" +"Import a custom data module\n" +"===========================\n" +"\n" +"This module allows authorized users to import a custom data module (.xml files and static assests)\n" +"for customization purpose.\n" +msgstr "" +"\n" +"导入一个客户数据模块\n" +"===========================\n" +"\n" +"基于可自定的需求,这个模块允许授权的用户导入一个客户数据模块 (.xml单据和静态单据)\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_sale_amazon +msgid "" +"\n" +"Import your Amazon orders in Odoo and synchronize deliveries\n" +"============================================================\n" +"\n" +"Key Features\n" +"------------\n" +"* Import orders from multiple accounts and marketplaces.\n" +"* Orders are matched with Odoo products based on their internal reference (SKU in Amazon).\n" +"* Deliveries confirmed in Odoo are synchronized in Amazon.\n" +"* Support for both Fulfilment by Amazon (FBA) and Fulfilment by Merchant (FBM):\n" +" * FBA: A stock location and stock moves allow to monitor your stock in Amazon Fulfilment Centers.\n" +" * FBM: Delivery notifications are sent to Amazon for each confirmed picking (partial delivery friendly).\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_debit_note +msgid "" +"\n" +"In a lot of countries, a debit note is used as an increase of the amounts of an existing invoice \n" +"or in some specific cases to cancel a credit note. \n" +"It is like a regular invoice, but we need to keep track of the link with the original invoice. \n" +"The wizard used is similar as the one for the credit note.\n" +" " +msgstr "" +"\n" +"在许多国家/地区,借记单用作现有结算单金额的增加\n" +"或在某些情况下取消退款通知。\n" +"它就像普通结算单,但我们需要跟踪与原始结算单的链接。 \n" +"使用起来与退款通知的向导类似。\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cn +msgid "" +"\n" +"Includes the following data for the Chinese localization\n" +"========================================================\n" +"\n" +"Account Type/科目类型\n" +"\n" +"State Data/省份数据\n" +"\n" +" 科目类型\\会计科目表模板\\增值税\\辅助核算类别\\管理会计凭证簿\\财务会计凭证簿\n" +"\n" +" 添加中文省份数据\n" +"\n" +" 增加小企业会计科目表\n" +"\n" +" 修改小企业会计科目表\n" +"\n" +" 修改小企业会计税率\n" +"\n" +"We added the option to print a voucher which will also \n" +"print the amount in words (special Chinese characters for numbers)\n" +"correctly when the cn2an library is installed. (e.g. with pip3 install cn2an)\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cn_city +msgid "" +"\n" +"Includes the following data for the Chinese localization\n" +"========================================================\n" +"\n" +"City Data/城市数据\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_edi +msgid "" +"\n" +"Indian - E-invoicing\n" +"====================\n" +"To submit invoicing through API to the government.\n" +"We use \"Tera Software Limited\" as GSP\n" +"\n" +"Step 1: First you need to create an API username and password in the E-invoice portal.\n" +"Step 2: Switch to company related to that GST number\n" +"Step 3: Set that username and password in Odoo (Goto: Invoicing/Accounting -> Configuration -> Settings -> Customer Invoices or find \"E-invoice\" in search bar)\n" +"Step 4: Repeat steps 1,2,3 for all GSTIN you have in odoo. If you have a multi-company with the same GST number then perform step 1 for the first company only.\n" +"\n" +"For the creation of API username and password please ref this document: \n" +" " +msgstr "" +"\n" +"Indian - E-invoicing\n" +"====================\n" +"To submit invoicing through API to the government.\n" +"We use \"Tera Software Limited\" as GSP\n" +"\n" +"Step 1: First you need to create an API username and password in the E-invoice portal.\n" +"Step 2: Switch to company related to that GST number\n" +"Step 3: Set that username and password in Odoo (Goto: Invoicing/Accounting -> Configration -> Settings -> Customer Invoices or find \"E-invoice\" in search bar)\n" +"Step 4: Repeat steps 1,2,3 for all GSTIN you have in odoo. If you have a multi-company with the same GST number then perform step 1 for the first company only.\n" +"\n" +"For the creation of API username and password please ref this document: \n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_edi_ewaybill +msgid "" +"\n" +"Indian - E-waybill\n" +"====================================\n" +"To submit E-waybill through API to the government.\n" +"We use \"Tera Software Limited\" as GSP\n" +"\n" +"Step 1: First you need to create an API username and password in the E-waybill portal.\n" +"Step 2: Switch to company related to that GST number\n" +"Step 3: Set that username and password in Odoo (Goto: Invoicing/Accounting -> Configration -> Settings -> Indian Electronic WayBill or find \"E-waybill\" in search bar)\n" +"Step 4: Repeat steps 1,2,3 for all GSTIN you have in odoo. If you have a multi-company with the same GST number then perform step 1 for the first company only.\n" +" " +msgstr "" +"\n" +"印度—电子运单\n" +"====================================\n" +"通过API向政府提交电子货运单。\n" +"使用“Tera Software Limited”作为GSP\n" +"\n" +"步骤1:首先,您需要在电子运单门户中创建API用户名和密码\n" +"步骤2:切换至与GST编号相关的公司\n" +"步骤3:在Odoo中设置用户名和密码(转到:发票/会计->配置->设置->印度电子运单,或在搜索栏中查找“电子运单”)\n" +"步骤4:对odoo中的所有GSTIN重复步骤1、2和3。如果您的多个公司具有相同的GST编号,则仅对首个公司执行步骤1。 " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in +msgid "" +"\n" +"Indian Accounting: Chart of Account.\n" +"====================================\n" +"\n" +"Indian accounting chart and localization.\n" +"\n" +"Odoo allows to manage Indian Accounting by providing Two Formats Of Chart of Accounts i.e Indian Chart Of Accounts - Standard and Indian Chart Of Accounts - Schedule VI.\n" +"\n" +"Note: The Schedule VI has been revised by MCA and is applicable for all Balance Sheet made after\n" +"31st March, 2011. The Format has done away with earlier two options of format of Balance\n" +"Sheet, now only Vertical format has been permitted Which is Supported By Odoo.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_hr_payroll +msgid "" +"\n" +"Indian Payroll Salary Rules.\n" +"============================\n" +"\n" +" -Configuration of hr_payroll for India localization\n" +" -All main contributions rules for India payslip.\n" +" * New payslip report\n" +" * Employee Contracts\n" +" * Allow to configure Basic / Gross / Net Salary\n" +" * Employee PaySlip\n" +" * Allowance / Deduction\n" +" * Integrated with Leaves Management\n" +" * Medical Allowance, Travel Allowance, Child Allowance, ...\n" +" - Payroll Advice and Report\n" +" - Yearly Salary by Head and Yearly Salary by Employee Report\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_intrastat +msgid "" +"\n" +"Intrastat Reports\n" +"==================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_upi +msgid "" +"\n" +"Invoice with UPI QR code\n" +"=========================\n" +"This module adds QR code in invoice report for UPI payment allowing to make payment via any UPI app.\n" +"\n" +"To print UPI Qr code add UPI id in company and tick \"QR Codes\" in configuration\n" +" " +msgstr "" +"\n" +"有UPI二维码的发票\n" +"=========================\n" +"本模块用于向UPI付款发票报告中添加二维码,允许通过任何UPI应用程序进行付款。\n" +"\n" +"要打印UPI二维码,在公司中添加UPI ID,并在配置中勾选“二维码”" + +#. module: base +#: model:ir.module.module,description:base.module_account +msgid "" +"\n" +"Invoicing & Payments\n" +"====================\n" +"The specific and easy-to-use Invoicing system in Odoo allows you to keep track of your accounting, even when you are not an accountant. It provides an easy way to follow up on your vendors and customers.\n" +"\n" +"You could use this simplified accounting in case you work with an (external) account to keep your books, and you still want to keep track of payments. This module also offers you an easy method of registering payments, without having to encode complete abstracts of account.\n" +" " +msgstr "" +"\n" +"应收付凭单管理\n" +"====================\n" +"Odoo里的具体的和易于使用的凭单系统可以让您保持您的会计的轨迹,即使您不是一个 会计. 它提供了一个简单的方式来跟进您的客户和客户.\n" +"\n" +"万一您使用(外部的)帐户,您可以使用这个简化得的会计来保留您的帐簿,跟踪付款. 该模块还为您提供了注册费用的简单方法,而不必考虑完整的摘要进行编码.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hw_posbox_homepage +msgid "" +"\n" +"IoT Box Homepage\n" +"================\n" +"\n" +"This module overrides Odoo web interface to display a simple\n" +"Homepage that explains what's the iotbox and shows the status,\n" +"and where to find documentation.\n" +"\n" +"If you activate this module, you won't be able to access the \n" +"regular Odoo interface anymore.\n" +"\n" +msgstr "" +"\n" +"物联网盒子主页\n" +"\n" +"================\n" +"\n" +"此模块复盖 Odoo Web 界面,以显示一个简单的\n" +"主页,说明什么是 iotbox 并显示状态,\n" +"并在何处找到单据.\n" +"\n" +"如果启用此模块,您将不能访问\n" +"Odoo一般界面了.\n" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_comparison_wishlist +msgid "" +"\n" +"It allows for comparing products from the wishlist\n" +" " +msgstr "" +"\n" +"它允许比较心愿单中的产品\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sa_pos +msgid "" +"\n" +"K.S.A. POS Localization\n" +"=======================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke_hr_payroll_bik +msgid "" +"\n" +"Kenyan Payroll Rules\n" +"========================================\n" +"This module is only temporary for its purpose is to add new fields in a stable version (16.0, 16.1).\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke_hr_payroll +msgid "" +"\n" +"Kenyan Payroll Rules.\n" +"=====================\n" +"\n" +" * Employee Details\n" +" * Employee Contracts\n" +" * Allowances/Deductions\n" +" * Allow to configure Basic/Gross/Net Salary\n" +" * Employee Payslip\n" +" * Integrated with Leaves Management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sa_hr_payroll +msgid "" +"\n" +"Kingdom of Saudi Arabia Payroll and End of Service rules.\n" +"===========================================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_landed_costs +msgid "" +"\n" +"Landed Costs Management\n" +"=======================\n" +"This module allows you to easily add extra costs on pickings and decide the split of these costs among their stock moves in order to take them into account in your stock valuation.\n" +" " +msgstr "" +"\n" +"到岸成本管理\n" +"=======================\n" +"这个模块允许您轻松地增加额外的费用,这些费用的收入决定仓库的动作来考虑他们自己的仓库价值值之间的区别.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_board +msgid "" +"\n" +"Lets the user create a custom dashboard.\n" +"========================================\n" +"\n" +"Allows users to create custom dashboard.\n" +" " +msgstr "" +"\n" +"让用户创建自定仪表板.\n" +"========================================\n" +"\n" +"允许用户创建自定仪表板.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_im_livechat +msgid "" +"\n" +"Live Chat Support\n" +"==========================\n" +"\n" +"Allow to drop instant messaging widgets on any web page that will communicate\n" +"with the current server and dispatch visitors request amongst several live\n" +"chat operators.\n" +"Help your customers with this chat, and analyse their feedback.\n" +"\n" +" " +msgstr "" +"\n" +" 支持联机客服\n" +"==========================\n" +"\n" +" 允许在\n" +" 与当前服务器进行交流的任何网页上放置即时消息部件,并将访客请求发送给几个联机\n" +" 聊天操作员.\n" +" 使用此聊天为您的客户提供帮助,并分析其反馈. " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu_hr_payroll +msgid "" +"\n" +"Luxembourg Payroll Rules.\n" +"=========================\n" +"\n" +" * Employee Details\n" +" * Employee Contracts\n" +" * Passport based Contract\n" +" * Allowances/Deductions\n" +" * Allow to configure Basic/Gross/Net Salary\n" +" * Employee Payslip\n" +" * Integrated with Leaves Management\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mail_mobile +msgid "" +"\n" +"Mail Mobile\n" +"===========\n" +"This module modifies the mail addon to provide:\n" +"\n" +"* Push notifications to registered devices for direct messages, chatter messages and channel.\n" +"* Redirection to the Android/iOS mobile app when you click on an Odoo URL.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_maintenance +msgid "" +"\n" +"Maintenance in MRP\n" +"==================\n" +"* Preventive vs corrective maintenance\n" +"* Define different stages for your maintenance requests\n" +"* Plan maintenance requests (also recurring preventive)\n" +"* Equipments related to workcenters\n" +"* MTBF, MTTR, ...\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_twitter_wall +msgid "" +"\n" +"Make Everybody a Part of Your Event\n" +"===================================\n" +"\n" +"Turn your event into an interactive experience by letting everybody post to your Twitter Wall. Connect with the crowd and build a personal relationship with attendees.\n" +" * Create Live twitter walls for event\n" +" * No complex moderation needed.\n" +" * Customize your live view with help of various options.\n" +" * Auto Storify view after event is over.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_3way_match +msgid "" +"\n" +"Manage 3-way matching on vendor bills\n" +"=====================================\n" +"\n" +"In the manufacturing industry, people often receive the vendor bills before\n" +"receiving their purchase, but they don't want to pay the bill until the goods\n" +"have been delivered.\n" +"\n" +"The solution to this situation is to create the vendor bill when you get it\n" +"(based on ordered quantities) but only pay the invoice when the received\n" +"quantities (on the PO lines) match the recorded vendor bill.\n" +"\n" +"This module introduces a \"release to pay\" mechanism that marks for each vendor\n" +"bill whether it can be paid or not.\n" +"\n" +"Each vendor bill receives one of the following three states:\n" +"\n" +" - Yes (The bill can be paid)\n" +" - No (The bill cannot be paid, nothing has been delivered yet)\n" +" - Exception (Received and invoiced quantities differ)\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_stock +msgid "" +"\n" +"Manage Product returns from helpdesk tickets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_work_entry_holidays +#: model:ir.module.module,description:base.module_hr_work_entry_holidays_enterprise +msgid "" +"\n" +"Manage Time Off in Payslips\n" +"============================\n" +"\n" +"This application allows you to integrate time off in payslips.\n" +" " +msgstr "" +"\n" +"在工资表中管理休假\n" +"============================\n" +"\n" +"此应用程序允许您将休假时间集成到工资表中. " + +#. module: base +#: model:ir.module.module,description:base.module_stock_dropshipping +msgid "" +"\n" +"Manage drop shipping orders\n" +"===========================\n" +"\n" +"This module adds a pre-configured Drop Shipping operation type\n" +"as well as a procurement route that allow configuring Drop\n" +"Shipping products and orders.\n" +"\n" +"When drop shipping is used the goods are directly transferred\n" +"from vendors to customers (direct delivery) without\n" +"going through the retailer's warehouse. In this case no\n" +"internal transfer document is needed.\n" +"\n" +msgstr "" +"\n" +" 管理直销运货单\n" +"===========================\n" +"\n" +" 此模块增加了预先设置直销送货作业类型\n" +" 和采购路线,其允许您设置直销\n" +" 送货产品和订单.\n" +"\n" +" 使用直销送货时,直接将货物\n" +" 从供应商调拨至客户(直接发货),而无需\n" +" 通过经销商的仓库进行周转. 在这种情况下,无需内部传输单据.\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_hr_expense +msgid "" +"\n" +"Manage expenses by Employees\n" +"============================\n" +"\n" +"This application allows you to manage your employees' daily expenses. It gives you access to your employees’ fee notes and give you the right to complete and validate or refuse the notes. After validation it creates an invoice for the employee.\n" +"Employee can encode their own expenses and the validation flow puts it automatically in the accounting after validation by managers.\n" +"\n" +"\n" +"The whole flow is implemented as:\n" +"---------------------------------\n" +"* Draft expense\n" +"* Submitted by the employee to his manager\n" +"* Approved by his manager\n" +"* Validation by the accountant and accounting entries creation\n" +"\n" +"This module also uses analytic accounting and is compatible with the invoice on timesheet module so that you are able to automatically re-invoice your customers' expenses if your work by project.\n" +" " +msgstr "" +"\n" +"管理员工的费用\n" +"============================\n" +"\n" +"此应用程序允许您管理员工的日常开支. 它允许您访问员工的收费说明,并让您有权完成和验证或拒绝该费用. 验证后,它为雇员创建结算单.\n" +"员工可以对自己的费用进行编码,验证流程在管理人员验证后自动将其记入会计分析.\n" +"\n" +"\n" +"整个流程实现为:\n" +"---------------------------------\n" +"*费用草案\n" +"*由雇员提交给他的经理\n" +"*经他的经理批准\n" +"*会计分析和会计分录创建\n" +"\n" +"该模块还使用分析会计,并与时间表模块上的结算单兼容,以便您可以自动重新开发客户的费用,如果您的项目工作.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_management +msgid "" +"\n" +"Manage sales quotations and orders\n" +"==================================\n" +"\n" +"This application allows you to manage your sales goals in an effective and efficient manner by keeping track of all sales orders and history.\n" +"\n" +"It handles the full sales workflow:\n" +"\n" +"* **Quotation** -> **Sales order** -> **Invoice**\n" +"\n" +"Preferences (only with Warehouse Management installed)\n" +"------------------------------------------------------\n" +"\n" +"If you also installed the Warehouse Management, you can deal with the following preferences:\n" +"\n" +"* Shipping: Choice of delivery at once or partial delivery\n" +"* Invoicing: choose how invoices will be paid\n" +"* Incoterms: International Commercial terms\n" +"\n" +"\n" +"With this module you can personnalize the sales order and invoice report with\n" +"categories, subtotals or page-breaks.\n" +"\n" +"The Dashboard for the Sales Manager will include\n" +"------------------------------------------------\n" +"* My Quotations\n" +"* Monthly Turnover (Graph)\n" +" " +msgstr "" +"\n" +"管理销售报价和订单\n" +"==================================\n" +"\n" +"This application allows you to manage your sales goals in an effective and efficient manner by keeping track of all sales orders and history.\n" +"\n" +"It handles the full sales workflow:\n" +"\n" +"* **Quotation** -> **Sales order** -> **Invoice**\n" +"\n" +"Preferences (only with Warehouse Management installed)\n" +"------------------------------------------------------\n" +"\n" +"If you also installed the Warehouse Management, you can deal with the following preferences:\n" +"\n" +"* Shipping: Choice of delivery at once or partial delivery\n" +"* Invoicing: choose how invoices will be paid\n" +"* Incoterms: International Commercial terms\n" +"\n" +"\n" +"With this module you can personnalize the sales order and invoice report with\n" +"categories, subtotals or page-breaks.\n" +"\n" +"The Dashboard for the Sales Manager will include\n" +"------------------------------------------------\n" +"* My Quotations\n" +"* Monthly Turnover (Graph)\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_stock +msgid "" +"\n" +"Manage sales quotations and orders\n" +"==================================\n" +"\n" +"This module makes the link between the sales and warehouses management applications.\n" +"\n" +"Preferences\n" +"-----------\n" +"* Shipping: Choice of delivery at once or partial delivery\n" +"* Invoicing: choose how invoices will be paid\n" +"* Incoterms: International Commercial terms\n" +"\n" +msgstr "" +"\n" +"管理销售报价和订单\n" +"==================================\n" +"\n" +"这个模块关联了销售和仓库管理程序.\n" +"\n" +"选项参数\n" +"-----------\n" +"* 运输: 交货或分批交货的选择\n" +"* 开立结算单: 选择如何开立结算单\n" +"* 国际贸易术语: 国际贸易术语\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_sale +msgid "" +"\n" +"Manage the after sale of the products from helpdesk tickets.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_stock +msgid "" +"\n" +"Manage the inventory of your products and display their availability status in your eCommerce store.\n" +"In case of stockout, you can decide to block further sales or to keep selling.\n" +"A default behavior can be selected in the Website settings.\n" +"Then it can be made specific at the product level.\n" +" " +msgstr "" +"\n" +"管理您的产品库存并在您的电子商务商店中显示其可用状态.\n" +"如果缺货,您可以决定停止进一步销售或继续销售.\n" +"可以在「网站」设置中选择默认行为.\n" +"然后它可以在产品级别具体化.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hr_holidays +msgid "" +"\n" +"Manage time off requests and allocations\n" +"=====================================\n" +"\n" +"This application controls the time off schedule of your company. It allows employees to request time off. Then, managers can review requests for time off and approve or reject them. This way you can control the overall time off planning for the company or department.\n" +"\n" +"You can configure several kinds of time off (sickness, paid days, ...) and allocate time off to an employee or department quickly using time off allocation. An employee can also make a request for more days off by making a new time off allocation. It will increase the total of available days for that time off type (if the request is accepted).\n" +"\n" +"You can keep track of time off in different ways by following reports:\n" +"\n" +"* Time Off Summary\n" +"* Time Off by Department\n" +"* Time Off Analysis\n" +"\n" +"A synchronization with an internal agenda (Meetings of the CRM module) is also possible in order to automatically create a meeting when a time off request is accepted by setting up a type of meeting in time off Type.\n" +msgstr "" +"\n" +"管理休假请求和配置\n" +"\n" +"Lead to Tickets\n" +"===============\n" +"\n" +"Link module to map leads to tickets\n" +" =====================================\n" +"\n" +"此应用程序控制公司的休假计画. 它允许员工请求休假. 然后,经理可以审核休假请求,并批准或拒绝这些请求. 这样,您可以控制公司或部门的整体休假计画.\n" +"\n" +"您可以设置多种休假(疾病、带薪天数等),并使用休假配置快速将休假配置给员工或部门. 员工还可以通过进行新的休假配置来请求更多休息日. 它将增加该休假类型的可用天数总数(如果请求被接受).\n" +"\n" +"您可以通过以下报告以不同的方式跟踪休假时间:\n" +"\n" +"• 休假摘要\n" +"• 按部门休假\n" +"• 休假分析\n" +"\n" +"还可以与内部议程(CRM 模块的会议)同步,以便在通过设置\"关闭类型\"的休假请求时自动创建会议.\n" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_slides +msgid "" +"\n" +"Mass mail course members\n" +"========================\n" +"\n" +"Bridge module adding UX requirements to ease mass mailing of course members.\n" +" " +msgstr "" +"\n" +"群发邮件课程成员\n" +"========================\n" +"\n" +"桥接模块增加 UX 要求,以方便课程成员的大规模邮寄.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_event +msgid "" +"\n" +"Mass mail event attendees\n" +"=========================\n" +"\n" +"Bridge module adding UX requirements to ease mass mailing of event attendees.\n" +" " +msgstr "" +"\n" +" 向活动参与者群发邮件\n" +"=========================\n" +"\n" +" 增加 UX 请求以简化活动参与者群发邮件的连接模块.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_event_track +msgid "" +"\n" +"Mass mail event track speakers\n" +"==============================\n" +"\n" +"Bridge module adding UX requirements to ease mass mailing of event track speakers.\n" +" " +msgstr "" +"\n" +" 向活动专题发言人群发邮件\n" +"==============================\n" +"\n" +" 增加 UX 请求以简化活动专题发言人群发邮件的连接模块.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_mps +msgid "" +"\n" +"Master Production Schedule\n" +"==========================\n" +"\n" +"Sometimes you need to create the purchase orders for the components of\n" +"manufacturing orders that will only be created later. Or for production orders\n" +"where you will only have the sales orders later. The solution is to predict\n" +"your sale forecasts and based on that you will already create some production\n" +"orders or purchase orders.\n" +"\n" +"You need to choose the products you want to add to the report. You can choose\n" +"the period for the report: day, week, month, ... It is also possible to define\n" +"safety stock, min/max to supply and to manually override the amount you will\n" +"procure.\n" +msgstr "" +"\n" +" 主生产计划\n" +"==========================\n" +"\n" +" 有时,您需要为\n" +" 将在稍后创建的生产单的组件预先创建采购单。或为稍后才能发生销售订单的生产单,预先创建采购单\n" +"解决方案旨在预测\n" +" 您的销售,并且根据该预测,创建一部分生产\n" +" 订单或采购单。\n" +"\n" +" 您需要选择希望添加到报告中的产品。您可以选择\n" +" 报告的周期:日、周、月等。也可定义\n" +" 安全库存量,供应的最小/最大库存以及手动覆盖将生产的产品数量。\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx +msgid "" +"\n" +"Minimal accounting configuration for Mexico.\n" +"============================================\n" +"\n" +"This Chart of account is a minimal proposal to be able to use OoB the\n" +"accounting feature of Odoo.\n" +"\n" +"This doesn't pretend be all the localization for MX it is just the minimal\n" +"data required to start from 0 in mexican localization.\n" +"\n" +"This modules and its content is updated frequently by openerp-mexico team.\n" +"\n" +"With this module you will have:\n" +"\n" +" - Minimal chart of account tested in production environments.\n" +" - Minimal chart of taxes, to comply with SAT_ requirements.\n" +"\n" +".. _SAT: http://www.sat.gob.mx/\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_analytic +#: model:ir.module.module,description:base.module_analytic_enterprise +msgid "" +"\n" +"Module for defining analytic accounting object.\n" +"===============================================\n" +"\n" +"In Odoo, analytic accounts are linked to general accounts but are treated\n" +"totally independently. So, you can enter various different analytic operations\n" +"that have no counterpart in the general financial accounts.\n" +" " +msgstr "" +"\n" +"定义分析会计对象的模块.\n" +"===============================================\n" +"\n" +"在 Odoo 中,虽然将分析帐户连结至总帐,但是\n" +"完全独立处理的. 因此,您可以输入\n" +"在财务总帐中无相应操作的各种不同的分析操作.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_resource +msgid "" +"\n" +"Module for resource management.\n" +"===============================\n" +"\n" +"A resource represent something that can be scheduled (a developer on a task or a\n" +"work center on manufacturing orders). This module manages a resource calendar\n" +"associated to every resource. It also manages the leaves of every resource.\n" +" " +msgstr "" +"\n" +"资源管理模块.\n" +"===============================\n" +"\n" +"一个可以计划的资源表现(一个开发人员的任务或一个\n" +"制造业订单工作中心). 这个模块可以管理相关的\n" +"每个资源的资源日历. 同样也可以管理每个子资源.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_mail +msgid "" +"\n" +"Module holding mail improvements for website. It holds the follow widget.\n" +msgstr "" +"\n" +"存储网站邮件改进的模块. 它包含订阅小部件.\n" + +#. module: base +#: model:ir.module.module,description:base.module_account_followup +msgid "" +"\n" +"Module to automate letters for unpaid invoices, with multi-level recalls.\n" +"=========================================================================\n" +"\n" +"You can define your multiple levels of recall through the menu:\n" +"---------------------------------------------------------------\n" +" Configuration / Follow-up / Follow-up Levels\n" +"\n" +"Once it is defined, you can automatically print recalls every day through simply clicking on the menu:\n" +"------------------------------------------------------------------------------------------------------\n" +" Payment Follow-Up / Send Email and letters\n" +"\n" +"It will generate a PDF / send emails / set activities according to the different levels\n" +"of recall defined. You can define different policies for different companies.\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_bank_statement_import_camt +msgid "" +"\n" +"Module to import CAMT bank statements.\n" +"======================================\n" +"\n" +"Improve the import of bank statement feature to support the SEPA recommended Cash Management format (CAMT.053).\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_coda +msgid "" +"\n" +"Module to import CODA bank statements.\n" +"======================================\n" +"\n" +"Supported are CODA flat files in V2 format from Belgian bank accounts.\n" +"----------------------------------------------------------------------\n" +" * CODA v1 support.\n" +" * CODA v2.2 support.\n" +" * Foreign Currency support.\n" +" * Support for all data record types (0, 1, 2, 3, 4, 8, 9).\n" +" * Parsing & logging of all Transaction Codes and Structured Format\n" +" Communications.\n" +" * Automatic Financial Journal assignment via CODA configuration parameters.\n" +" * Support for multiple Journals per Bank Account Number.\n" +" * Support for multiple statements from different bank accounts in a single\n" +" CODA file.\n" +" * Support for 'parsing only' CODA Bank Accounts (defined as type='info' in\n" +" the CODA Bank Account configuration records).\n" +" * Multi-language CODA parsing, parsing configuration data provided for EN,\n" +" NL, FR.\n" +"\n" +"The machine readable CODA Files are parsed and stored in human readable format in\n" +"CODA Bank Statements. Also Bank Statements are generated containing a subset of\n" +"the CODA information (only those transaction lines that are required for the\n" +"creation of the Financial Accounting records). The CODA Bank Statement is a\n" +"'read-only' object, hence remaining a reliable representation of the original\n" +"CODA file whereas the Bank Statement will get modified as required by accounting\n" +"business processes.\n" +"\n" +"CODA Bank Accounts configured as type 'Info' will only generate CODA Bank Statements.\n" +"\n" +"A removal of one object in the CODA processing results in the removal of the\n" +"associated objects. The removal of a CODA File containing multiple Bank\n" +"Statements will also remove those associated statements.\n" +"\n" +"Instead of a manual adjustment of the generated Bank Statements, you can also\n" +"re-import the CODA after updating the OpenERP database with the information that\n" +"was missing to allow automatic reconciliation.\n" +"\n" +"Remark on CODA V1 support:\n" +"~~~~~~~~~~~~~~~~~~~~~~~~~~\n" +"In some cases a transaction code, transaction category or structured\n" +"communication code has been given a new or clearer description in CODA V2.The\n" +"description provided by the CODA configuration tables is based upon the CODA\n" +"V2.2 specifications.\n" +"If required, you can manually adjust the descriptions via the CODA configuration menu.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_bank_statement_import_csv +msgid "" +"\n" +"Module to import CSV bank statements.\n" +"======================================\n" +"\n" +"This module allows you to import CSV Files in Odoo: they are parsed and stored in human readable format in\n" +"Accounting \\ Bank and Cash \\ Bank Statements.\n" +"\n" +"Important Note\n" +"---------------------------------------------\n" +"Because of the CSV format limitation, we cannot ensure the same transactions aren't imported several times or handle multicurrency.\n" +"Whenever possible, you should use a more appropriate file format like OFX.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_bank_statement_import_ofx +msgid "" +"\n" +"Module to import OFX bank statements.\n" +"======================================\n" +"\n" +"This module allows you to import the machine readable OFX Files in Odoo: they are parsed and stored in human readable format in\n" +"Accounting \\ Bank and Cash \\ Bank Statements.\n" +"\n" +"Bank Statements may be generated containing a subset of the OFX information (only those transaction lines that are required for the\n" +"creation of the Financial Accounting records).\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_bank_statement_import_qif +msgid "" +"\n" +"Module to import QIF bank statements.\n" +"======================================\n" +"\n" +"This module allows you to import the machine readable QIF Files in Odoo: they are parsed and stored in human readable format in\n" +"Accounting \\ Bank and Cash \\ Bank Statements.\n" +"\n" +"Important Note\n" +"---------------------------------------------\n" +"Because of the QIF format limitation, we cannot ensure the same transactions aren't imported several times or handle multicurrency.\n" +"Whenever possible, you should use a more appropriate file format like OFX.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be_soda +msgid "" +"\n" +"Module to import SODA files.\n" +"======================================\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_voip_onsip +msgid "" +"\n" +"Module with the required configuration to connect to OnSIP.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mn_reports +msgid "" +"\n" +"Mongolian accounting reports.\n" +"====================================================\n" +"-Profit and Loss\n" +"-Balance Sheet\n" +"-Cash Flow Statement\n" +"-VAT Repayment Report\n" +"-Corporate Revenue Tax Report\n" +"\n" +"Financial requirement contributor: Baskhuu Lodoikhuu. BumanIT LLC\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_nz +msgid "" +"\n" +"New Zealand Accounting Module\n" +"=============================\n" +"\n" +"New Zealand accounting basic charts and localizations.\n" +"\n" +"Also:\n" +" - activates a number of regional currencies.\n" +" - sets up New Zealand taxes.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_import +msgid "" +"\n" +"New extensible file import for Odoo\n" +"======================================\n" +"\n" +"Re-implement Odoo's file import system:\n" +"\n" +"* Server side, the previous system forces most of the logic into the\n" +" client which duplicates the effort (between clients), makes the\n" +" import system much harder to use without a client (direct RPC or\n" +" other forms of automation) and makes knowledge about the\n" +" import/export system much harder to gather as it is spread over\n" +" 3+ different projects.\n" +"\n" +"* In a more extensible manner, so users and partners can build their\n" +" own front-end to import from other file formats (e.g. OpenDocument\n" +" files) which may be simpler to handle in their work flow or from\n" +" their data production sources.\n" +"\n" +"* In a module, so that administrators and users of Odoo who do not\n" +" need or want an online import can avoid it being available to users.\n" +msgstr "" +"\n" +" 为 Odoo 导入的新可扩展单据\n" +"======================================\n" +"\n" +" 重新引入 Odoo 的单据导入系统:\n" +"\n" +"* 服务器端,之前的系统将大多数逻辑强加到\n" +" 客户端,此操作加倍了工作量(客户端之间),使没有客户端(直接的 RPC或\n" +" 其它形式的自动化)的\n" +" 导入系统更难使用,并且更难以(像通过\n" +" 3 种以上不同专案进行知识传播那样)收集有关 \n" +" 导入/导出系统的知识.\n" +"\n" +"* 因此,通过更多的可扩展方式,用户和合作伙伴可以创建其\n" +" 自己的前端,以便从其它的单据格式中进行导入(例如,OpenDocument\n" +" 单据),这使得其工作流程或\n" +" 其数据生产源中的处理变得更简单.\n" +"\n" +"* 因此,在模块中,不\n" +" 需要或不想要上线导入的 Odoo 管理员和用户可避免用户使用上线导入.\n" + +#. module: base +#: model:ir.module.module,description:base.module_sale_account_accountant +msgid "" +"\n" +"Notify that a matching sale order exists in the reconciliation widget.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sa +msgid "" +"\n" +"Odoo Arabic localization for most Saudi Arabia.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_enterprise +msgid "" +"\n" +"Odoo Enterprise Web Client.\n" +"===========================\n" +"\n" +"This module modifies the web addon to provide Enterprise design and responsiveness.\n" +" " +msgstr "" +"\n" +"Odoo 企业 Web 客户端.\n" +"===========================\n" +"\n" +"模块会修改 web 外挂以提供企业设计和响应.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_web_editor +msgid "" +"\n" +"Odoo Web Editor widget.\n" +"==========================\n" +"\n" +msgstr "" +"\n" +"Odoo 网络编辑器小工具\n" +"==========================\n" + +#. module: base +#: model:ir.module.module,description:base.module_web_gantt +msgid "" +"\n" +"Odoo Web Gantt chart view.\n" +"=============================\n" +"\n" +" " +msgstr "" +"\n" +"Odoo 甘特视图.\n" +"=============================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_web +msgid "" +"\n" +"Odoo Web core module.\n" +"========================\n" +"\n" +"This module provides the core of the Odoo Web Client.\n" +msgstr "" +"\n" +"Odoo Web 核心模块.\n" +"========================\n" +"\n" +"该模块提供了 Odoo Web 客户端的核心.\n" + +#. module: base +#: model:ir.module.module,description:base.module_web_tour +msgid "" +"\n" +"Odoo Web tours.\n" +"========================\n" +"\n" +msgstr "" +"\n" +"Odoo 网络导游\n" +"========================\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_hr_org_chart +msgid "" +"\n" +"Org Chart Widget for HR\n" +"=======================\n" +"\n" +"This module extend the employee form with a organizational chart.\n" +"(N+1, N+2, direct subordinates)\n" +" " +msgstr "" +"\n" +" Org 人力资源图表部件\n" +"=======================\n" +"\n" +" 此模块会使用组织结构图扩展员工表单.\n" +"(N+1、 N+2、直接下属) " + +#. module: base +#: model:ir.module.module,description:base.module_event +msgid "" +"\n" +"Organization and management of Events.\n" +"======================================\n" +"\n" +"The event module allows you to efficiently organize events and all related tasks: planning, registration tracking,\n" +"attendances, etc.\n" +"\n" +"Key Features\n" +"------------\n" +"* Manage your Events and Registrations\n" +"* Use emails to automatically confirm and send acknowledgments for any event registration\n" +msgstr "" +"\n" +" 活动的组织和管理.\n" +"======================================\n" +"\n" +" 活动模块允许您有效地组织活动及所有相关任务:计划、登记专题、\n" +" 出勤等.\n" +"\n" +" 关键功能\n" +"------------\n" +"* 管理您的活动和报名\n" +"* 使用电子邮件自动确认,并向所有活动注册用户发送致谢信\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_latam_check +msgid "" +"\n" +"Own Checks Management\n" +"---------------------\n" +"\n" +"Extends 'Check Printing Base' module to manage own checks with more features:\n" +"\n" +"* allow using own checks that are not printed but filled manually by the user\n" +"* allow to use deferred or electronic checks\n" +" * printing is disabled\n" +" * check number is set manually by the user\n" +"* add an optional \"Check Cash-In Date\" for post-dated checks (deferred payments)\n" +"* add a menu to track own checks\n" +"\n" +"Third Party Checks Management\n" +"-----------------------------\n" +"\n" +"Add new \"Third party check Management\" feature.\n" +"\n" +"There are 2 main Payment Methods additions:\n" +"\n" +"* New Third Party Checks:\n" +"\n" +" * Payments of this payment method represent the check you get from a customer when getting paid (from an invoice or a manual payment)\n" +"\n" +"* Existing Third Party check.\n" +"\n" +" * Payments of this payment method are to track moves of the check, for eg:\n" +"\n" +" * Use a check to pay a vendor\n" +" * Deposit the check on the bank\n" +" * Get the check back from the bank (rejection)\n" +" * Get the check back from the vendor (a rejection or return)\n" +" * Transfer the check from one third party check journal to the other (one shop to another)\n" +"\n" +" * Those operations can be done with multiple checks at once\n" +msgstr "" +"\n" +"自有支票管理\n" +"---------------------\n" +"\n" +"扩展“支票打印基本”模块,以便使用更多功,能管理自有支票:\n" +"\n" +"* 允许使用未经打印、由用户手动填写的自有支票\n" +"* 允许使用延期或电子支票\n" +"* 打印已禁用\n" +"* 支票号码由用户手动设置\n" +"* 为过期支票(延期付款)添加可选的“支票兑现日期”\n" +"* 添加菜单,以追踪自有支票\n" +"\n" +"第三方支票管理\n" +"-----------------------------\n" +"\n" +"添加新的“第三方支票管理”功能。\n" +"\n" +"主要新增加了两种付款方式:\n" +"\n" +"* 新的第三方支票:\n" +"\n" +"* 通过这种付款方式完成的付款代表您在获得付款时从客户处获得了支票(通过发票或手动付款)\n" +"\n" +"* 现有第三方支票。\n" +"\n" +"* 通过这种付款方式进行付款是为了追踪支票移动,例如:\n" +"\n" +"* 使用支票向供应商付款\n" +"* 将支票存入银行\n" +"* 从银行取回支票(拒收)\n" +"* 从供应商处取回支票(拒收或退回)\n" +"* 将支票从一个第三方支票日记帐转移到另一个(从一家店铺到另一家店铺)\n" +"\n" +"* 上述操作可以同时进行多次检查\n" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_workorder_plm +msgid "" +"\n" +"PLM for workorder.\n" +"=================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pa +msgid "" +"\n" +"Panamenian accounting chart and tax localization.\n" +"\n" +"Plan contable panameño e impuestos de acuerdo a disposiciones vigentes\n" +"\n" +"Con la Colaboración de\n" +"- AHMNET CORP http://www.ahmnet.com\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_geolocalize +msgid "" +"\n" +"Partners Geolocation\n" +"========================\n" +" " +msgstr "" +"\n" +"合作伙伴地理定位\n" +"========================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hr_appraisal +msgid "" +"\n" +"Periodical Employees appraisal\n" +"==============================\n" +"\n" +"By using this application you can maintain the motivational process by doing periodical appraisals of your employees performance. The regular assessment of human resources can benefit your people as well your organization.\n" +"\n" +"An appraisal plan can be assigned to each employee. These plans define the frequency and the way you manage your periodic personal appraisal.\n" +"\n" +"Key Features\n" +"------------\n" +"* Ability to create employee's appraisal(s).\n" +"* An appraisal can be created by an employee's manager or automatically based on schedule which is defined in the employee form.\n" +"* The appraisal is done according to a plan in which various surveys can be created. Each survey can be answered by a particular level in the employees hierarchy. The final review and appraisal is done by the manager.\n" +"* Manager, colleague, collaborator, and employee himself/herself receives email to perform a periodical appraisal.\n" +"* Every Appraisal Form filled by employees, colleague, collaborator, can be viewed in a PDF form.\n" +"* Meeting Requests are created manually according to employees appraisals.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_phone_validation +msgid "" +"\n" +"Phone Numbers Validation\n" +"========================\n" +"\n" +"This module adds the feature of validation and formatting phone numbers\n" +"according to a destination country.\n" +"\n" +"It also adds phone blacklist management through a specific model storing\n" +"blacklisted phone numbers.\n" +"\n" +"It adds mail.thread.phone mixin that handles sanitation and blacklist of\n" +"records numbers. " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_it +msgid "" +"\n" +"Piano dei conti italiano di un'impresa generica.\n" +"================================================\n" +"\n" +"Italian accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_planning_contract +msgid "" +"\n" +"Planning integration with hr contract\n" +"\n" +"With this module, planning take into account employee's contracts for\n" +"slots planification and allocated hours.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_planning_holidays +msgid "" +"\n" +"Planning integration with time off\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_product_matrix +msgid "" +"\n" +"Please refer to Sale Matrix or Purchase Matrix for the use of this module.\n" +" " +msgstr "" +"\n" +"本模块的使用请参考销售矩阵或采购矩阵. " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_plm +msgid "" +"\n" +"Product Life Management\n" +"=======================\n" +"\n" +"* Versioning of Bill of Materials and Products\n" +"* Different approval flows possible depending on the type of change order\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_holidays +msgid "" +"\n" +"Project and task integration with holidays\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_http_routing +msgid "" +"\n" +"Proposes advanced routing options not available in web or base to keep\n" +"base modules simple.\n" +msgstr "" +"\n" +" 不能在 web 或 基础模块中使用推荐的提议路线选项以简化\n" +" 基础模块.\n" + +#. module: base +#: model:ir.module.module,description:base.module_website_customer +msgid "" +"\n" +"Publish your customers as business references on your website to attract new potential prospects.\n" +" " +msgstr "" +"\n" +"在您的网站上发布您的客户作为业务参考,以吸引新潜在客户.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_membership +msgid "" +"\n" +"Publish your members/association directory publicly.\n" +" " +msgstr "" +"\n" +"公开发布您系统的联系人目录.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sale_ebay +msgid "" +"\n" +"Publish your products on eBay\n" +"=============================\n" +"\n" +"The eBay integrator gives you the opportunity to manage your Odoo's products on eBay.\n" +"\n" +"Key Features\n" +"------------\n" +"* Publish products on eBay\n" +"* Revise, relist, end items on eBay\n" +"* Integration with the stock moves\n" +"* Automatic creation of sales order and invoices\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_cl_edi_boletas +msgid "" +"\n" +"Purpose of the Module:\n" +"======================\n" +"\n" +"As part of the SII requirements (Legal requirement in Chile), \n" +"beginning on March 2021 boletas transactions must be sent to the SII under the \n" +"electronic workflow using a different web service than the one used for electronic Invoices. \n" +"Previously, there was no need to send the boletas to the SII, just a daily report.\n" +"\n" +"The requirement to send a daily sales book \n" +"\"Libro de ventas diarias\" (former \"reporte de consumo de folios\" or RCOF) has been eliminated by the authority, \n" +"effective August 1st 2022. For that reason it has been eliminated from this new version of Odoo.\n" +"\n" +"Differences between Electronic boletas vs Electronic Invoicing Workflows:\n" +"=========================================================================\n" +"\n" +"These workflows have some important differences that lead us to do this PR with the specific changes.\n" +"Here are the differences:\n" +"\n" +"* The mechanism for sending the electronic boletas information needs dedicated servers, different from those used at the reception electronic invoice (\"Palena\" for the production environment - palena.sii.cl and \"Maullin\" for the test environment - maullin.sii.cl).\n" +"* The authentication services, querying the status of a delivery and the status of a document will be different.\n" +"* The authentication token obtained\n" +"* The XML schema for sending the electronic boletas was updated with the incorporation of new tags\n" +"* The validation diagnosis of electronic boletas will be delivered through a \"REST\" web service that has as an input the track-id of the delivery. Electronic Invoices will continue to receive their diagnoses via e-mail.\n" +"* The track-id (\"identificador de envío\") associated with the electronic boletas will be 15 digits long. (Electronics Invoice is 10)\n" +"\n" +"Highlights from this SII Guide:\n" +" https://www.sii.cl/factura_electronica/factura_mercado/Instructivo_Emision_Boleta_Elect.pdf\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality +msgid "" +"\n" +"Quality Base\n" +"===============\n" +"* Define quality points that will generate quality checks on pickings,\n" +" manufacturing orders or work orders (quality_mrp)\n" +"* Quality alerts can be created independently or related to quality checks\n" +"* Possibility to add a measure to the quality check with a min/max tolerance\n" +"* Define your stages for the quality alerts\n" +msgstr "" +"\n" +" 质量控制\n" +"===============\n" +"\n" +"* 定义将在拣货、\n" +" 制造订单或工作订单 (quality_mrp) 中创建质量检查的质量点\n" +"* 可独立创建质量报警,也可创建与质量检查有关的报警\n" +"* 可以增加具有最小/最大误差的质量检查测试\n" +"* 定义质量报警阶段\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_quality_control +msgid "" +"\n" +"Quality Control\n" +"===============\n" +"* Define quality points that will generate quality checks on pickings,\n" +" manufacturing orders or work orders (quality_mrp)\n" +"* Quality alerts can be created independently or related to quality checks\n" +"* Possibility to add a measure to the quality check with a min/max tolerance\n" +"* Define your stages for the quality alerts\n" +msgstr "" +"\n" +" 质量控制\n" +"===============\n" +"\n" +"* 定义将在拣货、\n" +" 制造订单或工作订单 (quality_mrp) 中创建质量检查的质量点\n" +"* 可独立创建质量报警,也可创建与质量检查有关的报警\n" +"* 可以增加具有最小/最大误差的质量检查测试\n" +"* 定义质量报警阶段\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_hr_payroll_expense +msgid "" +"\n" +"Reimbursement of expenses in Payslips\n" +"=====================================\n" +"\n" +"This application allows you to reimburse expenses in payslips.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_expense +msgid "" +"\n" +"Reinvoice Employee Expense\n" +"==========================\n" +"\n" +"Create some products for which you can re-invoice the costs.\n" +"This module allow to reinvoice employee expense, by setting the SO directly on the expense.\n" +msgstr "" +"\n" +" 重新开具员工费用结算单\n" +"==========================\n" +"\n" +" 创建一些可为其重新开具费用结算单的产品.\n" +" 此模块支持通过在费用上直接设置 SO 而重新开具员工费用结算单.\n" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_repair +msgid "" +"\n" +"Repair Products from helpdesk tickets\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_event_sms +msgid "" +"\n" +"SMS Marketing on event attendees\n" +"================================\n" +"\n" +"Bridge module adding UX requirements to ease SMS marketing o, event attendees.\n" +" " +msgstr "" +"\n" +"活动参与者的短信息行销\n" +"================================\n" +"\n" +"桥模块增加 UX 要求,以方便 短信息行销 o,活动参与者.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_event_track_sms +msgid "" +"\n" +"SMS Marketing on event track speakers\n" +"=====================================\n" +"\n" +"Bridge module adding UX requirements to ease SMS marketing on event track\n" +"speakers..\n" +" " +msgstr "" +"\n" +"活动专题音箱上的短信息行销\n" +"=====================================\n" +"\n" +"桥接模块增加 UX 要求,以简化事件轨道上的 短信息行销\n" +"音箱.. " + +#. module: base +#: model:ir.module.module,description:base.module_sale_subscription_dashboard +msgid "" +"\n" +"Sale Subscription Dashboard\n" +"===========================\n" +"It adds dashboards to :\n" +"1) Analyse the recurrent revenue and other metrics for subscriptions\n" +"2) Analyse the subscriptions modifications by salesman and compute their value.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_planning_hr_skills +msgid "" +"\n" +"Search planning slots by skill\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_digital +msgid "" +"\n" +"Sell e-goods in your eCommerce store (e.g. webinars, articles, e-books, video tutorials).\n" +"To do so, create the product and attach the file to share via the *Files* button of the product form.\n" +"Once the order is paid, the file is made available in the order confirmation page and in the customer portal.\n" +" " +msgstr "" +"\n" +"在您的电子商务商店中销售电子商品(例如,网络研讨会,文章,电子书,影片教学)\n" +"为此,请创建产品并通过产品表单的* Files *按钮附加要共享的单据\n" +"支付订单后,该单据将在订单确认网页和客户网站入口网站中提供.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_event_sale +msgid "" +"\n" +"Sell event tickets through eCommerce app.\n" +" " +msgstr "" +"\n" +"通过电子商务应用程序销售活动门票.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_event_booth_sale +msgid "" +"\n" +"Sell your event booths and track payments on sale orders.\n" +" " +msgstr "" +"\n" +"出售您的活动展位并专题销售订单的付款.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_digest +msgid "" +"\n" +"Send KPI Digests periodically\n" +"=============================\n" +msgstr "" +"\n" +"定期发送KPI概述\n" +"=============================\n" + +#. module: base +#: model:ir.module.module,description:base.module_delivery_bpost +msgid "" +"\n" +"Send your shippings through bpost and track them online\n" +"=======================================================\n" +"\n" +"Companies located in Belgium can take advantage of shipping with the\n" +"local Post company.\n" +"\n" +"See: https://www.bpost.be/portal/goHome\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_link_tracker +msgid "" +"\n" +"Shorten URLs and use them to track clicks and UTMs\n" +msgstr "" +"\n" +"缩短 URL 并使用它们来追踪点击次数和集成式威胁管理 \n" + +#. module: base +#: model:ir.module.module,description:base.module_website_google_map +msgid "" +"\n" +"Show your company address/partner address on Google Maps. Configure an API key in the Website settings.\n" +" " +msgstr "" +"\n" +"显示您的公司地址/合作伙伴地址Google 地图. 联机设置设置 API 密钥.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sign +msgid "" +"\n" +"Sign and complete your documents easily. Customize your documents with text and signature fields and send them to your recipients.\n" +"\n" +"Let your customers follow the signature process easily.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sg +msgid "" +"\n" +"Singapore accounting chart and localization.\n" +"=======================================================\n" +"\n" +"This module add, for accounting:\n" +" - The Chart of Accounts of Singapore\n" +" - Field UEN (Unique Entity Number) on company and partner\n" +" - Field PermitNo and PermitNoDate on invoice\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_skills +msgid "" +"\n" +"Skills and Resume for HR\n" +"========================\n" +"\n" +"This module introduces skills and resume management for employees.\n" +" " +msgstr "" +"\n" +"人力资源技能和简历\n" +"========================\n" +"\n" +"本模块用于介绍员工技能和简历管理。" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_sk +msgid "" +"\n" +"Slovakia accounting chart and localization: Chart of Accounts 2020, basic VAT rates + \n" +"fiscal positions.\n" +"\n" +"Tento modul definuje:\n" +"• Slovenskú účtovú osnovu za rok 2020\n" +"\n" +"• Základné sadzby pre DPH z predaja a nákupu\n" +"\n" +"• Základné fiškálne pozície pre slovenskú legislatívu\n" +"\n" +" \n" +"Pre viac informácií kontaktujte info@26house.com alebo navštívte https://www.26house.com.\n" +" \n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_es +msgid "" +"\n" +"Spanish charts of accounts (PGCE 2008).\n" +"========================================\n" +"\n" +" * Defines the following chart of account templates:\n" +" * Spanish general chart of accounts 2008\n" +" * Spanish general chart of accounts 2008 for small and medium companies\n" +" * Spanish general chart of accounts 2008 for associations\n" +" * Defines templates for sale and purchase VAT\n" +" * Defines tax templates\n" +" * Defines fiscal positions for spanish fiscal legislation\n" +" * Defines tax reports mod 111, 115 and 303\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_studio +msgid "" +"\n" +"Studio - Customize Odoo\n" +"=======================\n" +"\n" +"This addon allows the user to customize most element of the user interface, in a\n" +"simple and graphical way. It has two main features:\n" +"\n" +"* create a new application (add module, top level menu item, and default action)\n" +"* customize an existing application (edit menus, actions, views, translations, ...)\n" +"\n" +"Note: Only the admin user is allowed to make those customizations.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_studio +msgid "" +"\n" +"Studio - Customize Odoo\n" +"=======================\n" +"\n" +"This addon allows the user to display all the website forms linked to a certain\n" +"model. Furthermore, you can create a new website form or edit an existing one.\n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_se +msgid "" +"\n" +"Swedish Accounting\n" +"------------------\n" +"\n" +"This is the base module to manage the accounting chart for Sweden in Odoo.\n" +"It also includes the invoice OCR payment reference handling.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ch +msgid "" +"\n" +"Swiss localization\n" +"==================\n" +"This module defines a chart of account for Switzerland (Swiss PME/KMU 2015), taxes and enables the generation of ISR and QR-bill when you print an invoice or send it by mail.\n" +"\n" +"An ISR will be generated if you specify the information it needs :\n" +" - The bank account you expect to be paid on must be set, and have a valid postal reference.\n" +" - Your invoice must have been set assigned a bank account to receive its payment\n" +" (this can be done manually, but a default value is automatically set if you have defined a bank account).\n" +" - You must have set the postal references of your bank.\n" +" - Your invoice must be in EUR or CHF (as ISRs do not accept other currencies)\n" +"\n" +"A QR-bill will be generated if:\n" +" - The partner set on your invoice has a complete address (street, city, postal code and country) in Switzerland\n" +" - The option to generate the Swiss QR-code is selected on the invoice (done by default)\n" +" - A correct account number/QR IBAN is set on your bank journal\n" +" - (when using a QR-IBAN): the payment reference of the invoice is a QR-reference\n" +"\n" +"The generation of the ISR and QR-bill is automatic if you meet the previous criteria.\n" +"\n" +"Here is how it works:\n" +" - Printing the invoice will trigger the download of three files: the invoice, its ISR and its QR-bill\n" +" - Clicking the 'Send by mail' button will attach three files to your draft mail : the invoice, the ISR and the QR-bill.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_timesheet_synchro +msgid "" +"\n" +"Synchronization of timesheet entries with the external timesheet application.\n" +"=============================================================================\n" +"\n" +"If you use the external timesheet application, this module alows you to synchronize timesheet entries between Odoo and the application.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_appointment_hr +#: model:ir.module.module,description:base.module_test_appointment_full +msgid "" +"\n" +"Take into account the working schedule (sick leaves, part time, ...) of employees when scheduling appointments\n" +"--------------------------------------------------------------------------------------------------------------\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_tcs_tds +msgid "" +"\n" +"Tax Report TCS/TDS for India\n" +"====================================\n" +"\n" +"This module adds TCS and TDS Tax Report and load related Taxes in Indian Company.\n" +" " +msgstr "" +"\n" +"印度税务报告TCS/TDS\n" +"====================================\n" +"\n" +"本模块用于在印度公司中添加TCS和TDS税务报告、与负载相关的税务。 " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_product_expiry +#: model:ir.module.module,description:base.module_mrp_workorder_expiry +msgid "" +"\n" +"Technical module.\n" +" " +msgstr "" +"\n" +"技术模块 " + +#. module: base +#: model:ir.module.module,description:base.module_sale_product_configurator +msgid "" +"\n" +"Technical module:\n" +"The main purpose is to override the sale_order view to allow configuring products in the SO form.\n" +"\n" +"It also enables the \"optional products\" feature.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_repair +msgid "" +"\n" +"The aim is to have a complete module to manage all products repairs.\n" +"====================================================================\n" +"\n" +"The following topics are covered by this module:\n" +"------------------------------------------------------\n" +" * Add/remove products in the reparation\n" +" * Impact for stocks\n" +" * Invoicing (products and/or services)\n" +" * Warranty concept\n" +" * Repair quotation report\n" +" * Notes for the technician and for the final customer\n" +msgstr "" +"\n" +" 旨在拥有更完整的模块以管理所有的产品维修.\n" +"====================================================================\n" +"\n" +" 此模块涵盖以下主题:\n" +"------------------------------------------------------\n" +" * 在维修中增加/删除产品\n" +" * 库存影响\n" +" * 开具凭单(产品和/或服务)\n" +" * 担保概念\n" +" * 维修报价报告\n" +" * 技术员和最终客户的注意事项\n" + +#. module: base +#: model:ir.module.module,description:base.module_lunch +msgid "" +"\n" +"The base module to manage lunch.\n" +"================================\n" +"\n" +"Many companies order sandwiches, pizzas and other, from usual vendors, for their employees to offer them more facilities.\n" +"\n" +"However lunches management within the company requires proper administration especially when the number of employees or vendors is important.\n" +"\n" +"The “Lunch Order” module has been developed to make this management easier but also to offer employees more tools and usability.\n" +"\n" +"In addition to a full meal and vendor management, this module offers the possibility to display warning and provides quick order selection based on employee’s preferences.\n" +"\n" +"If you want to save your employees' time and avoid them to always have coins in their pockets, this module is essential.\n" +" " +msgstr "" +"\n" +"管理工作餐的基础模块。\n" +"================================\n" +"\n" +"许多公司都会从常规供应商处订购三明治、比萨饼和其他食物,以便为员工提供更多配套设施。\n" +"\n" +"但是,公司内的工作餐管理需要适当的管理,尤其要注重员工和供应商数量方便的管理。\n" +"\n" +"“工作餐订购”模块,不仅管理变得简单了,而且为员工提供了更多的工具和可用性。\n" +"\n" +"处理完备的餐点和供应商管理,此模块还可以显示警报,并根据员工偏好提供快速订购选择。\n" +"如果您希望节省员工的时间,并避免其犹豫不决,则非常有必要使用该模块。\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_base +msgid "" +"\n" +"The kernel of Odoo, needed for all installation.\n" +"===================================================\n" +msgstr "" +"\n" +" 所有安装均需要 Odoo 的内核.\n" +"===================================================\n" + +#. module: base +#: model:ir.module.module,description:base.module_microsoft_account +msgid "" +"\n" +"The module adds Microsoft user in res user.\n" +"===========================================\n" +msgstr "" +"\n" +"此模块把 Microsoft 的用户增加到系统用户.\n" +"========================================\n" + +#. module: base +#: model:ir.module.module,description:base.module_google_account +msgid "" +"\n" +"The module adds google user in res user.\n" +"========================================\n" +msgstr "" +"\n" +"此模块把 Google 的用户增加到系统用户.\n" +"========================================\n" + +#. module: base +#: model:ir.module.module,description:base.module_social_media +msgid "" +"\n" +"The purpose of this technical module is to provide a front for\n" +"social media configuration for any other module that might need it.\n" +" " +msgstr "" +"\n" +"本技术模块的目的是为\n" +"任何其它可能需要它的模块的社交媒体设置.\n" +" " + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -146,6 +6657,1870 @@ msgid "" "The quantity done for the product %s doesn't respect the rounding precision defined on the unit of measure %s.\n" "Please change the quantity done or the rounding precision of your unit of measure." msgstr "" +"\n" +"产品”%s“的完成数量小数点精度与单位”%s“设定精度不同。 请修改完成数量小数点精度或重新设置单位小数点精度。" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_pos_cert +msgid "" +"\n" +"This add-on brings the technical requirements of the French regulation CGI art. 286, I. 3° bis that stipulates certain criteria concerning the inalterability, security, storage and archiving of data related to sales to private individuals (B2C).\n" +"-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n" +"\n" +"Install it if you use the Point of Sale app to sell to individuals.\n" +"\n" +"The module adds following features:\n" +"\n" +" Inalterability: deactivation of all the ways to cancel or modify key data of POS orders, invoices and journal entries\n" +"\n" +" Security: chaining algorithm to verify the inalterability\n" +"\n" +" Storage: automatic sales closings with computation of both period and cumulative totals (daily, monthly, annually)\n" +"\n" +" Access to download the mandatory Certificate of Conformity delivered by Odoo SA (only for Odoo Enterprise users)\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_cache +msgid "" +"\n" +"This creates a product cache per POS config. It drastically lowers the\n" +"time it takes to load a POS session with a lot of products.\n" +" " +msgstr "" +"\n" +"这会为每个 POS 设置创建一个产品缓存,它极大地降低了\n" +"使用很多产品装入 POS 作业阶段的时间.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_partner +msgid "" +"\n" +"This is a base module. It holds website-related stuff for Contact model (res.partner).\n" +" " +msgstr "" +"\n" +"这是一个基本模块. 它为合约模型(res.partner)存储与网站相关的内容.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_payment +msgid "" +"\n" +"This is a bridge module that adds multi-website support for payment providers.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_calendar +msgid "" +"\n" +"This is a full-featured calendar system.\n" +"========================================\n" +"\n" +"It supports:\n" +"------------\n" +" - Calendar of events\n" +" - Recurring events\n" +"\n" +"If you need to manage your meetings, you should install the CRM module.\n" +" " +msgstr "" +"\n" +"这是功能完整的日程表系统\n" +"========================================\n" +"\n" +"支持:\n" +"------------\n" +" - 日程调度\n" +" - 重复性事件\n" +"\n" +"如果您需要管理您的会议,您应该安装 CRM 模块.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fi +msgid "" +"\n" +"This is the Odoo module to manage the accounting in Finland.\n" +"============================================================\n" +"\n" +"After installing this module, you'll have access to :\n" +" * Finnish chart of account\n" +" * Fiscal positions\n" +" * Invoice Payment Reference Types (Finnish Standard Reference & Finnish Creditor Reference (RF))\n" +" * Finnish Reference format for Sale Orders\n" +"\n" +"Set the payment reference type from the Sales Journal.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_uom +msgid "" +"\n" +"This is the base module for managing Units of measure.\n" +"========================================================================\n" +" " +msgstr "" +"\n" +"计量单位管理基础模块.\n" +"========================================================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_product +msgid "" +"\n" +"This is the base module for managing products and pricelists in Odoo.\n" +"========================================================================\n" +"\n" +"Products support variants, different pricing methods, vendors information,\n" +"make to stock/order, different units of measure, packaging and properties.\n" +"\n" +"Pricelists support:\n" +"-------------------\n" +" * Multiple-level of discount (by product, category, quantities)\n" +" * Compute price based on different criteria:\n" +" * Other pricelist\n" +" * Cost price\n" +" * List price\n" +" * Vendor price\n" +"\n" +"Pricelists preferences by product and/or partners.\n" +"\n" +"Print product labels with barcode.\n" +" " +msgstr "" +"\n" +" 这是在 Odoo 中管理产品和价格表的基础模块.\n" +"========================================================================\n" +"\n" +" 产品支持变量、不同的定价方式、供应商信息、=========\n" +" 按库存/订单生产、不同的计量单位、包装和属性.\n" +"\n" +" 价格表支持:\n" +"-------------------\n" +" * 多级别折扣(按照产品、类别、计数)\n" +" * 根据不同的条件计算价格:\n" +" * 其它价格表\n" +" * 成本价\n" +" * 标价\n" +" * 供应商价格\n" +"\n" +" 价格表优惠(按照产品和/或合作伙伴).\n" +"\n" +" 打印含有条码的产品标签. " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_be +msgid "" +"\n" +"This is the base module to manage the accounting chart for Belgium in Odoo.\n" +"==============================================================================\n" +"\n" +"After installing this module, the Configuration wizard for accounting is launched.\n" +" * We have the account templates which can be helpful to generate Charts of Accounts.\n" +" * On that particular wizard, you will be asked to pass the name of the company,\n" +" the chart template to follow, the no. of digits to generate, the code for your\n" +" account and bank account, currency to create journals.\n" +"\n" +"Thus, the pure copy of Chart Template is generated.\n" +"\n" +"Wizards provided by this module:\n" +"--------------------------------\n" +" * Partner VAT Intra: Enlist the partners with their related VAT and invoiced\n" +" amounts. Prepares an XML file format.\n" +"\n" +" **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Partner VAT Intra\n" +" * Periodical VAT Declaration: Prepares an XML file for Vat Declaration of\n" +" the Main company of the User currently Logged in.\n" +"\n" +" **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Periodical VAT Declaration\n" +" * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for Vat\n" +" Declaration of the Main company of the User currently Logged in Based on\n" +" Fiscal year.\n" +"\n" +" **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Annual Listing Of VAT-Subjected Customers\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_eg +msgid "" +"\n" +"This is the base module to manage the accounting chart for Egypt in Odoo.\n" +"==============================================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ee +msgid "" +"\n" +"This is the base module to manage the accounting chart for Estonia in Odoo.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_gr +msgid "" +"\n" +"This is the base module to manage the accounting chart for Greece.\n" +"==================================================================\n" +"\n" +"Greek accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_gt +msgid "" +"\n" +"This is the base module to manage the accounting chart for Guatemala.\n" +"=====================================================================\n" +"\n" +"Agrega una nomenclatura contable para Guatemala. También icluye impuestos y\n" +"la moneda del Quetzal. -- Adds accounting chart for Guatemala. It also includes\n" +"taxes and the Quetzal currency." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hn +msgid "" +"\n" +"This is the base module to manage the accounting chart for Honduras.\n" +"====================================================================\n" +"\n" +"Agrega una nomenclatura contable para Honduras. También incluye impuestos y la\n" +"moneda Lempira. -- Adds accounting chart for Honduras. It also includes taxes\n" +"and the Lempira currency." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_lu +msgid "" +"\n" +"This is the base module to manage the accounting chart for Luxembourg.\n" +"======================================================================\n" +"\n" +" * the Luxembourg Official Chart of Accounts (law of June 2009 + 2015 chart and Taxes),\n" +" * the Tax Code Chart for Luxembourg\n" +" * the main taxes used in Luxembourg\n" +" * default fiscal position for local, intracom, extracom\n" +"\n" +"Notes:\n" +" * the 2015 chart of taxes is implemented to a large extent,\n" +" see the first sheet of tax.xls for details of coverage\n" +" * to update the chart of tax template, update tax.xls and run tax2csv.py\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_my +msgid "" +"\n" +"This is the base module to manage the accounting chart for Malaysia in Odoo.\n" +"==============================================================================\n" +" " +msgstr "" +"\n" +"本模块是在Odoo中用于管理马来西亚会计图表的基础模块。\n" +"==============================================================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ma +msgid "" +"\n" +"This is the base module to manage the accounting chart for Morocco.\n" +"====================================================================\n" +"\n" +"Ce Module charge le modèle du plan de comptes standard Marocain et permet de\n" +"générer les états comptables aux normes marocaines (Bilan, CPC (comptes de\n" +"produits et charges), balance générale à 6 colonnes, Grand livre cumulatif...).\n" +"L'intégration comptable a été validé avec l'aide du Cabinet d'expertise comptable\n" +"Seddik au cours du troisième trimestre 2010." +msgstr "" +"\n" +"本模块是管理摩洛哥会计图表的基本模块。\n" +"====================================================================\n" +"\n" +"Ce Module charge le modèle du plan de comptes standard Marocain et permet de\n" +"générer les états comptables aux normes marocaines (Bilan, CPC (comptes de\n" +"produits et charges), balance générale à 6 colonnes, Grand livre cumulatif...).\n" +"L'intégration comptable a été validé avec l'aide du Cabinet d'expertise comptable\n" +"Seddik au cours du troisième trimestre 2010." + +#. module: base +#: model:ir.module.module,description:base.module_l10n_tw +msgid "" +"\n" +"This is the base module to manage the accounting chart for Taiwan in Odoo.\n" +"==============================================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_generic_coa +msgid "" +"\n" +"This is the base module to manage the generic accounting chart in Odoo.\n" +"==============================================================================\n" +"\n" +"Install some generic chart of accounts.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_id +msgid "" +"\n" +"This is the latest Indonesian Odoo localisation necessary to run Odoo accounting for SMEs with:\n" +"=================================================================================================\n" +" - generic Indonesian chart of accounts\n" +" - tax structure" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_uk +msgid "" +"\n" +"This is the latest UK Odoo localisation necessary to run Odoo accounting for UK SME's with:\n" +"=================================================================================================\n" +" - a CT600-ready chart of accounts\n" +" - VAT100-ready tax structure\n" +" - InfoLogic UK counties listing\n" +" - a few other adaptations" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_il +msgid "" +"\n" +"This is the latest basic Israelian localisation necessary to run Odoo in Israel:\n" +"================================================================================\n" +"\n" +"This module consists of:\n" +" - Generic Israel Chart of Accounts\n" +" - Taxes and tax report\n" +" - Multiple Fiscal positions\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_za +msgid "" +"\n" +"This is the latest basic South African localisation necessary to run Odoo in ZA:\n" +"================================================================================\n" +" - a generic chart of accounts\n" +" - SARS VAT Ready Structure" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ro +msgid "" +"\n" +"This is the module to manage the Accounting Chart, VAT structure, Fiscal Position and Tax Mapping.\n" +"It also adds the Registration Number for Romania in Odoo.\n" +"================================================================================================================\n" +"\n" +"Romanian accounting chart and localization.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ca +msgid "" +"\n" +"This is the module to manage the Canadian accounting chart in Odoo.\n" +"===========================================================================================\n" +"\n" +"Canadian accounting charts and localizations.\n" +"\n" +"Fiscal positions\n" +"----------------\n" +"\n" +"When considering taxes to be applied, it is the province where the delivery occurs that matters.\n" +"Therefore we decided to implement the most common case in the fiscal positions: delivery is the\n" +"responsibility of the vendor and done at the customer location.\n" +"\n" +"Some examples:\n" +"\n" +"1) You have a customer from another province and you deliver to his location.\n" +"On the customer, set the fiscal position to his province.\n" +"\n" +"2) You have a customer from another province. However this customer comes to your location\n" +"with their truck to pick up products. On the customer, do not set any fiscal position.\n" +"\n" +"3) An international vendor doesn't charge you any tax. Taxes are charged at customs\n" +"by the customs broker. On the vendor, set the fiscal position to International.\n" +"\n" +"4) An international vendor charge you your provincial tax. They are registered with your\n" +"position.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pl +msgid "" +"\n" +"This is the module to manage the accounting chart and taxes for Poland in Odoo.\n" +"==================================================================================\n" +"\n" +"To jest moduł do tworzenia wzorcowego planu kont, podatków, obszarów podatkowych i\n" +"rejestrów podatkowych. Moduł ustawia też konta do kupna i sprzedaży towarów\n" +"zakładając, że wszystkie towary są w obrocie hurtowym.\n" +"\n" +"Niniejszy moduł jest przeznaczony dla odoo 8.0.\n" +"Wewnętrzny numer wersji OpenGLOBE 1.02\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_dz +msgid "" +"\n" +"This is the module to manage the accounting chart for Algeria in Odoo.\n" +"======================================================================\n" +"This module applies to companies based in Algeria.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr +msgid "" +"\n" +"This is the module to manage the accounting chart for France in Odoo.\n" +"========================================================================\n" +"\n" +"This module applies to companies based in France mainland. It doesn't apply to\n" +"companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, Réunion, Mayotte).\n" +"\n" +"This localisation module creates the VAT taxes of type 'tax included' for purchases\n" +"(it is notably required when you use the module 'hr_expense'). Beware that these\n" +"'tax included' VAT taxes are not managed by the fiscal positions provided by this\n" +"module (because it is complex to manage both 'tax excluded' and 'tax included'\n" +"scenarios in fiscal positions).\n" +"\n" +"This localisation module doesn't properly handle the scenario when a France-mainland\n" +"company sells services to a company based in the DOMs. We could manage it in the\n" +"fiscal positions, but it would require to differentiate between 'product' VAT taxes\n" +"and 'service' VAT taxes. We consider that it is too 'heavy' to have this by default\n" +"in l10n_fr; companies that sell services to DOM-based companies should update the\n" +"configuration of their taxes and fiscal positions manually.\n" +"\n" +"**Credits:** Sistheo, Zeekom, CrysaLEAD, Akretion and Camptocamp.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mn +msgid "" +"\n" +"This is the module to manage the accounting chart for Mongolia.\n" +"===============================================================\n" +"\n" +" * the Mongolia Official Chart of Accounts,\n" +" * the Tax Code Chart for Mongolia\n" +" * the main taxes used in Mongolia\n" +"\n" +"Financial requirement contributor: Baskhuu Lodoikhuu. BumanIT LLC\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_vn +msgid "" +"\n" +"This is the module to manage the accounting chart for Vietnam in Odoo.\n" +"=========================================================================\n" +"\n" +"This module applies to companies based in Vietnamese Accounting Standard (VAS)\n" +"with Chart of account under Circular No. 200/2014/TT-BTC\n" +"\n" +"**Credits:**\n" +" - General Solutions.\n" +" - Trobz\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_hr_restaurant +msgid "" +"\n" +"This module adapts the behavior of the PoS when the pos_hr and pos_restaurant are installed.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_twitter +msgid "" +"\n" +"This module adds a Twitter scroller building block to the website builder, so that you can display Twitter feeds on any page of your website.\n" +" " +msgstr "" +"\n" +"此构建块向网站构建者增加了一个 Twitter 滚动器构建构建块,以便您可以在网站的任何网页上显示 Twitter 源.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_comparison +msgid "" +"\n" +"This module adds a comparison tool to your eCommerce shop, so that your shoppers can easily compare products based on their attributes. It will considerably accelerate their purchasing decision.\n" +"\n" +"To configure product attributes, activate *Attributes & Variants* in the Website settings. This will add a dedicated section in the product form. In the configuration, this module adds a category field to product attributes in order to structure the shopper's comparison table.\n" +"\n" +"Finally, the module comes with an option to display an attribute summary table in product web pages (available in Customize menu).\n" +" " +msgstr "" +"\n" +"此模块为您的电子商务商店增加了一个比较工具,以便您的购物者可以根据其属性轻松比较产品. 它将大大加快他们的采购决策.\n" +"\n" +"要设置产品属性,请在网站设置中启用*属性和变量*. 这将在产品表单中增加专用部分. 在设置中,此模块将类别字段增加到产品属性,以便构建购物者的比较表.\n" +"\n" +"最后,该模块附带一个选项,用于在产品网页中显示属性摘要表(可在「自定」菜单中找到).\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_dashboard +msgid "" +"\n" +"This module adds a new dashboard view in the Website application.\n" +"This new type of view contains some basic statistics, a graph, and a pivot subview that allow you to get a quick overview of your online sales.\n" +"It also provides new tools to analyse your data.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_mass_mailing_sms +msgid "" +"\n" +"This module adds a new template to the Newsletter Block to allow \n" +"your visitors to subscribe with their phone number.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_renting_crm +msgid "" +"\n" +"This module adds a shortcut on one or several opportunity cases in the CRM.\n" +"===========================================================================\n" +"\n" +"This shortcut allows you to generate a rental order based on the selected case.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_crm +msgid "" +"\n" +"This module adds a shortcut on one or several opportunity cases in the CRM.\n" +"===========================================================================\n" +"\n" +"This shortcut allows you to generate a sales order based on the selected case.\n" +"If different cases are open (a list), it generates one sales order by case.\n" +"The case is then closed and linked to the generated sales order.\n" +"\n" +"We suggest you to install this module, if you installed both the sale and the crm\n" +"modules.\n" +" " +msgstr "" +"\n" +" 此模块会在 CRM 的一个或多个商机案例中增加快捷方式.\n" +"===========================================================================\n" +"\n" +" 此模块允许您创建根据所选案例的销售订单.\n" +" 如果打开了不同的案例(列表),其会根据案例创建销售订单.\n" +" 然后,关闭此案例,并将其连结至创建的销售订单.\n" +"\n" +" 如果您已安装了crm\n" +" 模块,我们推荐您安装此模块. " + +#. module: base +#: model:ir.module.module,description:base.module_hr_appraisal_survey +msgid "" +"\n" +"This module adds an integration with Survey to ask feedbacks to any employee, based on a survey to fill.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_sale_product_configurator +msgid "" +"\n" +"This module adds features depending on both modules.\n" +msgstr "" +"\n" +"此模块根据两个模块增加功能.\n" + +#. module: base +#: model:ir.module.module,description:base.module_account_edi_proxy_client +msgid "" +"\n" +"This module adds generic features to register an Odoo DB on the proxy responsible for receiving data (via requests from web-services).\n" +"- An edi_proxy_user has a unique identification on a specific format (for example, the vat for Peppol) which\n" +"allows to identify him when receiving a document addressed to him. It is linked to a specific company on a specific\n" +"Odoo database.\n" +"- Encryption features allows to decrypt all the user's data when receiving it from the proxy.\n" +"- Authentication offers an additionnal level of security to avoid impersonification, in case someone gains to the user's database.\n" +" " +msgstr "" +"\n" +"该模块增加了一般功能以在负责接收数据的代理上注册 Odoo DB(通过来自 Web 服务的请求).\n" +"- edi_proxy_user 具有特定格式的唯一标识(例如,Peppol 的增值税),\n" +"允许在收到发给他的单据时标识他. 它连结到特定公司上的特定\n" +"Odoo 数据库.\n" +"- 加密功能允许在从代理接收用户数据时解密所有用户数据.\n" +"- 身份验证提供了额外的安全级别,以避免在有人获取用户数据库的情况下进行假冒.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_portal +msgid "" +"\n" +"This module adds required base code for a fully integrated customer portal.\n" +"It contains the base controller class and base templates. Business addons\n" +"will add their specific templates and controllers to extend the customer\n" +"portal.\n" +"\n" +"This module contains most code coming from odoo v10 website_portal. Purpose\n" +"of this module is to allow the display of a customer portal without having\n" +"a dependency towards website editing and customization capabilities." +msgstr "" +"\n" +"此模块为完全集成的客户网站登录增加所需的基本代码.\n" +"它包含基本控制器类和基本模板. 业务外挂将增加其特定模板和控制器以扩展客户网站登录.\n" +"\n" +"该模块包含来自 odoo v10 website_portal 的大部分代码. 该模块的目的是允许在不依赖网站编辑和自定功能的情况下显示客户网站登录." + +#. module: base +#: model:ir.module.module,description:base.module_event_barcode +msgid "" +"\n" +"This module adds support for barcodes scanning to the Event management system.\n" +"A barcode is generated for each attendee and printed on the badge. When scanned,\n" +"the registration is confirmed.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_margin +msgid "" +"\n" +"This module adds the 'Margin' on sales order.\n" +"=============================================\n" +"\n" +"This gives the profitability by calculating the difference between the Unit\n" +"Price and Cost Price.\n" +" " +msgstr "" +"\n" +"本模块为销售订单增加「利润」功能.\n" +"=============================================\n" +"\n" +"本模块根据单价和成本价计算出利润.\n" +"\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_stock_picking_batch +msgid "" +"\n" +"This module adds the batch transfer option in warehouse management\n" +"==================================================================\n" +" " +msgstr "" +"\n" +"此模块在仓库管理中增加批量调拨选项\n" +"==================================================================\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_hr_attendance +msgid "" +"\n" +"This module aims to manage employee's attendances.\n" +"==================================================\n" +"\n" +"Keeps account of the attendances of the employees on the basis of the\n" +"actions(Check in/Check out) performed by them.\n" +" " +msgstr "" +"\n" +" 此模块的目的是管理员工与会者.\n" +"==================================================\n" +"\n" +" 根据\n" +" 其执行的动作(入住/退房),保留员工与会者的帐户. " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_workorder_hr +msgid "" +"\n" +"This module allows Employees (and not users) to log in to a workorder using a barcode, a PIN number or both.\n" +"The actual till still requires one user but an unlimited number of employees can log on to that till and complete manufacturing tasks.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_hr +msgid "" +"\n" +"This module allows Employees (and not users) to log in to the Point of Sale application using a barcode, a PIN number or both.\n" +"The actual till still requires one user but an unlimited number of employees can log on to that till and process sales.\n" +" " +msgstr "" +"\n" +"此模块允许员工(而不是用户)使用条码、PIN 号或两者登录PoS营业点应用程序.\n" +"实际到仍需要一个用户,但无限数量的员工可以登录到该直到和处理销售.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_rating +msgid "" +"\n" +"This module allows a customer to give rating.\n" +msgstr "" +"\n" +"本模块允许客户进行点评\n" + +#. module: base +#: model:ir.module.module,description:base.module_website_delivery_ups +msgid "" +"\n" +"This module allows ecommerce users to enter their UPS account number and delivery fees will be charged on that account number.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_es_real_estates +msgid "" +"\n" +"This module allows the user to add real estate related data to the Spanish localization and generates a mod 347 report.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_partner_commission +msgid "" +"\n" +"This module allows to configure commissions for resellers.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_base_automation +msgid "" +"\n" +"This module allows to implement action rules for any object.\n" +"============================================================\n" +"\n" +"Use automated actions to automatically trigger actions for various screens.\n" +"\n" +"**Example:** A lead created by a specific user may be automatically set to a specific\n" +"Sales Team, or an opportunity which still has status pending after 14 days might\n" +"trigger an automatic reminder email.\n" +" " +msgstr "" +"\n" +"本模块允许实施任何对象的执行规则.\n" +"============================================================\n" +"\n" +"在不同的界面里使用嵌入措施自动触发执行.\n" +"\n" +"**比如:** 特定用户创建一条线索可能会自动发给特定销售团队,\n" +" 或者一条商机如果呆滞了14天后就会自动触发一封提醒邮件.\n" +"\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_onboarding +msgid "" +"\n" +"This module allows to manage onboardings and their progress\n" +"================================================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_us_check_printing +msgid "" +"\n" +"This module allows to print your payments on pre-printed check paper.\n" +"You can configure the output (layout, stubs information, etc.) in company settings, and manage the\n" +"checks numbering (if you use pre-printed checks without numbers) in journal settings.\n" +"\n" +"Supported formats\n" +"-----------------\n" +"This module supports the three most common check formats and will work out of the box with the linked checks from checkdepot.net.\n" +"\n" +"View all checks at: https://www.checkdepot.net/checks/laser/Odoo.htm\n" +"\n" +"You can choose between:\n" +"\n" +"- Check on top: Quicken / QuickBooks standard (https://www.checkdepot.net/checks/checkorder/laser_topcheck.htm)\n" +"- Check on middle: Peachtree standard (https://www.checkdepot.net/checks/checkorder/laser_middlecheck.htm)\n" +"- Check on bottom: ADP standard (https://www.checkdepot.net/checks/checkorder/laser_bottomcheck.htm)\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ca_check_printing +msgid "" +"\n" +"This module allows to print your payments on pre-printed checks.\n" +"You can configure the output (layout, stubs, paper format, etc.) in company settings, and manage the\n" +"checks numbering (if you use pre-printed checks without numbers) in journal settings.\n" +"As per Canadian Payment Association (https://www.payments.ca/sites/default/files/standard_006_complete_0.pdf)\n" +"\n" +"Supported formats\n" +"-----------------\n" +"- Check on top : Quicken / QuickBooks standard\n" +"- Check on middle: Peachtree standard\n" +"- Check on bottom: ADP standard\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_crm_partner_assign +msgid "" +"\n" +"This module allows to publish your resellers/partners on your website and to forward incoming leads/opportunities to them.\n" +"\n" +"\n" +"**Publish a partner**\n" +"\n" +"To publish a partner, set a *Level* in their contact form (in the Partner Assignment section) and click the *Publish* button.\n" +"\n" +"**Forward leads**\n" +"\n" +"Forwarding leads can be done for one or several leads at a time. The action is available in the *Assigned Partner* section of the lead/opportunity form view and in the *Action* menu of the list view.\n" +"\n" +"The automatic assignment is figured from the weight of partner levels and the geolocalization. Partners get leads that are located around them.\n" +"\n" +" " +msgstr "" +"\n" +"此模块允许在您的网站上发布您的经销商/合作伙伴并将传入的线索/商机转发给他们. " + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subonctracting_landed_costs +msgid "" +"\n" +"This module allows users to more easily identify subcontracting orders when applying landed costs,\n" +"by also displaying the associated picking reference in the search view.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_landed_costs +msgid "" +"\n" +"This module allows you to easily add extra costs on manufacturing order \n" +"and decide the split of these costs among their stock moves in order to \n" +"take them into account in your stock valuation.\n" +" " +msgstr "" +"\n" +"该模块允许您轻松地在制造订单上增加额外成本,并决定这些成本在其库存移动中的配置,以便在您的库存评估中考虑它们. " + +#. module: base +#: model:ir.module.module,description:base.module_membership +msgid "" +"\n" +"This module allows you to manage all operations for managing memberships.\n" +"=========================================================================\n" +"\n" +"It supports different kind of members:\n" +"--------------------------------------\n" +" * Free member\n" +" * Associated member (e.g.: a group subscribes to a membership for all subsidiaries)\n" +" * Paid members\n" +" * Special member prices\n" +"\n" +"It is integrated with sales and accounting to allow you to automatically\n" +"invoice and send propositions for membership renewal.\n" +" " +msgstr "" +"\n" +"此模块允许您进行所有会员管理的操作.\n" +"===============================================\n" +"\n" +"它自持几种不同的会员:\n" +"--------------------------\n" +" *免费会员\n" +" *关联会员(比如:一个组为所有组员注册为会员)\n" +" *付费会员\n" +" *特别会员价格\n" +"此模块与销售和会计模块集成,允许您自动发出收据和续费通知. " + +#. module: base +#: model:ir.module.module,description:base.module_sale_subscription +msgid "" +"\n" +"This module allows you to manage subscriptions.\n" +"\n" +"Features:\n" +" - Create & edit subscriptions\n" +" - Modify subscriptions with sales orders\n" +" - Generate invoice automatically at fixed intervals\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_requisition +msgid "" +"\n" +"This module allows you to manage your Purchase Agreements.\n" +"===========================================================\n" +"\n" +"Manage calls for tenders and blanket orders. Calls for tenders are used to get\n" +"competing offers from different vendors and select the best ones. Blanket orders\n" +"are agreements you have with vendors to benefit from a predetermined pricing.\n" +msgstr "" +"\n" +" 此模块允许您管理采购协议.\n" +"===========================================================\n" +"\n" +" 管理投标以及一揽子订单. 投标用于从不同的供应商中获取\n" +" 竞争报价,并选择最合适的供应商. 一揽子订单\n" +"是您与供应商达成的协议,可以从预定的价格中受益.\n" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_renting_comparison +msgid "" +"\n" +"This module allows you to sell rental products in your eCommerce Comparison page.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_renting_wishlist +msgid "" +"\n" +"This module allows you to sell rental products in your eCommerce Wishlist.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_renting +#: model:ir.module.module,description:base.module_website_sale_stock_renting +msgid "" +"\n" +"This module allows you to sell rental products in your eCommerce with\n" +"appropriate views and selling choices.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_renting_product_configurator +msgid "" +"\n" +"This module allows you to sell rental products with optional products in your eCommerce with\n" +"appropriate views and selling choices.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_subscription +msgid "" +"\n" +"This module allows you to sell subscription products in your eCommerce with\n" +"appropriate views and selling choices.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_hourly_cost +msgid "" +"\n" +"This module assigns an hourly wage to employees to be used by other modules.\n" +"============================================================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_mass_mailing +msgid "" +"\n" +"This module brings a new building block with a mailing list widget to drop on any page of your website.\n" +"On a simple click, your visitors can subscribe to mailing lists managed in the Email Marketing app.\n" +" " +msgstr "" +"\n" +"该构建块带来了一个带有邮件列表小功能的新构建构建块,可以放在您网站的任何网页上.\n" +"只需点选一下,您的访问者就可以订阅在Email Marketing应用中管理的邮件列表.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de_pos_cert +msgid "" +"\n" +"This module brings the technical requirement for the new Germany regulation with the Technical Security System by using a cloud-based solution with Fiskaly.\n" +"\n" +"Install this if you are using the Point of Sale app in Germany. \n" +"\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_de_pos_res_cert +msgid "" +"\n" +"This module brings the technical requirements for the new Germany regulation regarding the restaurant.\n" +"Install this if you are using the Point of Sale app with restaurant in Germany.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale +msgid "" +"\n" +"This module contains all the common features of Sales Management and eCommerce.\n" +" " +msgstr "" +"\n" +"该模块包含销售管理和电子商务的所有常见功能. " + +#. module: base +#: model:ir.module.module,description:base.module_pos_sale_loyalty +msgid "" +"\n" +"This module correct some behaviors when both module are installed.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_stock_barcode +msgid "" +"\n" +"This module enables the barcode scanning feature for the warehouse management system.\n" +" " +msgstr "" +"\n" +"此模块支持仓库管理系统的条码扫描功能.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sms +msgid "" +"\n" +"This module gives a framework for SMS text messaging\n" +"----------------------------------------------------\n" +"\n" +"The service is provided by the In App Purchase Odoo platform.\n" +msgstr "" +"\n" +"该模块提供了用于短信息发送的框架\n" +"----------------------------------------------------\n" +"\n" +"这一服务是由应用内购买 Odoo 平台提供的.\n" + +#. module: base +#: model:ir.module.module,description:base.module_contacts +msgid "" +"\n" +"This module gives you a quick view of your contacts directory, accessible from your home page.\n" +"You can track your vendors, customers and other contacts.\n" +msgstr "" +"\n" +"该模块可以让您通过访问主页快速视图联系人目录.\n" +"您可以跟踪您的供应商、客户和其它联系人.\n" + +#. module: base +#: model:ir.module.module,description:base.module_base_setup +msgid "" +"\n" +"This module helps to configure the system at the installation of a new database.\n" +"================================================================================\n" +"\n" +"Shows you a list of applications features to install from.\n" +"\n" +" " +msgstr "" +"\n" +"此模块用于辅助您在第一次安装新数据库时设置系统.\n" +"================================================================================\n" +"\n" +"显示给您一个安装的应用程序特性列表.\n" +"\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_timer +msgid "" +"\n" +"This module implements a timer.\n" +"==========================================\n" +"\n" +"It adds a timer to a view for time recording purpose\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_hr_timesheet +msgid "" +"\n" +"This module implements a timesheet system.\n" +"==========================================\n" +"\n" +"Each employee can encode and track their time spent on the different projects.\n" +"\n" +"Lots of reporting on time and employee tracking are provided.\n" +"\n" +"It is completely integrated with the cost accounting module. It allows you to set\n" +"up a management by affair.\n" +" " +msgstr "" +"\n" +"该模块实施工时表系统.\n" +"==========================================\n" +"\n" +"每位员工可以对他们在不同专案上花费的时间进行编码和跟踪.\n" +"\n" +"该模块提供了大量关于时间和员工跟踪的报告.\n" +"\n" +"它已与成本核算模块完全集成. 它允许您通过事务设置管理. " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_syscohada +msgid "" +"\n" +"This module implements the accounting chart for OHADA area.\n" +"===========================================================\n" +"\n" +"It allows any company or association to manage its financial accounting.\n" +"\n" +"Countries that use OHADA are the following:\n" +"-------------------------------------------\n" +" Benin, Burkina Faso, Cameroon, Central African Republic, Comoros, Congo,\n" +"\n" +" Ivory Coast, Gabon, Guinea, Guinea Bissau, Equatorial Guinea, Mali, Niger,\n" +"\n" +" Democratic Republic of the Congo, Senegal, Chad, Togo.\n" +" " +msgstr "" +"\n" +"本模块用于实现OHADA区域的会计图表。\n" +"===========================================================\n" +"\n" +"允许任何公司或协会管理其财务会计事务。\n" +"\n" +"使用OHADA的国家如下:\n" +"-------------------------------------------\n" +" 贝宁、布基纳法索、喀麦隆、中非共和国、科摩罗、刚果、\n" +"\n" +" 科特迪瓦、加蓬、几内亚、几内亚比绍、赤道几内亚、马里、尼日尔、\n" +"\n" +" 刚果民主共和国、塞内加尔、乍得、多哥。\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_base_iban +msgid "" +"\n" +"This module installs the base for IBAN (International Bank Account Number) bank accounts and checks for it's validity.\n" +"======================================================================================================================\n" +"\n" +"The ability to extract the correctly represented local accounts from IBAN accounts\n" +"with a single statement.\n" +" " +msgstr "" +"\n" +"该模块安装了 IBAN(国际银行帐号)银行帐户库,并检查其有效性.\n" +"======================================================================================================================\n" +"\n" +"具有使用单一对帐单从 IBAN 帐户中捕获正确表示的本地帐户的功能. " + +#. module: base +#: model:ir.module.module,description:base.module_test_crm_full +msgid "" +"\n" +"This module is intended to test the main crm flows of Odoo, both frontend and\n" +"backend. It notably includes IAP bridges modules to test their impact. " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_association +msgid "" +"\n" +"This module is to configure modules related to an association.\n" +"==============================================================\n" +"\n" +"It installs the profile for associations to manage events, registrations, memberships, \n" +"membership products (schemes).\n" +" " +msgstr "" +"\n" +"这是一个与社团协会有关的设置模块.\n" +"============================================================== \n" +"\n" +"安装社团协会的资料,用于管理活动,报名信息,会员信息,\n" +"隶属产品(方案)等.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_delivery_stock_picking_batch +msgid "" +"\n" +"This module makes the link between the batch pickings and carrier applications.\n" +"\n" +"Allows to prepare batches depending on their carrier\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_approvals +msgid "" +"\n" +"This module manages approvals workflow\n" +"======================================\n" +"\n" +"This module manages approval requests like business trips,\n" +"out of office, overtime, borrow items, general approvals,\n" +"procurements, contract approval, etc.\n" +"\n" +"According to the approval type configuration, a request\n" +"creates next activities for the related approvers.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_check_printing +msgid "" +"\n" +"This module offers the basic functionalities to make payments by printing checks.\n" +"It must be used as a dependency for modules that provide country-specific check templates.\n" +"The check settings are located in the accounting journals configuration page.\n" +" " +msgstr "" +"\n" +"该模块提供了通过打印支票进行支付的基本功能.\n" +"它必须用作提供特定国家的支票模板的模块的依赖项.\n" +"支票设置位于会计日记帐设置页面. " + +#. module: base +#: model:ir.module.module,description:base.module_website_enterprise +msgid "" +"\n" +"This module overrides community website features and introduces enterprise look and feel.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_timesheet_grid_holidays +msgid "" +"\n" +"This module prevents taking time offs into account when computing employee overtime.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_mrp +msgid "" +"\n" +"This module provides facility to the user to install mrp and purchase modules at a time.\n" +"========================================================================================\n" +"\n" +"It is basically used when we want to keep track of production orders generated\n" +"from purchase order.\n" +" " +msgstr "" +"\n" +"此模块为用户提供了同时安装 mrp 和采购模块的功能.\n" +"========================================================================================\n" +"\n" +"通常在我们想要跟踪从采购订单中创建的\n" +"生产订单时使用. " + +#. module: base +#: model:ir.module.module,description:base.module_sale_mrp +msgid "" +"\n" +"This module provides facility to the user to install mrp and sales modulesat a time.\n" +"====================================================================================\n" +"\n" +"It is basically used when we want to keep track of production orders generated\n" +"from sales order. It adds sales name and sales Reference on production order.\n" +" " +msgstr "" +"\n" +"该模块为用户同时提供安装MRP和销售模块的设施.\n" +"==================================================================================== \n" +"\n" +"用于跟踪由销售订单转化为生产单的过程.\n" +"它在产品订单中增加了销售名称和销售参数.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_iot +msgid "" +"\n" +"This module provides management of your IoT Boxes inside Odoo.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_iap +msgid "" +"\n" +"This module provides standard tools (account model, context manager and helpers)\n" +"to support In-App purchases inside Odoo. " +msgstr "" +"\n" +"该模块提供标准工具 (帐户模型、上下文管理器和助手)\n" +"支持 Odoo 内的程序内购买. " + +#. module: base +#: model:ir.module.module,description:base.module_quality_iot +msgid "" +"\n" +"This module provides the link between quality steps and IoT devices. \n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_test_website_slides_full +msgid "" +"\n" +"This module will test the main certification flow of Odoo.\n" +"It will install the e-learning, survey and e-commerce apps and make a complete\n" +"certification flow including purchase, certification, failure and success.\n" +msgstr "" +"\n" +"本应用将测试 Odoo 的主要认证流程.\n" +"它将安装数位学习、调查和电子商务应用程序,并完成\n" +"认证流程,包括采购、验收、失败和成功.\n" + +#. module: base +#: model:ir.module.module,description:base.module_test_event_full +msgid "" +"\n" +"This module will test the main event flows of Odoo, both frontend and backend.\n" +"It installs sale capabilities, front-end flow, eCommerce, questions and\n" +"automatic lead generation, full Online support, ...\n" +msgstr "" +"\n" +"该模块将测试 Odoo 的主要事件流,包括前端和后端.\n" +"它安装了销售功能、前端流程、电子商务、问题和\n" +"自动潜在客户创建,完整的线上支持,...\n" + +#. module: base +#: model:ir.module.module,description:base.module_test_main_flows +msgid "" +"\n" +"This module will test the main workflow of Odoo.\n" +"It will install some main apps and will try to execute the most important actions.\n" +msgstr "" +"\n" +"该应用会测试 Odoo 的主要工作流.\n" +"它会安装一些主要的应用,并尝试执行最重要的动作.\n" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ke +msgid "" +"\n" +"This provides a base chart of accounts and taxes template for use in Odoo.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_kanban_gauge +msgid "" +"\n" +"This widget allows to display gauges using d3 library.\n" +msgstr "" +"\n" +"该部件允许使用 d3 库显示仪表.\n" + +#. module: base +#: model:ir.module.module,description:base.module_documents_hr_holidays +msgid "" +"\n" +"Time off documents will be automatically integrated to the Document app.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_product_expiry +msgid "" +"\n" +"Track different dates on products and production lots.\n" +"======================================================\n" +"\n" +"Following dates can be tracked:\n" +"-------------------------------\n" +" - end of life\n" +" - best before date\n" +" - removal date\n" +" - alert date\n" +"\n" +"Also implements the removal strategy First Expiry First Out (FEFO) widely used, for example, in food industries.\n" +msgstr "" +"\n" +"跟踪产品的有效期.\n" +"======================================================\n" +"\n" +"可以跟踪如下几种有效期:\n" +"-------------------------------\n" +" - 报废日期\n" +" - 最佳使用日期\n" +" - 删除日期\n" +" - 提醒日期\n" +"\n" +" 可以实现FEFO(根据保质期优先出库)策略, 改策略广泛用于食品工业等行业.\n" + +#. module: base +#: model:ir.module.module,description:base.module_transifex +msgid "" +"\n" +"Transifex integration\n" +"=====================\n" +"This module will add a link to the Transifex project in the translation view.\n" +"The purpose of this module is to speed up translations of the main modules.\n" +"\n" +"To work, Odoo uses Transifex configuration files `.tx/config` to detect the\n" +"project source. Custom modules will not be translated (as not published on\n" +"the main Transifex project).\n" +"\n" +"The language the user tries to translate must be activated on the Transifex\n" +"project.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_auth_totp +msgid "" +"\n" +"Two-Factor Authentication (TOTP)\n" +"================================\n" +"Allows users to configure two-factor authentication on their user account\n" +"for extra security, using time-based one-time passwords (TOTP).\n" +"\n" +"Once enabled, the user will need to enter a 6-digit code as provided\n" +"by their authenticator app before being granted access to the system.\n" +"All popular authenticator apps are supported.\n" +"\n" +"Note: logically, two-factor prevents password-based RPC access for users\n" +"where it is enabled. In order to be able to execute RPC scripts, the user\n" +"can setup API keys to replace their main password.\n" +" " +msgstr "" +"\n" +"两阶段身份验证 (TOTP)\n" +"================================\n" +"允许用户使用基于时间的一次性密码 (TOTP) 在其用户帐户上设置双重身份验证以提高安全性.\n" +"\n" +"启用后,用户将需要输入其身份验证器应用程序提供的 6 位数代码,然后才能被授予访问系统的权限.\n" +"支持所有流行的身份验证器应用程序.\n" +"\n" +"注意: 从逻辑上讲,两个阶段会阻止用户进行基于密码的 RPC 访问\n" +"它被启用的地方. 为了能够执行 RPC 指令集,用户可以设置 API 密钥来替换他们的主密码. " + +#. module: base +#: model:ir.module.module,description:base.module_l10n_tr +msgid "" +"\n" +"Türkiye için Tek düzen hesap planı şablonu Odoo Modülü.\n" +"==========================================================\n" +"\n" +"Bu modül kurulduktan sonra, Muhasebe yapılandırma sihirbazı çalışır\n" +" * Sihirbaz sizden hesap planı şablonu, planın kurulacağı şirket, banka hesap\n" +" bilgileriniz, ilgili para birimi gibi bilgiler isteyecek.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ua +msgid "" +"\n" +"Ukraine - Chart of accounts.\n" +"============================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ae_pos +msgid "" +"\n" +"United Arab Emirates POS Localization\n" +"=======================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ae_hr_payroll +msgid "" +"\n" +"United Arab Emirates Payroll and End of Service rules.\n" +"=======================================================\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ae +msgid "" +"\n" +"United Arab Emirates accounting chart and localization.\n" +"=======================================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_us +msgid "" +"\n" +"United States - Chart of accounts.\n" +"==================================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_budget +msgid "" +"\n" +"Use budgets to compare actual with expected revenues and costs\n" +"--------------------------------------------------------------\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_quality_control_iot +msgid "" +"\n" +"Use devices connected to an IoT Box to control the quality of your products.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_pos_restaurant_iot +msgid "" +"\n" +"Use receipt printers connected to an IoT Box to print orders in the kitchen or at the bar.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_event_booth_sale +msgid "" +"\n" +"Use the e-commerce to sell your event booths.\n" +" " +msgstr "" +"\n" +"使用电子商务销售您的活动展位.\n" +" " + +#. module: base +#: model:ir.module.module,description:base.module_sales_team +msgid "" +"\n" +"Using this application you can manage Sales Teams with CRM and/or Sales\n" +"=======================================================================\n" +" " +msgstr "" +"\n" +"使用此应用程序,您可以使用 CRM 和/或销售管理销售团队\n" +"================================================== ====================== " + +#. module: base +#: model:ir.module.module,description:base.module_base_vat +msgid "" +"\n" +"VAT validation for Partner's VAT numbers.\n" +"=========================================\n" +"\n" +"After installing this module, values entered in the VAT field of Partners will\n" +"be validated for all supported countries. The country is inferred from the\n" +"2-letter country code that prefixes the VAT number, e.g. ``BE0477472701``\n" +"will be validated using the Belgian rules.\n" +"\n" +"There are two different levels of VAT number validation:\n" +"--------------------------------------------------------\n" +" * By default, a simple off-line check is performed using the known validation\n" +" rules for the country, usually a simple check digit. This is quick and \n" +" always available, but allows numbers that are perhaps not truly allocated,\n" +" or not valid anymore.\n" +"\n" +" * When the \"VAT VIES Check\" option is enabled (in the configuration of the user's\n" +" Company), VAT numbers will be instead submitted to the online EU VIES\n" +" database, which will truly verify that the number is valid and currently\n" +" allocated to a EU company. This is a little bit slower than the simple\n" +" off-line check, requires an Internet connection, and may not be available\n" +" all the time. If the service is not available or does not support the\n" +" requested country (e.g. for non-EU countries), a simple check will be performed\n" +" instead.\n" +"\n" +"Supported countries currently include EU countries, and a few non-EU countries\n" +"such as Chile, Colombia, Mexico, Norway or Russia. For unsupported countries,\n" +"only the country code will be validated.\n" +" " +msgstr "" +"\n" +"合作伙伴的增值税,增值税的验证号码.\n" +"=========================================\n" +"\n" +" 安装此模块以后,合作伙伴增值税范畴内输入的值将被验证,前提该国家在模块支持的范围内. 这一国家可以从增值税前缀的 2 个字母的国家代码推测出来,比如「BE0477472701」代表比利时须遵守当地的法律.\n" +"\n" +"有两种不同的增值税号码验证等级:\n" +"--------------------------------------------------------\n" +" * 默认情况下,使用该国家的一般验证规则进行一个简单的脱机检查,通常是一个简单的验证数字. 这通常是简便而有效的,但这些允许的验证数字,也许并不是真正的设置,或者不再有效.\n" +" \n" +" * 当「增值税号码的检查」选项启用(在用户的公司设置),增值税号码将替换并上线提交到欧盟国家数据库,这将真正验证号码是有效的和当前配置给欧盟的公司. 这比简单脱机检查慢一点,需要网络连接,并且也不是一直有效的. 如果服务不可用或不支持请求的国家(例如非欧盟国家),一个简单的验证将替换执行.\n" +"\n" +" 当前支持的国家包括欧盟国家,以及一些非欧盟国家,如智利,哥伦比亚,墨西哥,挪威和俄罗斯. 不支持的国家,只有国家代码将被验证. " + +#. module: base +#: model:ir.module.module,description:base.module_industry_fsm_stock +msgid "" +"\n" +"Validate stock moves for Field Service\n" +"======================================\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_fleet +msgid "" +"\n" +"Vehicle, leasing, insurances, cost\n" +"==================================\n" +"With this module, Odoo helps you managing all your vehicles, the\n" +"contracts associated to those vehicle as well as services, costs\n" +"and many other features necessary to the management of your fleet\n" +"of vehicle(s)\n" +"\n" +"Main Features\n" +"-------------\n" +"* Add vehicles to your fleet\n" +"* Manage contracts for vehicles\n" +"* Reminder when a contract reach its expiration date\n" +"* Add services, odometer values for all vehicles\n" +"* Show all costs associated to a vehicle or to a type of service\n" +"* Analysis graph for costs\n" +msgstr "" +"\n" +"车辆、租赁、保险、成本\n" +"==================================\n" +"通过此模块,Odoo 可帮助您管理所有车辆、与这些车辆相关的合约以及管理车队所需的服务、成本和许多其它功能\n" +"\n" +"主要特点\n" +"-------------\n" +"* 将车辆增加到您的车队\n" +"* 管理车辆合约\n" +"* 合约到期时提醒\n" +"* 为所有车辆增加服务、里程表值\n" +"* 显示与车辆或服务类型相关的所有成本\n" +"* 成本分析图\n" + +#. module: base +#: model:ir.module.module,description:base.module_purchase_price_diff +msgid "" +"\n" +"WMS Accounting module\n" +"======================\n" +"This module adds the price difference account. Used in standard perpetual valuation.\n" +" " +msgstr "" +"\n" +"WMS会计模块\n" +"======================\n" +"本模块添加价差账户,用于标准永久估价。" + +#. module: base +#: model:ir.module.module,description:base.module_stock_account +msgid "" +"\n" +"WMS Accounting module\n" +"======================\n" +"This module makes the link between the 'stock' and 'account' modules and allows you to create accounting entries to value your stock movements\n" +"\n" +"Key Features\n" +"------------\n" +"* Stock Valuation (periodical or automatic)\n" +"* Invoice from Picking\n" +"\n" +"Dashboard / Reports for Warehouse Management includes:\n" +"------------------------------------------------------\n" +"* Stock Inventory Value at given date (support dates in the past)\n" +" " +msgstr "" +"\n" +"WMS会计模块\n" +"====================== \n" +"这个模块是「库存」和「会计」模块之间的连接,允许您创建会计分录来对库存运动进行计价\n" +"\n" +"关键特征\n" +"------------ \n" +"*库存计价(定期或自动)\n" +"*从拣货开立结算单\n" +"\n" +"仓库管理仪表板/报告包括:\n" +"------------------------------------------------------ \n" +"*对给定的日期(在过去的日期)的库存计价 " + +#. module: base +#: model:ir.module.module,description:base.module_website_helpdesk_forum +msgid "" +"\n" +"Website Forum integration for the helpdesk module\n" +"=================================================\n" +"\n" +" Allow your teams to have related forums to answer customer questions.\n" +" Transform tickets into questions on the forum with a single click.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_helpdesk_livechat +msgid "" +"\n" +"Website IM Livechat integration for the helpdesk module\n" +"=======================================================\n" +"\n" +"Features:\n" +"\n" +" - Have a team-related livechat channel to answer your customer's questions.\n" +" - Create new tickets with ease using commands in the channel.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_helpdesk_slides +msgid "" +"\n" +"Website Slides integration for the helpdesk module\n" +"==================================================\n" +"\n" +" Add slide presentations to your team so customers seeking help can see them those before submitting new tickets.\n" +"\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_online_synchronization +msgid "" +"\n" +"With this module, users will be able to link bank journals to their\n" +"online bank accounts (for supported banking institutions), and configure\n" +"a periodic and automatic synchronization of their bank statements.\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_it_edi_withholding +msgid "" +"\n" +"Withholding and Pension Fund handling for the E-invoice implementation for Italy.\n" +"\n" +" The Withholding tax and the Pension Fund tax are computed like every other tax\n" +" with the ordering by sequence, so please be careful with the order of the taxes\n" +" in your tax configuration.\n" +"\n" +" Please also update the Italian Accounting module (l10n_it) when you install this module.\n" +" " +msgstr "" +"\n" +"预扣税和养老金处理,用于实现意大利电子发票。\n" +"\n" +" 预扣税和养老基金税的计算方式与其他税费相同,\n" +" 均按序号排序,因此,请注意税费配置中的\n" +" 税费排序。\n" +"\n" +" 安装本模块时,应更新意大利会计模块(l10n_it)。" + +#. module: base +#: model:ir.module.module,description:base.module_sf_bf_connect +msgid "" +"\n" +"在本模块,接收业务平台的模块\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_dlm +#: model:ir.module.module,description:base.module_sf_sale +msgid "" +"\n" +"在本模块,为业务平台传过来的订单信息\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_warehouse +msgid "" +"\n" +"在本模块,升级了odoo原生的库存模块\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_base +#: model:ir.module.module,description:base.module_sf_tool_management +msgid "" +"\n" +"在本模块,定义了主要的角色、菜单、基础业务对象\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_jikimo_frontend +msgid "" +"\n" +"在本模块,定义了样式的修改\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_plan_management +msgid "" +"\n" +"在本模块,定义了计划管理的清单和原型\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_mrs_connect +msgid "" +"\n" +"在本模块,智能工厂连接制造资源库\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_wxwork_approval +msgid "" +"\n" +"这是一个用于企业微信审批的模块\n" +"====================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_plan +msgid "" +"\n" +"这是一个用于机企猫生产订单排程的模块\n" +"====================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_quality +msgid "" +"\n" +"这是一个用于机企猫质量管理的模块\n" +"====================\n" +" " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sf_machine_connect +msgid "" +"\n" +"这是一个连接机床的模块\n" +"====================\n" +" " +msgstr "" + +#. module: account +#. odoo-python +#: code:addons/account/models/account_payment_term.py:0 +#, python-format +msgid " (%(amount)s if paid before %(date)s)" +msgstr " (%(amount)s预付款%(date)s)" #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_production__state @@ -191,28 +8566,90 @@ msgstr "" " * 已取消:调拨已取消。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_lot.py:0 #, python-format msgid " - Product: %s, Serial Number: %s" msgstr " - 产品: %s, 序列号码: %s" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_rule.py:0 #, python-format msgid "

The components will be taken from %s." msgstr "

组件将取自%s." -#. module: stock_account -#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 -#, python-format -msgid " Product cost updated from %(previous)s to %(new_cost)s." -msgstr " 产品成本从%(previous)s更新为%(new_cost)s." +#. module: base +#: model:ir.module.module,description:base.module_website_crm_livechat +msgid "" +" Adds a stat button on lead form view to access their livechat sessions." +msgstr " 在潜在客户表单视图上增加一个统计按钮以访问他们的即时聊天对话." -#. module: account -#: code:addons/account/models/account_move.py:0 -#, python-format -msgid " The %(lock_type)s lock date is set on %(lock_date)s." -msgstr " %(lock_type)s 锁定日期设置为 %(lock_date)s." +#. module: base +#: model:ir.module.module,description:base.module_l10n_si_reports +msgid " Base module for Slovenian reports " +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_stock_40 +msgid " Electronic Delivery Guide for Mexico CFDI 4.0" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_delivery_mondialrelay +msgid " Let's choose Point Relais® on your ecommerce " +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_delivery_mondialrelay +msgid " Let's choose a Point Relais® as shipping address " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_purchase_inter_company_rules +msgid "" +" Module for synchronization of Documents between several companies. For example, this allow you to have a Sales Order created automatically when a Purchase Order is validated with another company of the system as vendor, and inversely.\n" +"\n" +" Supported documents are SO, PO.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_inter_company_rules +msgid "" +" Module for synchronization of Documents between several companies. For example, this allow you to have a Sales Order created automatically when a Purchase Order is validated with another company of the system as vendor, and inversely.\n" +"\n" +" Supported documents are invoices/credit notes.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_approvals_purchase_stock +msgid " Technical module to link Approvals, Purchase and Inventory together. " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_spiffy_theme_backend +msgid "" +" The ultimate Odoo Backend theme with the most advanced key features of all " +"time. Get your own personalized view while working on the Backend system " +"with a wide range of choices. Spiffy theme has 3 in 1 Theme Style, " +"Progressive Web App, Fully Responsive for all apps, Configurable Apps Icon, " +"App Drawer with global search, RTL & Multi-Language Support, and many other " +"key features. " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_hk +msgid "" +" This is the base module to manage chart of accounting and localization for " +"Hong Kong " +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pk +msgid "" +" This is the base module to manage chart of accounts and localization for " +"the Pakistan " +msgstr "" #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_bom__ready_to_produce__all_available @@ -227,10 +8664,112 @@ msgid "" "location will be automatically set at the defined frequency." msgstr "当与0不同时,储存在这个位置的产品的库存清点日期将按定义的频率自动设置。" -#. module: stock_account -#: code:addons/stock_account/models/stock_quant.py:0 +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_activity.py:0 #, python-format -msgid " [Accounted on %s]" +msgid "\"%(activity_name)s: %(summary)s\" assigned to you" +msgstr "“%(activity_name)s:%(summary)s”分配给您" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/rtc.js:0 +#, python-format +msgid "\"%s\" requires \"%s\" access" +msgstr "\"%s\" 需要\"%s\" 访问权限" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/rtc.js:0 +#, python-format +msgid "\"%s\" requires microphone access" +msgstr "\"%s\"需要麦克风访问权限" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "\"group_by\" value must be a string %(attribute)s=%(value)r" +msgstr "\"group_by\"值必须是符串 %(attribute)s=%(value)r" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__accesses_count +msgid "# Access Rights" +msgstr "# 访问权限" + +#. module: base +#: model:ir.module.module,description:base.module_payment_aps +msgid "" +"# Amazon payment Services\n" +"\n" +"## Implementation details\n" +"\n" +"### Supported features\n" +"\n" +"- Payment with redirection flow\n" +"- Payment by several global and local credit\n" +" [cards](https://paymentservices.amazon.com/docs/EN/24a.html).\n" +"- [Webhook](https://paymentservices-reference.payfort.com/docs/api/build/index.html#transaction-feedback)\n" +"\n" +"### API and gateway\n" +"\n" +"We choose to integrate with the\n" +"[Redirection](https://paymentservices-reference.payfort.com/docs/api/build/index.html#redirection)\n" +"API as it is the gateway that covers the best our needs, out of the three that Amazon Payment\n" +"Services offers as of July 2022. See the task's dev notes for the details on the other gateways.\n" +"\n" +"## Merge details\n" +"\n" +"The first version of the module was specified in task\n" +"[2802678](https://www.odoo.com/web#id=2802678&model=project.task) and merged with PR odoo/odoo#95860\n" +"in `saas-15.5`.\n" +"\n" +"## Testing instructions\n" +"\n" +"https://paymentservices.amazon.com/docs/EN/12.html" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_payment_asiapay +msgid "" +"# AsiaPay\n" +"\n" +"## Implementation details\n" +"\n" +"### Supported features\n" +"\n" +"- Payment with redirection flow.\n" +"- Webhook.\n" +"- Several payment methods including credit cards, chinese payment methods such as Alipay, and \n" +" [others](https://www.asiapay.com/payment.html#option).\n" +"\n" +"In addition, AsiaPay also allows to implement manual capture, refunds, express checkout, and\n" +"multi-currency processing.\n" +"\n" +"### API and gateway\n" +"\n" +"We choose to integrate with the Client Post Through Browser gateway which covers the best our needs,\n" +"out of the three that AsiaPay offers as of August 2022.\n" +"\n" +"The entire API reference and the integration guides can be found on the [Integration Guide]\n" +"(https://www.paydollar.com/pdf/op/enpdintguide.pdf).\n" +"\n" +"The version of the API implemented by this module is v3.67.\n" +"\n" +"## Merge details\n" +"\n" +"The first version of the module was specified in task\n" +"[2845428](https://www.odoo.com/web#id=2845428&model=project.task) and merged with PR\n" +"odoo/odoo#98441 in `saas-15.5`.\n" +"\n" +"## Testing instructions\n" +"\n" +"Card Number: `4335900000140045`\n" +"Expiry Date: `07/2030`\n" +"Name: `testing card`\n" +"CVC: `123`\n" +"3DS Password: `password`\n" msgstr "" #. module: mrp @@ -244,6 +8783,94 @@ msgstr "# BOM" msgid "# BoM Where Used" msgstr "# BOM 使用" +#. module: base +#: model:ir.module.module,description:base.module_payment_flutterwave +msgid "" +"# Flutterwave\n" +"\n" +"## Implementation details\n" +"\n" +"### Supported features\n" +"\n" +"- Payment with redirection flow\n" +"- [Tokenization](https://developer.flutterwave.com/reference/endpoints/tokenized-charge/)\n" +"- Several payment methods such as credit cards, M-Pesa, and\n" +" [others](https://developer.flutterwave.com/docs/collecting-payments/payment-methods/).\n" +"- [Webhook](https://developer.flutterwave.com/docs/integration-guides/webhooks/).\n" +"\n" +"In addition, Flutterwave also allows to implement refunds and pre-authorizations.\n" +"\n" +"### API and gateway\n" +"\n" +"We choose to integrate with\n" +"[Flutterwave standard](https://developer.flutterwave.com/docs/collecting-payments/standard/) as it\n" +"is the gateway that covers the best our needs, out of the three that Flutterwave offers as of\n" +"May 2022. See the task's dev notes for the details on the other gateways.\n" +"\n" +"The version of the API implemented by this module is v3.\n" +"\n" +"## Merge details\n" +"\n" +"The first version of the module was specified in task\n" +"[2759117](https://www.odoo.com/web#id=2759117&model=project.task) and merged with PR\n" +"odoo/odoo#84820 in `saas-15.4`.\n" +"\n" +"## Testing instructions\n" +"\n" +"https://developer.flutterwave.com/docs/integration-guides/testing-helpers" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__groups_count +msgid "# Groups" +msgstr "# 用户组" + +#. module: base +#: model:ir.module.module,description:base.module_payment_mercado_pago +msgid "" +"# Mercado Pago\n" +"\n" +"## Implementation details\n" +"\n" +"### Supported features\n" +"\n" +"- Payment with redirection flow\n" +"- Several payment methods such as credit cards, debit cards, and\n" +" [others](https://www.mercadopago.com.mx/developers/en/docs/checkout-api/payment-methods/other-payment-methods).\n" +"- [Webhook](https://www.mercadopago.com.mx/developers/en/docs/notifications/webhooks/webhooks)\n" +" notifications.\n" +"\n" +"### Not implemented features\n" +"\n" +"- [Manual capture](https://www.mercadopago.com.mx/developers/en/docs/checkout-api/payment-management/capture-authorized-payment).\n" +"- [Partial refunds](https://www.mercadopago.com.mx/developers/en/docs/checkout-api/payment-management/cancellations-and-refunds).\n" +"\n" +"### API and gateway\n" +"\n" +"We choose to integrate with a combination of the\n" +"[Checkout Pro](https://www.mercadopago.com.mx/developers/en/docs/checkout-pro/landing) and\n" +"[Checkout API](https://www.mercadopago.com.mx/developers/en/docs/checkout-api/landing) solutions:\n" +"The payment with redirection flow is initiated by sending a client HTTP request with a form-encoded\n" +"payload like Checkout Pro's JavaScript SDK does under the hood. The remaining API calls are made\n" +"according to the Checkout API's documentation. It was not possible to integrate with Checkout Pro\n" +"only as it only allows redirecting customers to the payment page, nor with the Checkout API only as\n" +"it requires building a custom payment form to accept direct payments from the merchant's website.\n" +"\n" +"The other gateways were ruled out. See the task's dev notes for the details on the other gateways.\n" +"\n" +"The API implemented by this module is not versioned.\n" +"\n" +"## Merge details\n" +"\n" +"The first version of the module was specified in task\n" +"[2704764](https://www.odoo.com/web#id=2704764&model=project.task) and merged with PR\n" +"odoo/odoo#83957 in `saas-15.5`.\n" +"\n" +"## Testing instructions\n" +"\n" +"https://www.mercadopago.com.mx/developers/en/docs/checkout-api/integration-test/test-cards\n" +msgstr "" + #. module: quality #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alert_count #: model:ir.model.fields,field_description:quality.field_quality_check__alert_count @@ -255,6 +8882,47 @@ msgstr "# 质量警报" msgid "# Quality Checks" msgstr "# 质量检查" +#. module: base +#: model:ir.module.module,description:base.module_payment_razorpay +msgid "" +"# Razorpay\n" +"\n" +"## Implementation details\n" +"\n" +"### Supported features\n" +"\n" +"- Payment with redirection flow\n" +"- Manual capture\n" +"- Partial refunds\n" +"- Several payment methods such as debit/credit cards, netbanking, UPI, and\n" +" [others](https://razorpay.com/docs/payments/payment-methods/).\n" +"- [Webhook](https://razorpay.com/docs/webhooks).\n" +"\n" +"In addition, Razorpay also allows to implement tokenization but requires passing the card secret for\n" +"each transaction.\n" +"\n" +"### API and gateway\n" +"\n" +"We choose to integrate with\n" +"[Razorpay Hosted Checkout](https://razorpay.com/docs/payments/payment-gateway/web-integration/hosted).\n" +"The other gateways were ruled out. See the task's dev notes for the details on the other gateways.\n" +"\n" +"The version of the API implemented by this module is v1.\n" +"\n" +"## Merge details\n" +"\n" +"The first version of the module was specified in task\n" +"[2800823](https://www.odoo.com/web#id=2800823&model=project.task) and merged with PR\n" +"odoo/odoo#92848 in `saas-15.5`.\n" +"\n" +"## Testing instructions\n" +"\n" +"The partner's phone number must be a valid Indian phone number. Example: +91123456789\n" +"\n" +"See https://razorpay.com/docs/payments/payments/test-card-upi-details/ for the list of test\n" +"payment details.\n" +msgstr "" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__workorder_ready_count msgid "# Read Work Orders" @@ -275,6 +8943,11 @@ msgstr "#已调节结算单" msgid "# Reconciled Statement Lines" msgstr "# 已调节调节单明细" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__rules_count +msgid "# Record Rules" +msgstr "# 记录规则" + #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_partner__supplier_invoice_count #: model:ir.model.fields,field_description:purchase.field_res_users__supplier_invoice_count @@ -303,6 +8976,7 @@ msgid "# of Lines" msgstr "明细行数" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "#Created by: %s" @@ -324,19 +8998,87 @@ msgid "% of Transfers" msgstr "% 的调拨" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "%(action)s for journal %(journal)s" msgstr "%(action)s 用于日记帐 %(journal)s" -#. modules: account, purchase +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "%(action_name)s is not a valid action on %(model_name)s" +msgstr "%(action_name)s 不是对 %(model_name)s 的有效动作" + +#. modules: purchase, account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "%(amount)s due %(date)s" msgstr "%(amount)s 到期 %(date)s" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "%(attribute)r value must be an integer (%(value)s)" +msgstr "%(attribute)r 值必须是整数 (%(value)s)" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_member_list_category_view.js:0 +#, python-format +msgid "%(categoryText)s - %(memberCount)s" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_currency.py:0 +#: code:addons/base/models/res_currency.py:0 +#, python-format +msgid "%(company_currency_name)s per %(rate_currency_name)s" +msgstr "%(company_currency_name)s 每 %(rate_currency_name)s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/res_partner.py:0 +#, python-format +msgid "" +"%(email)s is not recognized as a valid email. This is required to create a " +"new customer." +msgstr "%(email)s不是有效的电子邮件。需要创建新的客户。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "%(method)s on %(model)s is private and cannot be called from a button" +msgstr "%(model)s 上的 %(method)s 是私有的,不能通过按钮调用" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/notification_request_view.js:0 +#, python-format +msgid "%(odoobotName)s has a request" +msgstr "%(odoobotName)s有请求" + +#. module: base +#. odoo-python +#: code:addons/fields.py:0 code:addons/models.py:0 +#, python-format +msgid "" +"%(previous_message)s\n" +"\n" +"Implicitly accessed through '%(document_kind)s' (%(document_model)s)." +msgstr "" + #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #: code:addons/purchase/models/purchase.py:0 #, python-format @@ -344,74 +9086,204 @@ msgid "%(product)s from %(original_receipt_date)s to %(new_receipt_date)s" msgstr "%(product)s从%(original_receipt_date)s到%(new_receipt_date)s。" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_unbuild.py:0 #, python-format msgid "%(qty)s %(measure)s unbuilt in %(order)s" msgstr "%(qty)s %(measure)s 未建立于 %(order)s 中" -#. module: stock_account -#: code:addons/stock_account/models/product.py:0 -#: code:addons/stock_account/models/product.py:0 +#. module: base +#. odoo-python +#: code:addons/base/models/res_currency.py:0 +#: code:addons/base/models/res_currency.py:0 #, python-format -msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" -msgstr "%(user)s将成本从%(previous)s改为%(new_price)s-%(product)s" +msgid "%(rate_currency_name)s per %(company_currency_name)s" +msgstr "%(rate_currency_name)s 每 %(company_currency_name)s" -#. module: stock_account -#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 -#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_wizard_invite.py:0 #, python-format -msgid "" -"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " -"%(product)s" -msgstr "%(user)s将股票估值从%(previous)s改为%(new_value)s-%(product)s" +msgid "%(user_name)s invited you to follow %(document)s document: %(title)s" +msgstr "%(user_name)s邀请您关注%(document)s 文件: %(title)s" + +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_wizard_invite.py:0 +#, python-format +msgid "%(user_name)s invited you to follow a new document." +msgstr "%(user_name)s 邀请您关注新文件。" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "%(user_name)s suggests to delete this instruction" msgstr "" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "%(user_name)s suggests to use this document as instruction" msgstr "" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "%(warehouse)s: Supply Product from %(supplier)s" msgstr "%(warehouse)s: 供应产品来自 %(supplier)s" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"%(xmlid)s is of type %(xmlid_model)s, expected a subclass of " +"ir.actions.actions" +msgstr "%(xmlid)s 是 %(xmlid_model)s 类型,应为 ir.actions.actions 的子类" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_automatic_entry_wizard_form msgid "%(" msgstr "" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%A - Full day of the week." +msgstr "%A - 一周中的全天." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%B - Full month name.\"" +msgstr "%B - 完整月份名称. \"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%H - Hour (24-hour clock) [00,23].\"" +msgstr "%H - 小时 (24-小时时钟) [00,23].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%I - Hour (12-hour clock) [01,12].\"" +msgstr "%I - 小时(12-小时时钟) [01,12].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%M - Minute [00,59].\"" +msgstr "%M - 分钟[00,59].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%S - Seconds [00,61].\"" +msgstr "%S - 秒[00,61].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%Y - Year with century.\"" +msgstr "%Y - 4位数的年份. \"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%a - Abbreviated day of the week." +msgstr "%a - 星期几的缩写." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%b - Abbreviated month name." +msgstr "%b - 月份名称缩写." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%d - Day of the month [01,31].\"" +msgstr "%d - 月份里的第几天[01, 31].\"" + #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "%d moves" msgstr "%d凭证" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "%d records successfully imported" +msgstr "%d 记录被成功导入" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_routing.py:0 #, python-format msgid "%i work orders" msgstr "%i 工单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%j - Day of the year [001,366].\"" +msgstr "%j - 年中的第几天 [001,366].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%m - Month number [01,12].\"" +msgstr "%m - 月份数 [01,12].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%p - Equivalent of either AM or PM.\"" +msgstr "%p - 等价于 AM 或 PM. \"" + #. module: account +#. odoo-python +#: code:addons/account/models/account_account_tag.py:0 +#, python-format +msgid "%s (%s)" +msgstr "" + +#. module: account +#. odoo-python #: code:addons/account/models/account_tax.py:0 #, python-format msgid "%s (Copy)" msgstr "%s (副本)" -#. modules: account, stock +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "%s (Dedicated Outgoing Mail Server):" +msgstr "%s(专用的出向邮件服务器):" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_mail_server.py:0 +#, python-format +msgid "%s (Email Template)" +msgstr "%s(电子邮件模板)" + +#. modules: stock, mail, base, account +#. odoo-python #: code:addons/account/models/account_account.py:0 #: code:addons/account/models/account_account.py:0 #: code:addons/account/models/account_journal.py:0 #: code:addons/account/models/account_reconcile_model.py:0 #: code:addons/account/models/account_reconcile_model.py:0 +#: code:addons/base/models/ir_filters.py:0 +#: code:addons/base/models/ir_filters.py:0 +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/mail/models/mail_template.py:0 #: code:addons/stock/models/stock_location.py:0 #: code:addons/stock/models/stock_package_type.py:0 #: code:addons/stock/models/stock_storage_category.py:0 @@ -420,66 +9292,149 @@ msgid "%s (copy)" msgstr "%s (副本)" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #, python-format msgid "%s (new) %s" msgstr "%s (新的) %s" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "%s (rounding)" msgstr "%s (四舍五入)" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "%s - %s; %s Billed, %s Received at %s each" msgstr "%s - %s; %s 账单已出, %s 收到在每个 %s" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "%s - %s; %s Invoiced, %s Delivered at %s each" msgstr "%s - %s; %s 已结算, %s 运货在每个 %s" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "%s Child MO's" msgstr "%s 下级 MO's" #. module: account +#. odoo-python #: code:addons/account/models/product.py:0 #, python-format msgid "%s Excl. Taxes" msgstr "%s 不包含税" #. module: account +#. odoo-python #: code:addons/account/models/product.py:0 #, python-format msgid "%s Incl. Taxes" msgstr "%s 包括税" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/messaging_notification_handler.js:0 +#, python-format +msgid "%s Message" +msgstr "%s 消息" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/messaging_notification_handler.js:0 +#, python-format +msgid "%s Messages" +msgstr "%s 消息" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move_line.py:0 #, python-format msgid "%s [reverted]" -msgstr "" +msgstr "%s[恢复]" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/thread.js:0 +#, python-format +msgid "%s and %s are typing..." +msgstr "%s 和 %s 在输入..." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_reaction_group.js:0 +#, python-format +msgid "%s and %s have reacted with %s" +msgstr "%s 和%s 已经与%s发生了反应" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 +#, python-format +msgid "%s can't be inventoried. Only storable products can be inventoried." +msgstr "无法%s进行清点。只能对可储存的产品进行清点。" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "%s cannot be deleted. Try to cancel them before." msgstr "%s无法被删除。 尝试先取消。" #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "%s confirmed the receipt will take place on %s." msgstr "%s确认收据将在%s发生。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/messaging_notification_handler.js:0 +#, python-format +msgid "%s connected" +msgstr "%s 已连接" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "%s created" +msgstr "%s 创建" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/activity.js:0 +#: code:addons/mail/static/src/models/activity_list_view_item.js:0 +#, python-format +msgid "%s days overdue" +msgstr "逾期%s天" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/activity_view.js:0 +#, python-format +msgid "%s days overdue:" +msgstr "逾期%s天:" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/messaging_notification_handler.js:0 +#, python-format +msgid "%s from %s" +msgstr "%s 由 %s" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "" @@ -489,19 +9444,60 @@ msgstr "" "%s 已达到其信用额度 : %s\n" "应付总额 " +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_reaction_group.js:0 +#, python-format +msgid "%s has reacted with %s" +msgstr "%s 已与%s发生反应" + #. module: account +#. odoo-python #: code:addons/account/models/sequence_mixin.py:0 #, python-format msgid "%s is not a stored field" msgstr "%s不是存储的字段" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/thread.js:0 +#, python-format +msgid "%s is typing..." +msgstr "%s 正在输入..." + #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "%s modified receipt dates for the following products:" msgstr "%s修改以下产品的收货日期。" +#. module: base +#. odoo-python +#: code:addons/base/models/res_currency.py:0 +#: code:addons/base/models/res_currency.py:0 +#, python-format +msgid "%s per Unit" +msgstr "%s 每单位" + +#. module: account +#. odoo-python +#: code:addons/account/models/account_bank_statement_line.py:0 +#, python-format +msgid "" +"%s reached an invalid state regarding its related statement line.\n" +"To be consistent, the journal entry must always have exactly one suspense line." +msgstr "" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel_member.py:0 +#, python-format +msgid "%s started a live conference" +msgstr "%s发起了实时会议" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "" @@ -509,18 +9505,69 @@ msgid "" "be archived." msgstr "%s使用将要归档的仓库%s中的默认源或目标位置。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/thread.js:0 +#, python-format +msgid "%s, %s and more are typing..." +msgstr "%s, %s 及更多人在沟通..." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_reaction_group.js:0 +#, python-format +msgid "%s, %s, %s and %s other persons have reacted with %s" +msgstr "%s,%s,%s,和其他%s个人对%s作出了回应" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_reaction_group.js:0 +#, python-format +msgid "%s, %s, %s and 1 other person have reacted with %s" +msgstr "%s%s%s和其他 1 个人对%s作出了回应" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_reaction_group.js:0 +#, python-format +msgid "%s, %s, %s have reacted with %s" +msgstr "%s, %s, %s 已与%s发生反应" + #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #, python-format msgid "%s.copy" msgstr "%s.复制" -#. module: purchase +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%w - Day of the week number [0(Sunday),6].\"" +msgstr "%w - 星期 [0(Sunday),6].\"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "%y - Year without century [00,99].\"" +msgstr "%y - 两位数年份[00,99]. \"" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.language_install_view_form_lang_switch +msgid "& Close" +msgstr "& 关闭" + +#. modules: purchase, base +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +#: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs msgid "&nbsp;" msgstr "" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_layout +msgid "&nbsp;&nbsp;" +msgstr "&nbsp;&nbsp。" + #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.view_immediate_production #: model_terms:ir.ui.view,arch_db:stock.view_backorder_confirmation @@ -528,6 +9575,46 @@ msgstr "" msgid ">" msgstr "" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "'%s' does not seem to be a number for field '%%(field)s'" +msgstr "'%s' 不像是用于字段 '%%(field)s' 的数字" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "'%s' does not seem to be a valid JSON for field '%%(field)s'" +msgstr "“%s”似乎不是字段'%%(field)s'的有效JSON " + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "'%s' does not seem to be a valid date for field '%%(field)s'" +msgstr "'%s' 不像是用于字段 '%%(field)s' 的正确日期" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "'%s' does not seem to be a valid datetime for field '%%(field)s'" +msgstr "'%s' 不像是用于字段 '%%(field)s' 的正确日期时间" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "'%s' does not seem to be an integer for field '%%(field)s'" +msgstr "'%s' 不像是用于字段 '%%(field)s'的整型" + #. module: mrp #: model:ir.actions.report,print_report_name:mrp.action_report_bom_structure msgid "'Bom Overview - %s' % object.display_name" @@ -596,25 +9683,50 @@ msgstr "'工单 - %s' % object.name" msgid "'Worksheet_%s' % object.name" msgstr "" +#. module: account +#. odoo-python +#: code:addons/account/models/account_move_line.py:0 +#: code:addons/account/models/account_move_line.py:0 +#, python-format +msgid "(Discount)" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/fields.py:0 +#, python-format +msgid "(Record: %s, User: %s)" +msgstr "(记录: %s, 用户: %s)" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_lot.py:0 #, python-format msgid "(copy of) %s" msgstr "(副本) %s" #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #: code:addons/account/models/account_report.py:0 #, python-format msgid "(copy)" msgstr "(复制)" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message/message.xml:0 +#, python-format +msgid "(from" +msgstr "(从" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "(included)." msgstr "(包含)." #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "(including this document) " @@ -626,13 +9738,21 @@ msgstr "(包括本文档) " msgid "(object._get_report_base_filename())" msgstr "" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view -msgid "" -")\n" -" Use a negative added value to record a decrease in the product value" +#. module: sf_bf_connect +#: model:ir.actions.report,print_report_name:sf_bf_connect.stock_picking_report +msgid "(object.carrier_tracking_ref)" msgstr "" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_activity_done +msgid "(originally assigned to" +msgstr "(最初分配给" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "), are you sure to create a new one?" +msgstr "),您确定要创建一个新的吗?" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move__state #: model:ir.model.fields,help:stock.field_stock_move_line__state @@ -672,7 +9792,8 @@ msgstr "" "* 生产:生产作业的虚拟对应位置:此位置消耗组件并生产成品\n" "* 中转站:应在公司间或仓库间运营中使用的对应地点" -#. modules: purchase_stock, stock, mrp +#. modules: stock, mrp, purchase_stock +#. odoo-python #: code:addons/mrp/models/stock_rule.py:0 #: code:addons/mrp/models/stock_rule.py:0 #: code:addons/mrp/models/stock_rule.py:0 @@ -680,6 +9801,7 @@ msgstr "" #: code:addons/purchase_stock/models/stock_rule.py:0 #: code:addons/purchase_stock/models/stock_rule.py:0 #: code:addons/stock/models/stock_rule.py:0 +#: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "+ %d day(s)" msgstr "+ %d天(s)" @@ -694,11 +9816,50 @@ msgstr "" " 到期日和金额为:,\n" " 即将到期的(日期)和(金额):" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_activity_assigned +msgid "" +",\n" +"

" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid ", enter to" +msgstr "按Enter键确认保存 或 点击" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_stock_rule msgid ", max:" msgstr ", 最大:" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid ", or your preferred text editor" +msgstr ",或您喜欢的文字编辑器" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid ", readonly" +msgstr ",只读" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid ", required" +msgstr ", 必填" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"- %(record)r belongs to company %(company)r and %(field)r (%(fname)s: " +"%(values)s) belongs to another company." +msgstr "" +"- %(record)r 属于公司 %(company)r 及 %(field)r (%(fname)s: %(values)s) 属于另一家公司." + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "- A default Customer Invoice / Vendor Bill date will be suggested." @@ -711,12 +9872,72 @@ msgid "" "automating line creation with the right account & tax." msgstr "- 一个新字段 « Total (含税.) » 通过使用正确的帐户自动创建行来加速和控制编码税." +#. module: base +#: model:ir.model.fields,help:base.field_res_partner__type +#: model:ir.model.fields,help:base.field_res_users__type +msgid "" +"- Contact: Use this to organize the contact details of employees of a given company (e.g. CEO, CFO, ...).\n" +"- Invoice Address : Preferred address for all invoices. Selected by default when you invoice an order that belongs to this company.\n" +"- Delivery Address : Preferred address for all deliveries. Selected by default when you deliver an order that belongs to this company.\n" +"- Private: Private addresses are only visible by authorized users and contain sensitive data (employee home addresses, ...).\n" +"- Other: Other address for the company (e.g. subsidiary, ...)" +msgstr "" +"- 联系人:用于整理给定公司的员工(如CEO和CFO等)。\n" +"- 结算地址:所有结算的首选地址。当您为此公司的订单开具结算时,默认选中此选项。\n" +"- 交货地址:所有交货的首选地址。交付属于此公司的订单时默认选中此选项。\n" +"- 私人地址:私人地址仅对授权用户可见,且包含敏感信息(员工住址...…)。\n" +"- 其他地址:公司的其他地址(如子公司...…)" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"- Record is company %(company)r and %(field)r (%(fname)s: %(values)s) " +"belongs to another company." +msgstr "- 记录是公司 %(company)r 及 %(field)r (%(fname)s: %(values)s) 属于另一家公司." + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "- The document's sequence becomes editable on all documents." msgstr "- 文件的序号在所有文件上都变得可编辑" -#. modules: purchase, stock +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- domain =" +msgstr "- 域 =" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- field =" +msgstr "- 字段 =" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- groups =" +msgstr "- 组 =" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- ondelete =" +msgstr "- 删除时=" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- relation =" +msgstr "- 关系 =" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- selection = [" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "- size =" +msgstr "- 尺寸=" + +#. modules: stock, purchase #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_qty_received_template #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template #: model_terms:ir.ui.view,arch_db:stock.message_body @@ -728,6 +9949,31 @@ msgstr "" msgid "-> View partially reconciled entries" msgstr "-> 查看部分调节分录" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "-This module does not create menu." +msgstr "-这个模块不创建菜单." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "-This module does not create report." +msgstr "-这个模块不创建报告." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "-This module does not create views." +msgstr "-这个模块不创建视图." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "-This module does not depends on any other module." +msgstr "-这个模块不依赖于任何其它模块." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "-This module does not exclude any other module." +msgstr "- 该模块不排斥任何其它模块." + #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.exception_on_mo #: model_terms:ir.ui.view,arch_db:stock.exception_on_picking @@ -738,6 +9984,13 @@ msgstr "" ".\n" " 可能需要手动动作。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_invitation_form/channel_invitation_form.xml:0 +#, python-format +msgid ". Narrow your search to see more choices." +msgstr ". 缩小搜索范围以查看更多选择." + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form msgid ". Please make sure that this is a wanted behavior." @@ -756,17 +10009,64 @@ msgid ". You might want to put a higher number here." msgstr "。 您可能希望在此处输入更大的数字。" #. module: account +#. odoo-python #: code:addons/account/wizard/account_resequence.py:0 #, python-format msgid "... (%s other)" msgstr "... (%s 其它)" -#. module: stock +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#, python-format +msgid "0 Future" +msgstr "将来 0" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#, python-format +msgid "0 Late" +msgstr "迟到 0" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#, python-format +msgid "0 Today" +msgstr "今天 0" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "00" +msgstr "" + +#. modules: stock, base +#: model:ir.model.fields.selection,name:base.selection__base_enable_profiling_wizard__duration__days_1 #: model:ir.model.fields.selection,name:stock.selection__stock_orderpoint_snooze__predefined_date__day msgid "1 Day" msgstr "1 天" -#. module: stock +#. module: base +#: model:ir.model.fields.selection,name:base.selection__base_enable_profiling_wizard__duration__hours_1 +msgid "1 Hour" +msgstr "1小时" + +#. modules: stock, base +#: model:ir.model.fields.selection,name:base.selection__base_enable_profiling_wizard__duration__months_1 #: model:ir.model.fields.selection,name:stock.selection__stock_orderpoint_snooze__predefined_date__month msgid "1 Month" msgstr "1 个月" @@ -781,32 +10081,222 @@ msgstr "1项支付" msgid "1 Week" msgstr "1 周" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "1. %b, %B ==> Dec, December" +msgstr "1. %b, %B ==> 十二, 十二月" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "1.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "10" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "10.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "100" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_us_1099 +msgid "1099 Reporting" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "10:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "10:30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "11" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "11.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "11:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "11:30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "12" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "12.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "1234" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "12:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "12:30" +msgstr "" + #. module: account #: model:account.payment.term,name:account.account_payment_term_15days msgid "15 Days" msgstr "15天" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "18" +msgstr "" + #. module: mrp -#: model_terms:product.product,description:mrp.product_product_computer_desk_leg #: model_terms:product.template,description:mrp.product_product_computer_desk_leg_product_template msgid "18″ x 2½″ Square Leg" msgstr "方形桌桌脚规格18“x2½”" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "1:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "1:30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "1st place medal" +msgstr "一等奖奖牌" + #. module: account #: model:account.payment.term,name:account.account_payment_term_2months msgid "2 Months" msgstr "2个月" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> 五, 星期五" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "2.30" +msgstr "" + #. module: account #: model:account.payment.term,name:account.account_payment_term_30days_early_discount msgid "2/7 Net 30" -msgstr "2/7 货到30天" +msgstr "2/7 净30天" #. module: account #: model:account.payment.term,name:account.account_payment_term_21days msgid "21 Days" msgstr "21 天" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "2:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "2:30" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_totp_mail +msgid "2FA Invite mail" +msgstr "2FA 邀请邮件" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_totp_mail_enforce +msgid "2FA by mail" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "2nd place medal" +msgstr "二等奖奖牌" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "3-way matching" @@ -817,6 +10307,18 @@ msgstr "3方匹配" msgid "3-way matching: purchases, receptions and bills" msgstr "3单匹配:采购订单,收货单与发票" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "3. %y, %Y ==> 08, 2008" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "3.30" +msgstr "" + #. module: account #: model:account.payment.term,name:account.account_payment_term_30days msgid "30 Days" @@ -825,7 +10327,7 @@ msgstr "30天" #. module: account #: model:account.payment.term,name:account.account_payment_term_30_days_end_month_the_10 msgid "30 days End of Month on the 10th" -msgstr "每月30天 on the 10th" +msgstr "" #. module: account #: model:account.payment.term,name:account.account_payment_term_advance @@ -837,8 +10339,27 @@ msgstr "次月月底预付30%" msgid "30% Now, Balance 60 Days" msgstr "30%现在,余额60天" -#. module: sf_base -#: model:ir.model.fields,field_description:sf_base.field_sf_cutting_tool_model__three_d_model +#. module: base +#: model:ir.module.module,summary:base.module_hr_appraisal_survey +msgid "360 Feedback" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "3:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "3:30" +msgstr "" + +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__three_d_model msgid "3D模型" msgstr "" @@ -849,6 +10370,29 @@ msgstr "" msgid "3D模型图" msgstr "" +#. module: base +#: model:ir.module.module,shortdesc:base.module_web_widget_model_viewer +msgid "3D模型展示" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_web_widget_model_viewer +msgid "3D模型展示模块" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_widget_model_viewer +msgid "3D模型展示模块(限odoo16)" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "3rd place medal" +msgstr "三等奖奖牌" + #. module: sale_management #: model:sale.order.template.line,name:sale_management.sale_order_template_line_1 msgid "4 Person Desk" @@ -859,30 +10403,234 @@ msgstr "4人的桌子" msgid "4 x 12" msgstr "" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "4. %d, %m ==> 05, 12" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "4.30" +msgstr "" + #. module: account #: model:account.payment.term,name:account.account_payment_term_45days msgid "45 Days" msgstr "45 天" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "4:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "4:30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "4WD" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "4x4" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__base_enable_profiling_wizard__duration__minutes_5 +msgid "5 Minutes" +msgstr "5分钟" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "5. %H:%M:%S ==> 18:25:20" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "5.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "5:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "5:30" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "6. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "6. %I:%M:%S %p ==> 06:25:20 下午" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "6.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "6:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "6:30" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "7. %j ==> 340" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "7.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "7:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "7:30" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "8. %S ==> 20" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "8.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "8:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "8:30" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "9. %w ==> 5 ( Friday is the 6th day)" +msgstr "9. %w ==> 5 ( 星期五是第6天)" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "9.30" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "9:00" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "9:30" +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_scrap.py:0 #, python-format msgid ": Insufficient Quantity To Scrap" msgstr ": 无充足的数量用来报废" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_unbuild.py:0 #, python-format msgid ": Insufficient Quantity To Unbuild" msgstr ":数量不足以拆解" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "%(date)s" +msgstr "" +"%(count)s# 分期付款 %(amount)s on %(date)s" + #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "%s suggests to delete this instruction" msgstr "" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "" @@ -906,12 +10654,14 @@ msgid "Model Number:" msgstr "型号 :" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "New Instruction suggested by %s
%s
Reason: %s" msgstr "" #. modules: sf_manufacturing, mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/quality.py:0 #: code:addons/sf_manufacturing/models/quality.py:0 #, python-format @@ -928,11 +10678,6 @@ msgstr "请求:" msgid "Serial Number:" msgstr "序列号:" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form -msgid "Set other input/output accounts on specific " -msgstr "设置其他的进货/出货科目,在具体的 " - #. module: stock #: model_terms:ir.ui.view,arch_db:stock.stock_warn_insufficient_qty_form_view msgid "" @@ -942,7 +10687,21 @@ msgstr "" "
\n" " 当前库存: " +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"

\n" +" Type @username to mention someone, and grab their attention.
\n" +" Type #channel to mention a channel.
\n" +" Type /command to execute a command.
" +msgstr "" +"

键入 @username 以提及某人,并吸引他们的注意力。
键入 #channel " +"以提及频道。
键入 / 命令以执行命令。
" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "" @@ -951,6 +10710,7 @@ msgid "" msgstr "
需求产生于 %s 为满足这个需求,规则将会被触发。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "" @@ -958,6 +10718,121 @@ msgid "" " to bring products in this location." msgstr "
如果产品不可用 %s, 将触发规则以将产品带入此位置。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"\n" +"partner_name = record.name + '_code' \\n\n" +"env['res.partner'].create({'name': partner_name})\n" +"" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"UserError: Warning Exception to use with raise" +msgstr "UserError: 与 raise 一起使用的警告异常" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "datetime (Python module)" +msgstr "datetime (Python模块)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "dateutil (Python module)" +msgstr "dateutil (Python模块)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "env: Odoo Environment on which the action is triggered" +msgstr "env:触发动作的 Odoo 环境" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"log(message, level='info'):logging function to record debug " +"information in ir.logging table" +msgstr "" +"log(message, level='info'):在 ir.logging " +"表中记录调试信息的日志记录功能" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"model: Odoo Model of the record on which the action is " +"triggered; is a void recordset" +msgstr "model:触发动作的 Odoo 模型记录;是一个无效的记录集" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"record: record on which the action is triggered; may be be void" +msgstr "record:触发动作的记录;可能无效" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"records: recordset of all records on which the action is " +"triggered in multi mode; may be void" +msgstr "records:在多个模式下触发动作的所有记录的记录集;可能无效" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "self (the set of records to compute)" +msgstr "self (要计算的记录集)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "time (Python module)" +msgstr "time (Python模块)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"time, datetime, dateutil, " +"timezone: useful Python libraries" +msgstr "" +"time, datetime, dateutil, " +"timezone: 有用的 Python 库" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"
created #%s
" +msgstr "" +"
创建#%s
" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "
invited %s to the channel
" +msgstr "
被邀请%s到频道
" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "
joined the channel
" +msgstr "
加入到频道
" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "
left the channel
" +msgstr "
离开频道
" + #. module: account #: model:mail.template,body_html:account.email_template_edi_credit_note msgid "" @@ -1014,7 +10889,7 @@ msgstr "" "(参考:< t t-out=\"object.invoice_origin or ''\">SUB003)\n" " \n" " $ 143,750.00\n" -" from YourCompany.\n" +" from YourCompany.\n" "

\n" "如果您有任何问题,请随时与我们联系。\n" " \n" @@ -1082,7 +10957,7 @@ msgstr "" "

\n" " 这是您的\n" " \n" -" 发票 INV/2021/05/0005\n" +" 结算 INV/2021/05/0005\n" " < /t>\n" " \n" " invoice\n" @@ -1093,7 +10968,7 @@ msgstr "" " $ 143,750.00\n" " 来自 YourCompany。 \n" " \n" -" 此发票已付款。\n" +" 此结算已付款。\n" " < /t>\n" " \n" " 请尽早汇款。\n" @@ -1135,8 +11010,8 @@ msgstr "" "
\n" "

\n" " 亲爱的Azure Interior

\n" -" 感谢您的付款。\n" -" 这是您的付款收据 BNK1-2021-05-0002 \n" +" 感谢您的支付。\n" +" 这是您的支付收据 BNK1-2021-05-0002 \n" " 到 $ 10.00 from YourCompany。\n" "

\n" " 如果您有任何问题,请随时与我们联系。\n" @@ -1376,13 +11251,30 @@ msgstr "" "\n" " 预览" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_company_kanban +msgid "" +"" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_users_kanban +msgid "" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_users_kanban +msgid "" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_move_line_view_kanban #: model_terms:ir.ui.view,arch_db:account.view_account_move_kanban msgid "" msgstr "" -#. modules: account, stock +#. modules: stock, account #: model_terms:ir.ui.view,arch_db:account.view_account_payment_kanban #: model_terms:ir.ui.view,arch_db:stock.stock_scrap_view_kanban msgid "" @@ -1393,7 +11285,7 @@ msgstr "" msgid " Send message" msgstr " 发送消息" -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.portal_invoice_page #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order msgid " Download" @@ -1406,7 +11298,7 @@ msgid "" "title=\"Selection\"/>" msgstr "" -#. modules: quality_control, maintenance, stock, mrp +#. modules: stock, quality_control, maintenance, mrp #: model_terms:ir.ui.view,arch_db:maintenance.maintenance_team_kanban #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_kanban #: model_terms:ir.ui.view,arch_db:mrp.stock_production_type_kanban @@ -1415,6 +11307,11 @@ msgstr "" msgstr "" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_users_kanban +msgid "" +msgstr "" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_team_dashboard_view_kanban msgid "" @@ -1492,6 +11389,85 @@ msgstr "" "等待账单\n" " " +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +"" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +"" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +"" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +"" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid "" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders msgid "" @@ -1507,6 +11483,28 @@ msgid "" " Configure Email Servers" msgstr "配置邮件服务器" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_document_file_kanban +msgid "" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "" +"" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode_kanban_2 +msgid "" +msgstr "" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode_kanban_2 +msgid "" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_kanban msgid "" @@ -1517,23 +11515,44 @@ msgstr "" msgstr "" -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.portal_invoice_page #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order msgid " Print" msgstr " 打印" -#. module: mrp_workorder +#. modules: stock_barcode, mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp_workorder.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_barcode.res_config_settings_view_form msgid " Print barcode commands" msgstr "打印条码命令" +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.res_config_settings_view_form +msgid " Print barcode demo sheet" +msgstr " 打印条码演示单" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_kanban msgid "" msgstr "" +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +msgid " Delete" +msgstr "删除" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "" +"\n" +" Learn more" +msgstr "" +"\n" +" 了解更多" + #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "" @@ -1544,6 +11563,7 @@ msgstr "" "({debit_credit}) 从%s被转账到{account_target_name}由{link}" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "" @@ -1554,6 +11574,7 @@ msgstr "" "%(account_source_name)s" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #, python-format msgid "" @@ -1569,6 +11590,70 @@ msgstr "" " 使用此功能存储任何文件,如图纸或规格。\n" "

" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "" +"

Chat with coworkers in real-time using direct " +"messages.

You might need to invite users from the Settings app " +"first.

" +msgstr "

使用私信实时与同事聊天

您可能需要在“设置”应用中邀请用户。

" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "" +"

Write a message to the members of the channel here.

You can" +" notify someone with '@' or link another channel with '#'. " +"Start your message with '/' to get the list of possible commands.

" +msgstr "" +"

向频道中的其他用户发信息

您可以使用 '@' 通知相关人员或用 '#' 链接另一频道。以 " +"'/' 开头编辑消息获得可以使用的命令列表。

" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "" +"

Channels make it easy to organize information across different topics and" +" groups.

Try to create your first channel (e.g. sales, " +"marketing, product XYZ, after work party, etc).

" +msgstr "" +"

通过频道可以轻松跨越不同主题和组织信息。

尝试创建您的第一个频道(例如,销售、营销、产品矩阵、工作之余的聚会等)。

" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "

Create a channel here.

" +msgstr "

创建新频道。

" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "

Create a public or private channel.

" +msgstr "

创建一个公共或私人频道。

" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_alias.py:0 +#, python-format +msgid "" +"

Dear Sender,

\n" +"The message below could not be accepted by the address %(alias_display_name)s.\n" +"Only %(contact_description)s are allowed to contact it.

\n" +"Please make sure you are using the correct address or contact us at %(default_email)s instead.

\n" +"Kind Regards,

" +msgstr "" +"

亲爱的发件人,

\n" +"该地址无法接受以下消息 %(alias_display_name)s.\n" +"只允许 %(contact_description)s联系它.

\n" +"请确保您使用正确的地址或通过 %(default_email)s联系我们.

\n" +"此致敬礼,

" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "" @@ -1626,6 +11711,33 @@ msgid "" " Invoice\n" " Credit Note" msgstr "" +" 应收凭单\n" +" 折让单" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.reset_view_arch_wizard_view +msgid "" +"This view has no previous version.\n" +" This view is not coming from a file.\n" +" You need two views to compare." +msgstr "" +"此视图没有以前的版本.\n" +" 此视图不是来自单据.\n" +" 您需要两个视图进行比较." + +#. module: account +#: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_form +msgid "" +"Match Invoice/bill with" +msgstr "" +"匹配应收凭单/帐单" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_currency_kanban +msgid "inactive" +msgstr "停用的" #. module: account #: model_terms:ir.ui.view,arch_db:account.portal_my_invoices @@ -1676,6 +11788,26 @@ msgstr "" msgid "Canceled" msgstr "取消" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_partner_kanban_view +msgid "Archived" +msgstr "归档" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_template_preview_view_form +msgid "Force a language: " +msgstr "强制语言:" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Button Color" +msgstr "按钮颜色" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Header Color" +msgstr "标题颜色" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders msgid "" @@ -1710,7 +11842,7 @@ msgid "" "role=\"img\" aria-label=\"Statistics\" title=\"Statistics\"/>" msgstr "" -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "" @@ -1741,7 +11873,7 @@ msgstr "" "" -#. modules: purchase_stock, stock +#. modules: stock, purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.res_config_settings_view_form_stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "" @@ -1798,11 +11930,6 @@ msgstr "" "('state', '!=', 'draft'), ('invoice_payment_term_id', '!=', " "False)]}\">或" -#. module: account -#: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_form -msgid "Match Invoice/bill with" -msgstr "匹配结算单/账单与" - #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_line_form msgid "" @@ -1836,6 +11963,18 @@ msgstr "" "询价\n" "采购订单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_update +msgid "" +"Click on Update below to start " +"the process..." +msgstr "点击以下更新开始......" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Activities" +msgstr "活动" + #. module: account #: model_terms:ir.ui.view,arch_db:account.validate_account_move_view msgid "" @@ -1852,6 +11991,11 @@ msgstr "" "现金折扣减税\n" " " +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Custom ICE server list" +msgstr "自定义 ICE 服务器列表" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Default Incoterm" @@ -1871,6 +12015,11 @@ msgstr "" "默认税\n" " " +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Email Templates" +msgstr "电子邮件模板" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "" @@ -1919,15 +12068,27 @@ msgid "" "certain features." msgstr "以下默认科目与某些功能一起使用" -#. modules: quality_control, quality_mrp +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade_install +msgid "" +"The selected modules have been updated / " +"installed !" +msgstr "选择的模块将被更新 / 安装 !" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade_install +msgid "" +"We suggest to reload the menu tab to see the " +"new menus (Ctrl+T then Ctrl+R).\"" +msgstr "我们提议重载菜单来查看新菜单 (Ctrl+T 然后 Ctrl+R).\"" + +#. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.stock_picking_view_form_inherit_quality -#: model_terms:ir.ui.view,arch_db:quality_mrp.mrp_production_view_form_inherit_quality msgid "Quality Checks" msgstr "质量检查" -#. modules: quality_control, quality_mrp +#. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.stock_picking_view_form_inherit_quality -#: model_terms:ir.ui.view,arch_db:quality_mrp.mrp_production_view_form_inherit_quality msgid "Quality Checks" msgstr "质量检查" @@ -1962,6 +12123,15 @@ msgstr "" "平均:\n" " 标准:" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "" +"Add\n" +" Context Action" +msgstr "" +"添加\n" +" 上下文操作" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view msgid "Backorders" @@ -2091,22 +12261,25 @@ msgstr "采购" msgid "Quality Alert" msgstr "质量警报" -#. module: quality_mrp -#: model_terms:ir.ui.view,arch_db:quality_mrp.mrp_production_view_form_inherit_quality -msgid "Quality Alerts" -msgstr "品质警告" - #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_view_form msgid "Quality Check" msgstr "质量检查" -#. modules: quality_control, quality_mrp +#. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.stock_picking_view_form_inherit_quality -#: model_terms:ir.ui.view,arch_db:quality_mrp.mrp_production_view_form_inherit_quality msgid "Quality Checks" msgstr "质量检查" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "" +"Remove\n" +" Context Action" +msgstr "" +"移除\n" +" 上下文操作" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_form_view_inherit @@ -2201,6 +12374,48 @@ msgstr "" msgid "2,350.00" msgstr "" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.demo_force_install_form +msgid "Danger Zone" +msgstr "危险本地" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.sequence_view +msgid "" +"Current Year with Century: %(year)s\n" +" Current Year without Century: %(y)s\n" +" Month: %(month)s\n" +" Day: %(day)s" +msgstr "" +"年代: %(year)s\n" +" 年份: %(y)s\n" +" 月: %(month)s\n" +" 日: %(day)s" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.sequence_view +msgid "" +"Day of the Year: %(doy)s\n" +" Week of the Year: %(woy)s\n" +" Day of the Week (0:Monday): %(weekday)s" +msgstr "" +"某年某日: %(doy)s\n" +" 某年某周: %(woy)s\n" +" 某周某天 (0:周一): %(weekday)s" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.sequence_view +msgid "" +"Hour 00->24: %(h24)s\n" +" Hour 00->12: %(h12)s\n" +" Minute: %(min)s\n" +" Second: %(sec)s" +msgstr "" +"时 00->24: %(h24)s\n" +" 时 00->12: %(h12)s\n" +" 分: %(min)s\n" +" 秒: %(sec)s" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document msgid "" @@ -2219,6 +12434,16 @@ msgstr "" "金额\n" " 总价" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +msgid "" +"Followers of the " +"document and" +msgstr "" +"文件的关注者和" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_mrp_line msgid "" @@ -2307,17 +12532,35 @@ msgstr " 交易" msgid " day(s) before" msgstr "天(数)之前" +#. module: sf_warehouse +#: model_terms:ir.ui.view,arch_db:sf_warehouse.example_kanban_view +msgid " | " +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.bill_preview msgid "$ 19,250.00" msgstr "" -#. modules: sf_manufacturing, sf_base +#. modules: sf_manufacturing, sf_dlm, sf_base #: model_terms:ir.ui.view,arch_db:sf_base.form_sf_machine_tool_type +#: model_terms:ir.ui.view,arch_db:sf_base.sf_fixture_model_view_form +#: model_terms:ir.ui.view,arch_db:sf_dlm.view_product_template_form_inherit_sf #: model_terms:ir.ui.view,arch_db:sf_manufacturing.view_mrp_production_workorder_tray_form_inherit_sf msgid "&nbsp;" msgstr "" +#. modules: sf_dlm, sf_tool_management +#: model_terms:ir.ui.view,arch_db:sf_dlm.view_product_template_form_inherit_sf +#: model_terms:ir.ui.view,arch_db:sf_tool_management.view_sf_tool_material_search_form +msgid "(mm)&nbsp;" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid ", " +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.bill_preview msgid "5.00" @@ -2347,6 +12590,11 @@ msgstr "供应商地址 :" msgid "Warehouse Address:" msgstr "仓库地址 :" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "@" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_kanban msgid "Actions" @@ -2384,6 +12632,11 @@ msgstr "清除全部" msgid "Description" msgstr "描述" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Directory" +msgstr "目录" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document msgid "Disc.%" @@ -2409,6 +12662,16 @@ msgstr "结算日期" msgid "Invoice Number" msgstr "结算单号码" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Module" +msgstr "模块" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Name" +msgstr "名称" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "New Entry" @@ -2419,13 +12682,18 @@ msgstr "新建分录" msgid "New Invoice" msgstr "新建结算单" -#. modules: account, stock, mrp +#. modules: stock, mrp, account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view #: model_terms:ir.ui.view,arch_db:mrp.stock_production_type_kanban #: model_terms:ir.ui.view,arch_db:stock.stock_picking_type_kanban msgid "New" msgstr "新建" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Object:" +msgstr "模型:" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "Operations" @@ -2441,6 +12709,11 @@ msgstr "" msgid "Orders" msgstr "订单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Other address for the company (e.g. subsidiary, ...)" +msgstr "公司的其他地址 (例如. 附属公司, ...)" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_kanban msgid "PLAN ORDERS" @@ -2456,10 +12729,26 @@ msgstr "包裹类型: " msgid "Payment" msgstr "付款" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document -msgid "Product" -msgstr "产品" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"Preferred address for all deliveries. Selected by default when you " +"deliver an order that belongs to this company." +msgstr "所有送货的首选地址。 当您交付属于该公司的订单时默认选中。" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"Preferred address for all invoices. Selected by default when you " +"invoice an order that belongs to this company." +msgstr "所有结算的首选地址。 当您为属于该公司的订单开具结算时默认选中。" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"Private addresses are only visible by authorized users and contain " +"sensitive data (employee home addresses, ...)." +msgstr "私人地址仅对授权用户可见,并且包含敏感数据(员工家庭住址……)。" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.stock_report_delivery_no_kit_section @@ -2471,10 +12760,9 @@ msgstr "产品与套件无关联" msgid "Products with no package assigned" msgstr "未分配包装的产品" -#. modules: account, stock_account +#. module: account #: model_terms:ir.ui.view,arch_db:account.bill_preview #: model_terms:ir.ui.view,arch_db:account.report_invoice_document -#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document msgid "Quantity" msgstr "数量" @@ -2488,7 +12776,7 @@ msgstr "编号" msgid "Remaining quantities not yet delivered:" msgstr "剩余的数量尚未交付。" -#. modules: maintenance, account, mrp +#. modules: maintenance, mrp, account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view #: model_terms:ir.ui.view,arch_db:maintenance.maintenance_team_kanban #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_kanban @@ -2500,11 +12788,6 @@ msgstr "报告" msgid "Requests" msgstr "请求" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document -msgid "SN/LN" -msgstr "批次号/序列号" - #. module: sale_management #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form msgid "Signature" @@ -2515,7 +12798,7 @@ msgstr "签名" msgid "Tax 0%" msgstr "税0%" -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.bill_preview #: model_terms:ir.ui.view,arch_db:account.report_invoice_document #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content @@ -2540,16 +12823,23 @@ msgstr "这是条款& 条件预览" msgid "Unit Price" msgstr "单价" -#. module: account -#: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view -msgid "Upload Invoices" -msgstr "上传结算单" - #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "Upload" msgstr "上传" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"Use this to organize the contact details of employees of a given " +"company (e.g. CEO, CFO, ...)." +msgstr "使用它来组织给定公司的员工(例如 CEO、CFO 等)的详细联系信息。" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Version" +msgstr "版本" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "View" @@ -2560,6 +12850,11 @@ msgstr "查看" msgid "WORK ORDERS" msgstr "工单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Web" +msgstr "网络" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_point_view_form_inherit_quality_control msgid "from " @@ -2595,7 +12890,7 @@ msgstr "来自:" msgid "Invoices" msgstr "结算单" -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document @@ -2645,11 +12940,26 @@ msgstr "到期金额" msgid "Amount" msgstr "不含税金额" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Apps" +msgstr "应用" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Attribute" +msgstr "属性" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_inventory msgid "Available Quantity" msgstr "可用数量" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "C" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content msgid "Confirmation Date:" @@ -2690,6 +13000,11 @@ msgstr "截止日期:
" msgid "Delivered" msgstr "已送达" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Dependencies :" +msgstr "依赖:" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.report_mrporder msgid "Description:
" @@ -2725,6 +13040,11 @@ msgstr "期间 (分)" msgid "Effectiveness Category: " msgstr "有效性类别: " +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_company_kanban +msgid "Email:" +msgstr "电子邮件地址:" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_statement msgid "Ending Balance" @@ -2750,6 +13070,27 @@ msgstr "完工产品:
" msgid "From" msgstr "来自" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Group" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Idx" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_show +msgid "" +"Important:\n" +" The key cannot be retrieved later and provides full access\n" +" to your user account, it is very important to store it securely." +msgstr "" +"重要提示:\n" +" 以后不能检索密钥并提供完全访问权限\n" +" 对于您的用户帐户,安全地存储它是非常重要的." + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document msgid "Incoterm: " @@ -2761,6 +13102,18 @@ msgstr "国际贸易术语解释通则:" msgid "Incoterm:" msgstr "国际贸易术语解释通则:" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Inherited" +msgstr "继承" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_layout +msgid "" +"Internal communication: Replying will post an internal " +"note. Followers won't receive any email notification." +msgstr "内部沟通: 回复将发布内部注释。 关注者将不会收到任何电子邮件通知。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.bill_preview #: model_terms:ir.ui.view,arch_db:account.report_invoice_document @@ -2772,14 +13125,18 @@ msgstr "结算日期:" msgid "Is a Blocking Reason? " msgstr "是阻塞原因? " +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Label" +msgstr "备注" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_inventory msgid "Location" msgstr "位置" -#. modules: quality_mrp_workorder, quality_control +#. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.worksheet_page -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.worksheet_page msgid "Lot/Serial Number : " msgstr "批次/序列号:" @@ -2794,11 +13151,6 @@ msgstr "批次/序列号码" msgid "Maintenance:" msgstr "维护:" -#. module: quality_mrp -#: model_terms:ir.ui.view,arch_db:quality_mrp.worksheet_page -msgid "Manufacturing Order : " -msgstr "制造订单 : " - #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_workorder msgid "Manufacturing Order:
" @@ -2814,11 +13166,21 @@ msgstr "最大数量 :" msgid "Measure : " msgstr "测量 : " +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Menu :" +msgstr "菜单:" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_stock_warehouse_orderpoint_kanban msgid "Min qty :" msgstr "最小数量 :" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Name" +msgstr "姓名" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.worksheet_page msgid "Notes : " @@ -2861,6 +13223,11 @@ msgstr "订单:" msgid "Ordered" msgstr "已订购" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_activity_done +msgid "Original note:" +msgstr "原始说明:" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_package_barcode msgid "Pack Date:" @@ -2876,6 +13243,22 @@ msgstr "包裹类型:" msgid "Package" msgstr "包裹" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_company_kanban +msgid "Phone:" +msgstr "电话:" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_company_kanban +msgid "Phone" +msgstr "电话" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.identity_check_wizard +msgid "" +"Please enter your password to confirm you own this account" +msgstr "请输入您的密码,确认您拥有此帐户" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.worksheet_page msgid "Product : " @@ -2931,22 +13314,37 @@ msgstr "待生产数量:
" msgid "Quantity" msgstr "数量" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "R" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_workcenter_productivity_loss_kanban msgid "Reason: " msgstr "原因: " -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content msgid "Receipt Date:" msgstr "收据日期:" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup +msgid "Recommended Activities" +msgstr "推荐活动" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document msgid "Reference:" msgstr "编号:" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Reports :" +msgstr "报告:" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content msgid "Request For Quotation Date:" @@ -2958,11 +13356,32 @@ msgstr "要求报价的日期:" msgid "Responsible:
" msgstr "负责人:
" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Ro" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Rq" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "" +"Save this page and come back here to set up the feature." +msgstr "保存 此页面并返回此处以设置该功能。" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_picking msgid "Scheduled Date:" msgstr "安排的日期 " +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Seq" +msgstr "序号" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_invoice_document msgid "Shipping Address:" @@ -2973,7 +13392,7 @@ msgstr "送货地址:" msgid "Shipping Date:" msgstr "发货日期:" -#. modules: purchase_stock, purchase +#. modules: purchase, purchase_stock #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document #: model_terms:ir.ui.view,arch_db:purchase_stock.report_purchaseorder_document @@ -3043,6 +13462,11 @@ msgstr "测试人: " msgid "Tested on : " msgstr "测试时间: " +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "The contact linked to this user is still active" +msgstr "关联该用户的联系人仍然处于启用状态" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.message_head msgid "The initial demand has been updated." @@ -3067,6 +13491,13 @@ msgstr "" "此币种已用于生成会计分录。
\n" " 现在更改其舍入因子不会更改对以前分录的舍入;可能导致与新的不一致。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade +msgid "" +"This operation will permanently erase all data currently stored by " +"the modules!" +msgstr "此操作将永久删除当前由模块存储的所有数据!" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order msgid "This purchase has been canceled." @@ -3077,12 +13508,22 @@ msgstr "此项采购已被取消。" msgid "To" msgstr "目的" +#. module: account +#: model_terms:ir.ui.view,arch_db:account.document_tax_totals +msgid "Total Rounded" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.bill_preview #: model_terms:ir.ui.view,arch_db:account.document_tax_totals msgid "Total" msgstr "总计" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Tr" +msgstr "" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_stock_track_confirmation msgid "Tracked product(s):" @@ -3098,6 +13539,16 @@ msgstr "转移 : " msgid "Type: " msgstr "类型:" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Type" +msgstr "类型" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "U" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom msgid "Unit Cost" @@ -3113,6 +13564,16 @@ msgstr "单价" msgid "Update Here" msgstr "在此更新" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "View :" +msgstr "视图:" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "W" +msgstr "" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.worksheet_page msgid "Warning : " @@ -3123,11 +13584,6 @@ msgstr "警告 : " msgid "Where do you want to send the products ?" msgstr "您要把产品发送到哪里?" -#. module: quality_mrp_workorder -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.worksheet_page -msgid "Work Order : " -msgstr "工单: " - #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.report_mrporder msgid "WorkCenter" @@ -3139,11 +13595,646 @@ msgstr "工作中心" msgid "Workcenter: " msgstr "工作中心:" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "XML ID" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document msgid "Your Order Reference:" msgstr "参考订单:" +#. module: sf_plan +#: model_terms:ir.ui.view,arch_db:sf_plan.sf_production_plan_gantt +msgid "名称:" +msgstr "" + +#. module: sf_plan +#: model_terms:ir.ui.view,arch_db:sf_plan.sf_production_plan_gantt +msgid "开始时间:" +msgstr "" + +#. module: sf_plan +#: model_terms:ir.ui.view,arch_db:sf_plan.sf_production_plan_gantt +msgid "数量:" +msgstr "" + +#. module: sf_plan +#: model_terms:ir.ui.view,arch_db:sf_plan.sf_production_plan_gantt +msgid "状态:" +msgstr "" + +#. module: sf_plan +#: model_terms:ir.ui.view,arch_db:sf_plan.sf_production_plan_gantt +msgid "结束时间:" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Fields" +msgstr "字段" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Security" +msgstr "安全" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Views" +msgstr "视图" + +#. module: base +#: model:ir.module.module,description:base.module_web_refresher +msgid "" +"=============\n" +"Web Refresher\n" +"=============\n" +"\n" +".. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +" !! This file is generated by oca-gen-addon-readme !!\n" +" !! changes will be overwritten. !!\n" +" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +"\n" +".. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n" +" :target: https://odoo-community.org/page/development-status\n" +" :alt: Beta\n" +".. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n" +" :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n" +" :alt: License: AGPL-3\n" +".. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n" +" :target: https://github.com/OCA/web/tree/16.0/web_refresher\n" +" :alt: OCA/web\n" +".. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n" +" :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_refresher\n" +" :alt: Translate me on Weblate\n" +".. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n" +" :target: https://runbot.odoo-community.org/runbot/162/16.0\n" +" :alt: Try me on Runbot\n" +"\n" +"|badge1| |badge2| |badge3| |badge4| |badge5| \n" +"\n" +"Adds a button next to the pager (in trees/kanban views) to refresh the displayed list.\n" +"\n" +".. image:: https://raw.githubusercontent.com/OCA/web/16.0/web_refresher/static/description/refresh.png\n" +"\n" +"**Table of contents**\n" +"\n" +".. contents::\n" +" :local:\n" +"\n" +"Bug Tracker\n" +"===========\n" +"\n" +"Bugs are tracked on `GitHub Issues `_.\n" +"In case of trouble, please check there if your issue has already been reported.\n" +"If you spotted it first, help us smashing it by providing a detailed and welcomed\n" +"`feedback `_.\n" +"\n" +"Do not contact contributors directly about support or help with technical issues.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Authors\n" +"~~~~~~~\n" +"\n" +"* Compassion Switzerland\n" +"\n" +"Contributors\n" +"~~~~~~~~~~~~\n" +"\n" +"* Samuel Fringeli\n" +"* `Tecnativa `__:\n" +"\n" +" * João Marques\n" +"\n" +"* Thanakrit Pintana\n" +"* `Factorlibre `__:\n" +"\n" +" * Hugo Santos\n" +"\n" +"Maintainers\n" +"~~~~~~~~~~~\n" +"\n" +"This module is maintained by the OCA.\n" +"\n" +".. image:: https://odoo-community.org/logo.png\n" +" :alt: Odoo Community Association\n" +" :target: https://odoo-community.org\n" +"\n" +"OCA, or the Odoo Community Association, is a nonprofit organization whose\n" +"mission is to support the collaborative development of Odoo features and\n" +"promote its widespread use.\n" +"\n" +"This module is part of the `OCA/web `_ project on GitHub.\n" +"\n" +"You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_password_security +msgid "" +"=================\n" +"Password Security\n" +"=================\n" +"\n" +".. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +" !! This file is generated by oca-gen-addon-readme !!\n" +" !! changes will be overwritten. !!\n" +" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +"\n" +".. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n" +" :target: https://odoo-community.org/page/development-status\n" +" :alt: Beta\n" +".. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png\n" +" :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html\n" +" :alt: License: LGPL-3\n" +".. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github\n" +" :target: https://github.com/OCA/server-auth/tree/15.0/password_security\n" +" :alt: OCA/server-auth\n" +".. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n" +" :target: https://translation.odoo-community.org/projects/server-auth-15-0/server-auth-15-0-password_security\n" +" :alt: Translate me on Weblate\n" +".. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n" +" :target: https://runbot.odoo-community.org/runbot/251/15.0\n" +" :alt: Try me on Runbot\n" +"\n" +"|badge1| |badge2| |badge3| |badge4| |badge5| \n" +"\n" +"This module allows admin to set company-level password security requirements\n" +"and enforces them on the user.\n" +"\n" +"It contains features such as\n" +"\n" +"* Password expiration days\n" +"* Password length requirement\n" +"* Password minimum number of lowercase letters\n" +"* Password minimum number of uppercase letters\n" +"* Password minimum number of numbers\n" +"* Password minimum number of special characters\n" +"* Password strength estimation\n" +"\n" +"**Table of contents**\n" +"\n" +".. contents::\n" +" :local:\n" +"\n" +"Configuration\n" +"=============\n" +"\n" +"Navigate to General Settings under Configuration\n" +"Scroll down to the ``Password Policy`` section\n" +"Set the policies to your liking.\n" +"\n" +"Password complexity requirements will be enforced upon next password change for\n" +"any user in that company.\n" +"\n" +"**Settings & Defaults**\n" +"\n" +"These are defined at the company level:\n" +"\n" +"===================== ======= ===================================================\n" +" Name Default Description\n" +"===================== ======= ===================================================\n" +" password_expiration 60 Days until passwords expire\n" +" password_length 12 Minimum number of characters in password\n" +" password_lower 0 Minimum number of lowercase letter in password\n" +" password_upper 0 Minimum number of uppercase letters in password\n" +" password_numeric 0 Minimum number of number in password\n" +" password_special 0 Minimum number of unique special character in password\n" +" password_history 30 Disallow reuse of this many previous passwords\n" +" password_minimum 24 Amount of hours that must pass until another reset\n" +" password_estimate 3 Required score for the strength estimation.\n" +"===================== ======= ===================================================\n" +"\n" +"Usage\n" +"=====\n" +"\n" +"Configure using above instructions for each company that should have password\n" +"security mandates.\n" +"\n" +"Bug Tracker\n" +"===========\n" +"\n" +"Bugs are tracked on `GitHub Issues `_.\n" +"In case of trouble, please check there if your issue has already been reported.\n" +"If you spotted it first, help us smashing it by providing a detailed and welcomed\n" +"`feedback `_.\n" +"\n" +"Do not contact contributors directly about support or help with technical issues.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Authors\n" +"~~~~~~~\n" +"\n" +"* LasLabs\n" +"* Kaushal Prajapati\n" +"* Tecnativa\n" +"* initOS GmbH\n" +"* Omar Nasr\n" +"\n" +"Contributors\n" +"~~~~~~~~~~~~\n" +"\n" +"* James Foster \n" +"* Dave Lasley \n" +"* Kaushal Prajapati \n" +"* Petar Najman \n" +"* Shepilov Vladislav \n" +"* Florian Kantelberg \n" +"* Dhara Solanki \n" +"\n" +"* `Open Source Integrators `_\n" +"\n" +" * Chandresh Thakkar \n" +" * Daniel Reis \n" +"\n" +"Maintainers\n" +"~~~~~~~~~~~\n" +"\n" +"This module is maintained by the OCA.\n" +"\n" +".. image:: https://odoo-community.org/logo.png\n" +" :alt: Odoo Community Association\n" +" :target: https://odoo-community.org\n" +"\n" +"OCA, or the Odoo Community Association, is a nonprofit organization whose\n" +"mission is to support the collaborative development of Odoo features and\n" +"promote its widespread use.\n" +"\n" +"This module is part of the `OCA/server-auth `_ project on GitHub.\n" +"\n" +"You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_sheet_full_width +msgid "" +"====================\n" +"Web Sheet Full Width\n" +"====================\n" +"\n" +".. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +" !! This file is generated by oca-gen-addon-readme !!\n" +" !! changes will be overwritten. !!\n" +" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +"\n" +".. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n" +" :target: https://odoo-community.org/page/development-status\n" +" :alt: Beta\n" +".. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n" +" :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n" +" :alt: License: AGPL-3\n" +".. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n" +" :target: https://github.com/OCA/web/tree/15.0/web_sheet_full_width\n" +" :alt: OCA/web\n" +".. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n" +" :target: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_sheet_full_width\n" +" :alt: Translate me on Weblate\n" +".. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n" +" :target: https://runbot.odoo-community.org/runbot/162/15.0\n" +" :alt: Try me on Runbot\n" +"\n" +"|badge1| |badge2| |badge3| |badge4| |badge5| \n" +"\n" +"This module was written to extend the functionality of the web client\n" +"to get full width in the form view sheet.\n" +"\n" +"This module works in community edition and in enterprise edition.\n" +"\n" +"This module feature and many other features and improvements to the web backend\n" +"are included in `web_responsive module `_.\n" +"Before installing this module, please consider Web Responsive as a better alternative.\n" +"\n" +"**Table of contents**\n" +"\n" +".. contents::\n" +" :local:\n" +"\n" +"Bug Tracker\n" +"===========\n" +"\n" +"Bugs are tracked on `GitHub Issues `_.\n" +"In case of trouble, please check there if your issue has already been reported.\n" +"If you spotted it first, help us smashing it by providing a detailed and welcomed\n" +"`feedback `_.\n" +"\n" +"Do not contact contributors directly about support or help with technical issues.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Authors\n" +"~~~~~~~\n" +"\n" +"* Therp BV\n" +"* Sudokeys\n" +"* GRAP\n" +"* Métal Sartigan\n" +"\n" +"Contributors\n" +"~~~~~~~~~~~~\n" +"\n" +"* Holger Brunn \n" +"* Nicolas JEUDY - Sudokeys (https://github.com/njeudy)\n" +"* Stephane (SOLIBRE) \n" +"* Sylvain LE GAL (https://twitter.com/legalsylvain)\n" +"* Jérôme Thériault \n" +"* Lois Rilo \n" +"\n" +"Maintainers\n" +"~~~~~~~~~~~\n" +"\n" +"This module is maintained by the OCA.\n" +"\n" +".. image:: https://odoo-community.org/logo.png\n" +" :alt: Odoo Community Association\n" +" :target: https://odoo-community.org\n" +"\n" +"OCA, or the Odoo Community Association, is a nonprofit organization whose\n" +"mission is to support the collaborative development of Odoo features and\n" +"promote its widespread use.\n" +"\n" +"This module is part of the `OCA/web `_ project on GitHub.\n" +"\n" +"You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_environment_ribbon +msgid "" +"======================\n" +"Web Environment Ribbon\n" +"======================\n" +"\n" +".. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +" !! This file is generated by oca-gen-addon-readme !!\n" +" !! changes will be overwritten. !!\n" +" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +"\n" +".. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n" +" :target: https://odoo-community.org/page/development-status\n" +" :alt: Beta\n" +".. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n" +" :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n" +" :alt: License: AGPL-3\n" +".. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n" +" :target: https://github.com/OCA/web/tree/16.0/web_environment_ribbon\n" +" :alt: OCA/web\n" +".. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n" +" :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_environment_ribbon\n" +" :alt: Translate me on Weblate\n" +".. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n" +" :target: https://runbot.odoo-community.org/runbot/162/16.0\n" +" :alt: Try me on Runbot\n" +"\n" +"|badge1| |badge2| |badge3| |badge4| |badge5| \n" +"\n" +"Mark a Test Environment with a red ribbon on the top left corner in every page\n" +"\n" +"**Table of contents**\n" +"\n" +".. contents::\n" +" :local:\n" +"\n" +"Configuration\n" +"=============\n" +"\n" +"* You can change the ribbon's name (\"TEST\") by editing the default system\n" +" parameter \"ribbon.name\" (in the menu Settings > Parameters > System\n" +" Parameters) To hide the ribbon, set this parameter to \"False\" or delete it.\n" +"* You can customize the ribbon color and background color through system\n" +" parameters: \"ribbon.color\", \"ribbon.background.color\". Fill with valid CSS\n" +" colors or just set to \"False\" to use default values.\n" +"* You can add the database name in the ribbon by adding \"{db_name}\" in the\n" +" system parameter \"ribbon.name\".\n" +"\n" +"Usage\n" +"=====\n" +"\n" +"To use this module, you need only to install it. After installation, a red\n" +"ribbon will be visible on top left corner of every Odoo backend page\n" +"\n" +"Bug Tracker\n" +"===========\n" +"\n" +"Bugs are tracked on `GitHub Issues `_.\n" +"In case of trouble, please check there if your issue has already been reported.\n" +"If you spotted it first, help us smashing it by providing a detailed and welcomed\n" +"`feedback `_.\n" +"\n" +"Do not contact contributors directly about support or help with technical issues.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Authors\n" +"~~~~~~~\n" +"\n" +"* Francesco OpenCode Apruzzese\n" +"* Tecnativa\n" +"\n" +"Contributors\n" +"~~~~~~~~~~~~\n" +"\n" +"* Francesco Apruzzese \n" +"* Javi Melendez \n" +"* Antonio Espinosa \n" +"* Thomas Binsfeld \n" +"* Xavier Jiménez \n" +"* Dennis Sluijk \n" +"* Eric Lembregts \n" +"\n" +"Maintainers\n" +"~~~~~~~~~~~\n" +"\n" +"This module is maintained by the OCA.\n" +"\n" +".. image:: https://odoo-community.org/logo.png\n" +" :alt: Odoo Community Association\n" +" :target: https://odoo-community.org\n" +"\n" +"OCA, or the Odoo Community Association, is a nonprofit organization whose\n" +"mission is to support the collaborative development of Odoo features and\n" +"promote its widespread use.\n" +"\n" +"This module is part of the `OCA/web `_ project on GitHub.\n" +"\n" +"You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_mx_edi_landing +msgid "" +"==========================================\n" +"Odoo Mexico Localization for Stock/Landing\n" +"==========================================\n" +"\n" +"This module extends the functionality of Mexican localization to support\n" +"customs numbers related with landed costs when you generate the electronic\n" +"invoice.\n" +"\n" +"Usage\n" +"=====\n" +"\n" +"To use this module, you need to:\n" +"\n" +"* Generate a new purchase order for a product from abroad. Landed costs are\n" +" only possible for products configured with 'automated' valuation with\n" +" 'FIFO' costing method. The costing method is configured in the product\n" +" category.\n" +"\n" +".. figure:: static/description/purchase_order_new.png\n" +"\n" +"* Receive the product of the purchase order\n" +"\n" +".. figure:: static/description/picking_done_purchase.png\n" +"\n" +"* Go to Inventory -> Inventory control -> Landed Cost\n" +"\n" +"* Create a new landed cost indicating the picking of the purchase order\n" +" and the number of the customs information (pedimento). Landed costs are\n" +" only possible for products configured in real time valuation with real\n" +" price costing method. The costing method is configured on the product\n" +" category\n" +"\n" +".. figure:: static/description/landed_cost_picking.png\n" +"\n" +"* Start by creating specific products to indicate your various Landed\n" +" Costs, such as freight, insurance or custom duties.\n" +"\n" +" Go to Inventory -> Configuration -> Landed Cost types. Landed costs are\n" +" only possible for products configured in real time valuation with real\n" +" price costing method. The costing method is configured on the product\n" +" category.\n" +"\n" +".. figure:: static/description/product_landed_cost.png\n" +"\n" +"* Click the Compute button to see how the landed costs will be split across\n" +" the picking lines.\n" +"\n" +".. figure:: static/description/compute_landed_cost.png\n" +"\n" +"* To confirm the landed costs attribution, click on the Validate button.\n" +"\n" +".. figure:: static/description/validate_landed_cost.png\n" +"\n" +"* Create a sales order for the product purchased from abroad\n" +"\n" +".. figure:: static/description/sale_order_new.png\n" +"\n" +"* Delivery the product related to the sales order\n" +"\n" +".. figure:: static/description/picking_done_sale.png\n" +"\n" +"* Create and validate a new invoice associated with the sales order\n" +"\n" +".. figure:: static/description/validate_invoice_customs.png\n" +"\n" +"* The customs information is found in the lines of the invoice associated\n" +" with each product.\n" +"\n" +".. figure:: static/description/invoice_custom_pedimento.png\n" +"\n" +"* Check the electronic invoice associated with the product where the node\n" +" of the customs information is displayed\n" +"\n" +".. figure:: static/description/invoice_custom_xml.png\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_copy_confirm +msgid "" +"=================================================\n" +"Show confirmation dialogue before copying records\n" +"=================================================\n" +"\n" +".. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +" !! This file is generated by oca-gen-addon-readme !!\n" +" !! changes will be overwritten. !!\n" +" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" +"\n" +".. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n" +" :target: https://odoo-community.org/page/development-status\n" +" :alt: Beta\n" +".. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n" +" :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n" +" :alt: License: AGPL-3\n" +".. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github\n" +" :target: https://github.com/OCA/web/tree/15.0/web_copy_confirm\n" +" :alt: OCA/web\n" +".. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n" +" :target: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_copy_confirm\n" +" :alt: Translate me on Weblate\n" +".. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n" +" :target: https://runbot.odoo-community.org/runbot/162/15.0\n" +" :alt: Try me on Runbot\n" +"\n" +"|badge1| |badge2| |badge3| |badge4| |badge5| \n" +"\n" +"This module will show a confirmation dialog when the user selects the\n" +"`Duplicate` option from the `Action` dropdown in the standard form view.\n" +"\n" +"**Table of contents**\n" +"\n" +".. contents::\n" +" :local:\n" +"\n" +"Changelog\n" +"=========\n" +"\n" +"14.0.1.0.0 (2020-01-04)\n" +"~~~~~~~~~~~~~~~~~~~~~~~\n" +"* [PORT] Ported to V14\n" +"\n" +"Bug Tracker\n" +"===========\n" +"\n" +"Bugs are tracked on `GitHub Issues `_.\n" +"In case of trouble, please check there if your issue has already been reported.\n" +"If you spotted it first, help us smashing it by providing a detailed and welcomed\n" +"`feedback `_.\n" +"\n" +"Do not contact contributors directly about support or help with technical issues.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Authors\n" +"~~~~~~~\n" +"\n" +"* Dynapps\n" +"* YiZuo \n" +"\n" +"Contributors\n" +"~~~~~~~~~~~~\n" +"\n" +"* Stefan Rijnhart \n" +"* Robin Conjour \n" +"* PengYB \n" +"\n" +"Maintainers\n" +"~~~~~~~~~~~\n" +"\n" +"This module is maintained by the OCA.\n" +"\n" +".. image:: https://odoo-community.org/logo.png\n" +" :alt: Odoo Community Association\n" +" :target: https://odoo-community.org\n" +"\n" +"OCA, or the Odoo Community Association, is a nonprofit organization whose\n" +"mission is to support the collaborative development of Odoo features and\n" +"promote its widespread use.\n" +"\n" +"This module is part of the `OCA/web `_ project on GitHub.\n" +"\n" +"You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n" +msgstr "" + #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.stock_warn_insufficient_qty_unbuild_form_view #: model_terms:ir.ui.view,arch_db:stock.stock_warn_insufficient_qty_scrap_form_view @@ -3151,11 +14242,25 @@ msgid "? This may lead to inconsistencies in your inventory." msgstr "?这可能会导致库存不一致。" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "@From: %(email)s" msgstr "" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_A +msgid "A - AGRICULTURE, FORESTRY AND FISHING" +msgstr "A - 农业、林业和渔业" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "A can only contains nodes, found a <%s>" +msgstr "一个 只包含 节点,找到了一个 <%s>" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_form_view msgid "A BoM of type kit is used to split the product into its components." @@ -3169,13 +14274,40 @@ msgid "" " payments on a daily basis." msgstr "收银机允许您管理现金日记帐中的现金分录。此功能提供了一种简单的方法来跟踪每天的现金付款。" +#. module: base +#: model:ir.module.module,summary:base.module_payment_adyen +msgid "A Dutch payment provider covering Europe and the US." +msgstr "一家覆盖欧洲和美国的荷兰付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_mollie +msgid "A Dutch payment provider covering several European countries." +msgstr "一家覆盖多个欧洲国家的荷兰付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_buckaroo +msgid "A Dutch payment provider covering several countries in Europe." +msgstr "一家覆盖多个欧洲国家的荷兰付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_sips +msgid "A French payment provider for online payments all over the world." +msgstr "一家法国付款服务提供商,在全球范围内提供在线付款服务。" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workorder.py:0 #, python-format msgid "A Manufacturing Order is already done or cancelled." msgstr "制造订单已经完成或者被取消." -#. modules: quality, maintenance +#. module: base +#: model:ir.module.module,summary:base.module_payment_flutterwave +msgid "A Nigerian payment provider covering several African countries." +msgstr "一家覆盖多个非洲国家的尼日利亚付款服务提供商。" + +#. modules: mail, maintenance, quality +#: model:ir.model.fields,help:mail.field_mail_alias__alias_defaults #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_defaults #: model:ir.model.fields,help:quality.field_quality_alert_team__alias_defaults msgid "" @@ -3183,7 +14315,15 @@ msgid "" "creating new records for this alias." msgstr "为该别名创建新记录时,将对其进行评估以提供默认值的Python字典。" +#. module: base +#: model:ir.module.module,description:base.module_website_slides_forum +msgid "" +"A Slide channel can be linked to forum. Also, profiles from slide and forum " +"are regrouped together" +msgstr "滚动频道可以连结到论坛. 此外,幻灯片和论坛中的配置重新组合在一起" + #. module: account +#. odoo-python #: code:addons/account/models/res_partner_bank.py:0 #, python-format msgid "A bank account can belong to only one journal." @@ -3204,18 +14344,72 @@ msgstr "" msgid "A barcode can only be assigned to one package type !" msgstr "一个条码只能分配给一个包裹类型 !" +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_bus_presence_partner_or_guest_exists +msgid "A bus presence must have a user or a guest." +msgstr "总线必须存在用户或者游客." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "A button (blood type)" +msgstr "A按钮(血型)" + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_channel_member_partner_or_guest_exists +msgid "A channel member must be a partner or a guest." +msgstr "频道成员必须是合作伙伴或游客." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "A channel of type 'chat' cannot have more than two users." +msgstr "“聊天”类型的频道不能有两个以上的用户." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"A chat should not be created with more than 2 persons. Create a group " +"instead." +msgstr "不能同时和2个人以上一起聊天。请创建一个聊天组。" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move_line.py:0 #, python-format msgid "A done move line should never have a reserved quantity." msgstr "完成的调拨行将永远不能有预留数量" #. module: account +#. odoo-python #: code:addons/account/models/partner.py:0 #, python-format msgid "A fiscal position with a foreign VAT already exists in this region." msgstr "该地区已经存在外国增值税的财政状况。" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_groups +msgid "" +"A group is a set of functional areas that will be assigned to the user in " +"order to give them access and rights to specific applications and tasks in " +"the system. You can create custom groups or edit the ones existing by " +"default in order to customize the view of the menu that users will be able " +"to see. Whether they can have a read, write, create and delete access right " +"can be managed from here." +msgstr "" +"用户组用于把一系列功能配置给用户,使其能够访问特定的模块和功能. " +"可以新建或修改现有的用户组,这样就可以自定该组用户的菜单,或者对某个对象的增删改查权利." + +#. module: base +#: model:ir.module.module,summary:base.module_hw_posbox_homepage +msgid "A homepage for the IoT Box" +msgstr "物联网IoT Box的主页" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_move_journal_line msgid "" @@ -3238,18 +14432,161 @@ msgstr "" " 的交易事项会计数据." #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "A line cannot have both children and a groupby value (line '%s')." msgstr "一行不能同时包含子项和 groupby 值(行“%s”)。" #. module: account +#. odoo-python +#: code:addons/account/models/account_move.py:0 +#, python-format +msgid "A line of this move is using a deprecated account, you cannot post it." +msgstr "此凭证的一个明细正在使用已弃用的科目,您不能过帐它." + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_message_reaction_partner_or_guest_exists +msgid "A message reaction must be from a partner or from a guest." +msgstr "信息反应必须来自业务伙伴或游客。" + +#. module: base +#: model:ir.module.module,description:base.module_test_exceptions +#: model:ir.module.module,description:base.module_test_mimetypes +msgid "A module to generate exceptions." +msgstr "创建异常的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_http +msgid "A module to test HTTP" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_test_lint +msgid "A module to test Odoo code with various linters." +msgstr "使用各种 linter 测试 Odoo 代码的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_impex +msgid "A module to test import/export." +msgstr "测试导入/导出的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_populate +msgid "A module to test populate." +msgstr "用于测试填充的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_new_api +msgid "A module to test the API." +msgstr "测试 API 的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_rpc +msgid "A module to test the RPC requests." +msgstr "用于测试 RPC 请求的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_uninstall +msgid "A module to test the uninstall feature." +msgstr "测试卸载功能的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_translation_import +msgid "A module to test translation import." +msgstr "测试翻译导入的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_xlsx_export +msgid "A module to test xlsx export." +msgstr "一个用于测试 xlsx 导出的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_assetsbundle +msgid "A module to verify the Assets Bundle mechanism." +msgstr "验证资产打包机制的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_inherit_depends +msgid "A module to verify the inheritance using _inherit across modules." +msgstr "继承using_inherit跨模块验证的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_inherits_depends +msgid "" +"A module to verify the inheritance using _inherits in non-original modules." +msgstr "在非原始模块中使用 _inherits 验证继承的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_inherits +msgid "A module to verify the inheritance using _inherits." +msgstr "测试继承using _inherits的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_inherit +msgid "A module to verify the inheritance." +msgstr "测试继承的模块." + +#. module: base +#: model:ir.module.module,description:base.module_test_limits +msgid "A module with dummy methods." +msgstr "具有仿真方法的模块." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_actions_server.py:0 +#, python-format +msgid "A next activity can only be planned on models that use activities." +msgstr "只能在使用活动的模型上计划下一个活动。" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"A partner with the same Company " +"Registry already exists (" +msgstr "已存在具有相同 公司注册 的合作伙伴(" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "" +"A partner with the same Tax " +"ID already exists (" +msgstr "已存在具有相同 税号 的合作伙伴 (" + +#. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "A payment must always belongs to a bank or cash journal." -msgstr "付款必须始终属于银行或现金日记帐。" +msgstr "支付必须始终属于银行或现金日记帐。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_razorpay +msgid "A payment provider covering India." +msgstr "一家覆盖印度的付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_mercado_pago +msgid "A payment provider covering several countries in Latin America." +msgstr "一家覆盖拉丁美洲多个国家的付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_custom +msgid "A payment provider for custom flows like wire transfers." +msgstr "一家提供电汇等自定义流程的付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_sepa_direct_debit +msgid "A payment provider for enabling Sepa Direct Debit in the EU." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_demo +msgid "A payment provider for running fake payment flows for demo purposes." +msgstr "一家为演示目的运行假支付流的付款服务提供商。" #. module: account +#. odoo-python #: code:addons/account/models/account_reconcile_model.py:0 #, python-format msgid "" @@ -3258,13 +14595,25 @@ msgid "" msgstr "定义为百分比的付款容差应始终介于0和100之间" #. module: account +#. odoo-python #: code:addons/account/models/account_reconcile_model.py:0 #, python-format msgid "" "A payment tolerance defined as an amount should always be higher than 0" msgstr "定义为金额的付款容差应始终大于0" +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#, python-format +msgid "" +"A product tracked by serial numbers can't have multiple quantities for the " +"same serial number." +msgstr "一个由序列号追踪的产品,不能有多个产品共用一个序列号。" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #, python-format msgid "" @@ -3294,16 +14643,18 @@ msgid "" msgstr "如果您的价格是含税的,则建议每行取整。通过这种方式,所有的行数之和等于加了税的总和." #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "A sample email has been sent to %s." msgstr "一封电邮已发送到%s." #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "A second payment has been created: %s" -msgstr "已创建第二笔付款:%s" +msgstr "已创建第二笔支付:%s" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form @@ -3311,7 +14662,30 @@ msgid "" "A second payment will be created automatically in the destination journal." msgstr "第二笔付款将在目的日记账中自动创建。" -#. modules: purchase, stock +#. module: mail +#: model_terms:ir.actions.act_window,help:mail.mail_shortcode_action +msgid "" +"A shortcode is a keyboard shortcut. For instance, you type #gm and it will " +"be transformed into \"Good Morning\"." +msgstr "短码是一种输入快捷方式。例如,您键入 #gm,它将变成\"Good Morning\"。" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "在文件中只找到一列,这通常意味着文件分隔符不正确" + +#. module: account +#. odoo-python +#: code:addons/account/models/account_bank_statement.py:0 +#, python-format +msgid "A statement should only contain lines from the same journal." +msgstr "对账单应只包含来自同一日记账的行。" + +#. modules: stock, purchase #: model:ir.model.fields,help:purchase.field_purchase_order_line__product_type #: model:ir.model.fields,help:stock.field_product_product__detailed_type #: model:ir.model.fields,help:stock.field_product_template__detailed_type @@ -3330,15 +14704,13 @@ msgstr "" msgid "A tax fiscal position could be defined only one time on same taxes." msgstr "一种税只能定义一个财政状况" -#. module: account -#: code:addons/account/models/account_tax.py:0 -#, python-format -msgid "" -"A tax should only use tags from its country. You should use another tax and " -"a fiscal position if you wish to uses the tags from foreign tax reports." -msgstr "税收应该只使用来自其国家的标签。如果您希望使用外国税务报告中的标签,则应使用其他税务和财政状况。" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__exclude_contact +msgid "A user associated to the contact" +msgstr "与系统用户相关的联系人" #. module: account +#. odoo-python #: code:addons/account/models/res_users.py:0 #, python-format msgid "" @@ -3352,6 +14724,26 @@ msgstr "" "“含税”或“不含税”模式\n" "(如果您已经处于所需模式中,请将模式切换两次)。" +#. module: base +#: model:ir.module.category,description:base.module_category_human_resources_appraisals +msgid "" +"A user without any rights on Appraisals will be able to see the application," +" create and manage appraisals for himself and the people he's manager of." +msgstr "对评估没有任何权限的用户将能够查看应用程序,为自己和他的经理创建和管理评估。" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "A valid email is required for find_or_create to work properly." +msgstr "需要有效的电子邮件 find_or_create 才能正常工作." + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_res_users_settings_volumes_partner_or_guest_exists +msgid "A volume setting must have a partner or a guest." +msgstr "音量设置必须有业务合作伙伴或游客。" + #. module: account #: model:res.groups,name:account.group_warning_account msgid "A warning can be set on a partner (Account)" @@ -3367,6 +14759,158 @@ msgstr "警告消息可以针对合作伙伴设置(库存)" msgid "A warning can be set on a product or a customer (Purchase)" msgstr "可基于产品或客户进行报警设置(采购)" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a0 +msgid "A0 5 841 x 1189 mm" +msgstr "A0 5 841 x 1189 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a1 +msgid "A1 6 594 x 841 mm" +msgstr "A1 6 594 x 841 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a2 +msgid "A2 7 420 x 594 mm" +msgstr "A2 7 420 x 594 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a3 +msgid "A3 8 297 x 420 mm" +msgstr "A3 8 297 x 420 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a4 +msgid "A4 0 210 x 297 mm, 8.26 x 11.69 inches" +msgstr "A4 0 210 x 297 毫米, 8.26 x 11.69 英寸" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a5 +msgid "A5 9 148 x 210 mm" +msgstr "A5 9 148 x 210 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a6 +msgid "A6 10 105 x 148 mm" +msgstr "A6 10 105 x 148 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a7 +msgid "A7 11 74 x 105 mm" +msgstr "A7 11 74 x 105 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a8 +msgid "A8 12 52 x 74 mm" +msgstr "A8 12 52 x 74 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__a9 +msgid "A9 13 37 x 52 mm" +msgstr "A9 13 37 x 52 毫米" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "AB" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "AB button (blood type)" +msgstr "AB按钮(血型)" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_au_aba +msgid "ABA Credit Transfer" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ABCD" +msgstr "" + +#. module: base +#: model:res.country,vat_label:base.au +msgid "ABN" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "AM" +msgstr "上午" + +#. module: base +#: model:ir.model,name:base.model_res_users_apikeys_description +msgid "API Key Description" +msgstr "API密钥说明" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "API Key Ready" +msgstr "API 密钥就绪" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_keys_description +msgid "API Key: description input wizard" +msgstr "API Key: 描述输入向导" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__api_key_ids +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "API Keys" +msgstr "API密钥" + +#. module: base +#: model:ir.actions.act_window,name:base.action_apikeys_admin +msgid "API Keys Listing" +msgstr "API 密钥列表" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "" +"API Keys are used to connect to Odoo from external tools without the need " +"for a password or Two-factor Authentication." +msgstr "API密钥用于将外部工具连接至Odoo,无需密码或双因素身份验证。" + +#. module: base +#. odoo-python +#: code:addons/fields.py:0 +#, python-format +msgid "ASCII characters are required for %s in %s" +msgstr "需要ASCII字符 %s在 %s" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ATM" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ATM sign" +msgstr "ATM标志" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner_title__shortcut +msgid "Abbreviation" +msgstr "简称" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "" @@ -3374,7 +14918,11 @@ msgid "" "that is a multiple of the number of units per package." msgstr "能够在采购订单中选择包装类型,并强制要求数量为每包单位数的倍数。" -#. module: purchase +#. modules: mail, purchase +#. odoo-python +#. odoo-javascript +#: code:addons/mail/static/src/components/call_invite_request_popup/call_invite_request_popup.xml:0 +#: code:addons/mail/static/src/components/call_invite_request_popup/call_invite_request_popup.xml:0 #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "Accept" @@ -3385,17 +14933,110 @@ msgstr "接受" msgid "Accept Emails From" msgstr "接收邮件来自" -#. module: account -#: model:ir.model,name:account.model_res_groups -msgid "Access Groups" -msgstr "访问用户组" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__user_ids +msgid "Accepted Users" +msgstr "接受的用户" -#. module: mrp +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model__access_ids +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_form +msgid "Access" +msgstr "访问" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_groups__model_access +msgid "Access Controls" +msgstr "访问控制" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Access Denied" +msgstr "访问被拒绝" + +#. module: mail +#: model:ir.model,name:mail.model_res_groups +msgid "Access Groups" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_groups__menu_access +msgid "Access Menu" +msgstr "访问菜单" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +#: model:res.groups,name:base.group_erp_manager +#: model_terms:ir.ui.view,arch_db:base.edit_menu_access +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_form +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_tree +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_tree_edition +#: model_terms:ir.ui.view,arch_db:base.view_groups_form +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +#: model_terms:ir.ui.view,arch_db:base.view_users_form +#: model_terms:ir.ui.view,arch_db:base.view_users_simple_form +#: model_terms:ir.ui.view,arch_db:base.view_view_form +#, python-format +msgid "Access Rights" +msgstr "访问权限" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.user_groups_view +msgid "Access Rights Mismatch" +msgstr "" + +#. modules: mail, base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__access_token +#: model:ir.model.fields,field_description:mail.field_mail_guest__access_token #: model:ir.model.fields,field_description:mrp.field_mrp_document__access_token msgid "Access Token" msgstr "访问令牌" -#. modules: account, purchase +#. module: base +#: model:ir.module.module,summary:base.module_documents_hr +msgid "Access documents from the employee profile" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_invitation_form.js:0 +#: code:addons/mail/static/src/models/thread.js:0 +#, python-format +msgid "Access restricted to group \"%(groupFullName)s\"" +msgstr "仅限于用户组“%(groupFullName)s”使用" + +#. module: base +#: model:ir.module.module,summary:base.module_website_profile +msgid "Access the website profile of the users" +msgstr "访问用户的网站资料" + +#. module: base +#: model:res.groups,name:base.group_private_addresses +msgid "Access to Private Addresses" +msgstr "访问私人地址" + +#. module: base +#: model:res.groups,name:base.group_allow_export +msgid "Access to export feature" +msgstr "导出" + +#. module: base +#. odoo-python +#: code:addons/api.py:0 code:addons/api.py:0 +#, python-format +msgid "Access to unauthorized or invalid companies." +msgstr "访问未经授权或无效的公司." + +#. modules: purchase, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__access_warning #: model:ir.model.fields,field_description:account.field_account_move__access_warning #: model:ir.model.fields,field_description:account.field_account_payment__access_warning @@ -3420,6 +15061,7 @@ msgstr "" " - 库存移动:数量通过已确定取货\n" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #: code:addons/account/wizard/accrued_orders.py:0 #: model:ir.model,name:account.model_account_account @@ -3436,28 +15078,69 @@ msgid "Account" msgstr "账户" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "" "Account %s does not allow reconciliation. First change the configuration of " "this account to allow it." -msgstr "帐户%s不允许对帐。首先更改此帐户的配置以允许它。" +msgstr "科目%s不允许对帐。首先更改此科目的配置以允许它。" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_auto_transfer +msgid "Account Automatic Transfers" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_generic_auto_transfer_demo +msgid "Account Automatic Transfers Demo Data" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_account_avatax +msgid "Account Avatax - Ecommerce" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_bank_statement_import +msgid "Account Bank Statement Import" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_accountant_batch_payment +msgid "Account Batch Payment Reconciliation" +msgstr "" #. module: account #: model:ir.model,name:account.model_account_cash_rounding msgid "Account Cash Rounding" msgstr "账户现金舍入" -#. module: stock_account -#: model:ir.model,name:stock_account.model_account_chart_template +#. module: account +#: model:ir.model,name:account.model_account_chart_template msgid "Account Chart Template" msgstr "科目表模版" +#. module: base +#: model:ir.module.category,name:base.module_category_accounting_localizations_account_charts +msgid "Account Charts" +msgstr "科目表" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_line__account_codes_formula msgid "Account Codes Formula Shortcut" msgstr "帐户代码公式快捷方式" +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_us_consolidation_demo +msgid "Account Consolidation Demo Data" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_be_us_consolidation_demo +msgid "Account Consolidation Demo Data using a Belgium and a US company" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__currency_id #: model:ir.model.fields,field_description:account.field_account_account_template__currency_id @@ -3487,24 +15170,35 @@ msgid "Account Groups" msgstr "科目组" #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #, python-format msgid "Account Groups with the same granularity can't overlap" msgstr "具有相同单位的帐户组不能重叠" -#. module: account +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_journal__company_partner_id #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__partner_id -#: model:ir.model.fields,field_description:account.field_res_partner_bank__partner_id +#: model:ir.model.fields,field_description:base.field_res_partner_bank__partner_id msgid "Account Holder" msgstr "账户持有人" -#. module: account +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__acc_holder_name -#: model:ir.model.fields,field_description:account.field_res_partner_bank__acc_holder_name +#: model:ir.model.fields,field_description:base.field_res_partner_bank__acc_holder_name msgid "Account Holder Name" msgstr "账户持有人名称" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_invoice_extract +msgid "Account Invoice Extract" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_invoice_extract_purchase +msgid "Account Invoice Extract Purchase" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_invoice_send msgid "Account Invoice Send" @@ -3530,11 +15224,6 @@ msgstr "会计日记账组" msgid "Account Mapping" msgstr "账户映射" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids -msgid "Account Move" -msgstr "会计凭证" - #. module: account #: model:ir.model,name:account.model_account_move_reversal msgid "Account Move Reversal" @@ -3546,10 +15235,10 @@ msgstr "会计凭证冲销" msgid "Account Name" msgstr "科目名称" -#. module: account +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_journal__bank_acc_number #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__acc_number -#: model:ir.model.fields,field_description:account.field_res_partner_bank__acc_number +#: model:ir.model.fields,field_description:base.field_res_partner_bank__acc_number #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Account Number" msgstr "科目编码" @@ -3586,6 +15275,11 @@ msgstr "帐户核对" msgid "Account Root" msgstr "账户根" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "Account Security" +msgstr "帐户安全" + #. module: account #: model:ir.model.fields,field_description:account.field_account_fiscal_position_account_template__account_src_id msgid "Account Source" @@ -3598,11 +15292,6 @@ msgstr "科目来源" msgid "Account Statistics" msgstr "科目统计" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form -msgid "Account Stock Properties" -msgstr "会计库存属性" - #. module: account #: model:ir.model,name:account.model_account_account_tag msgid "Account Tag" @@ -3633,11 +15322,32 @@ msgstr "科目税组" msgid "Account Tax Template" msgstr "会计税模板" -#. module: account +#. modules: base, account #: model:ir.model.fields,field_description:account.field_res_config_settings__module_account_taxcloud +#: model:ir.module.module,shortdesc:base.module_account_taxcloud msgid "Account TaxCloud" msgstr "科目税云同步" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_account_taxcloud +msgid "Account TaxCloud - Ecommerce" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_account_taxcloud +msgid "Account TaxCloud - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_loyalty_taxcloud +msgid "Account Taxcloud - Sale (loyalty)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_loyalty_taxcloud_delivery +msgid "Account Taxcloud - Sale (loyalty) - Delivery" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__property_stock_valuation_account_id #: model:ir.model.fields,field_description:account.field_res_company__property_stock_valuation_account_id @@ -3669,6 +15379,11 @@ msgstr "科目类型" msgid "Account Unreconcile" msgstr "会计取消调节" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_winbooks_import +msgid "Account Winbooks Import" +msgstr "" + #. module: account #: model:ir.model,name:account.model_account_root msgid "Account codes first 2 digits" @@ -3697,9 +15412,9 @@ msgstr "科目组" msgid "Account groups" msgstr "科目组" -#. module: account +#. modules: base, account #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__acc_holder_name -#: model:ir.model.fields,help:account.field_res_partner_bank__acc_holder_name +#: model:ir.model.fields,help:base.field_res_partner_bank__acc_holder_name msgid "" "Account holder name, in case it is different than the name of the Account " "Holder" @@ -3793,32 +15508,52 @@ msgstr "有分录的科目" #. module: account #: model:ir.actions.server,name:account.ir_cron_auto_post_draft_entry_ir_actions_server #: model:ir.cron,cron_name:account.ir_cron_auto_post_draft_entry -#: model:ir.cron,name:account.ir_cron_auto_post_draft_entry msgid "" "Account: Post draft entries with auto_post enabled and accounting date up to" " today" msgstr "帐户:在启用 auto_post 且会计日期到今天的情况下发布草稿条目" -#. module: account +#. modules: base, account #: model:ir.model.fields,field_description:account.field_res_config_settings__module_account_accountant +#: model:ir.module.category,name:base.module_category_accounting +#: model:ir.module.module,shortdesc:base.module_account_accountant #: model:ir.ui.menu,name:account.account_account_menu #: model:ir.ui.menu,name:account.menu_finance_entries #: model_terms:ir.ui.view,arch_db:account.product_template_form_view #: model_terms:ir.ui.view,arch_db:account.view_account_analytic_line_form_inherit_account #: model_terms:ir.ui.view,arch_db:account.view_account_form #: model_terms:ir.ui.view,arch_db:account.view_move_form +#: model_terms:ir.ui.view,arch_db:base.user_groups_view msgid "Accounting" msgstr "会计" +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_account +#: model:ir.module.module,shortdesc:base.module_mrp_account_enterprise +msgid "Accounting - MRP" +msgstr "会计 - MRP" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_account_enterprise +msgid "Accounting - MRP Subcontracting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_timesheet_account_budget +msgid "Accounting Budget Sale Timesheet" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_test +msgid "Accounting Consistency Tests" +msgstr "会计一致性测试" + #. module: account #: model:ir.actions.act_window,name:account.open_account_journal_dashboard_kanban msgid "Accounting Dashboard" msgstr "会计仪表板" -#. modules: account, stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date -#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__accounting_date -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +#. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter #: model_terms:ir.ui.view,arch_db:account.view_invoice_tree #: model_terms:ir.ui.view,arch_db:account.view_move_form @@ -3830,9 +15565,8 @@ msgstr "会计日期" msgid "Accounting Documents" msgstr "会计文档" -#. modules: account, stock_account +#. module: account #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form -#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit msgid "Accounting Entries" msgstr "会计分录" @@ -3841,13 +15575,18 @@ msgstr "会计分录" msgid "Accounting Firms mode" msgstr "会计师事务所模式" -#. modules: account, stock_account +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_base_import +msgid "Accounting Import" +msgstr "" + +#. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form -#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit msgid "Accounting Information" msgstr "会计信息" #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #: model_terms:ir.ui.view,arch_db:account.onboarding_fiscal_year_step #, python-format @@ -3879,16 +15618,76 @@ msgstr "会计报告外部价值" msgid "Accounting Report Line" msgstr "会计报告行" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_reports +msgid "Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_reports_tax_reminder +msgid "Accounting Reports Tax Reminder" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_sequence +msgid "Accounting Sequence" +msgstr "会计顺序" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_latam_account_sequence +msgid "Accounting Sequence - Latam Documents" +msgstr "会计顺序-Latam文件" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_timesheet_account_budget +msgid "Accounting budget sale timesheet" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_nl +msgid "" +"Accounting chart for Netherlands\n" +"================================\n" +"\n" +"This module is specially made to manage the accounting functionality\n" +"according to the Dutch best practice.\n" +"\n" +"This module contains the Dutch Chart of Accounts and the VAT schema.\n" +"This schema is made for the most common Companies and therefore suitable\n" +"to be used for almost every Company.\n" +"\n" +"The VAT accounts are linked promptly to generate the required reports. Examples\n" +"of this reports intercommunitaire transactions.\n" +"\n" +"After installation of this module the configuration will be activated.\n" +"Select the Chart of Accounts named \"Netherlands - Accounting\".\n" +"\n" +"Hereafter entering the name of the Company, total digits of Chart of Accounts,\n" +"Bank Account Number and the default Currency.\n" +"\n" +"Note: total digits configured by default are 6.\n" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Accounting firm mode will change invoice/bill encoding:" msgstr "会计师事务所模式将更改发票/账单编码:" +#. module: base +#: model:ir.module.module,description:base.module_l10n_br_reports +msgid "Accounting reports for Brazil" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form msgid "Accounting-related settings are managed on" msgstr "管理与会计相关的设置" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_fleet +msgid "Accounting/Fleet bridge" +msgstr "会计/车队 桥接" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account_tag__applicability__accounts #: model_terms:ir.ui.view,arch_db:account.view_account_search @@ -3921,12 +15720,14 @@ msgid "Accrual Account" msgstr "应计科目" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "Accrual Moves" msgstr "应计凭证" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "" @@ -3935,6 +15736,7 @@ msgid "" msgstr "应计条目创建于 %(date)s:%(accrual_entry)s。及其反向条目:%(reverse_entry)s。" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "Accrued %s entry as of %s" @@ -3956,25 +15758,71 @@ msgid "Accrued Orders Wizard" msgstr "应计订单向导" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "Accrued total" msgstr "应计总额" -#. module: maintenance -#: model:maintenance.equipment,name:maintenance.equipment_computer3 -#: model:maintenance.equipment,name:maintenance.equipment_computer5 -msgid "Acer Laptop" -msgstr "宏基笔记本电脑" - -#. modules: account, stock +#. modules: stock, mail, base, account #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__action #: model:ir.model.fields,field_description:account.field_account_report_line__action_id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__act_window_id +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__action_id +#: model:ir.model.fields,field_description:base.field_ir_filters__action_id +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__action +#: model:ir.model.fields,field_description:mail.field_mail_activity__activity_category +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__category #: model:ir.model.fields,field_description:stock.field_stock_rule__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_url__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_close__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_actions__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_client__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_report__binding_type__action +#: model:ir.model.fields.selection,name:base.selection__ir_actions_server__binding_type__action +#: model_terms:ir.ui.view,arch_db:base.action_view +#: model_terms:ir.ui.view,arch_db:base.action_view_search +#: model_terms:ir.ui.view,arch_db:base.action_view_tree +#: model_terms:ir.ui.view,arch_db:base.view_window_action_search msgid "Action" msgstr "动作" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Action %(action_reference)s (id: %(action_id)s) does not exist for button of" +" type action." +msgstr "动作 %(action_reference)s (id: %(action_id)s) 对于动作类型的按钮不存在." + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__help +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__help +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__help +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__help +#: model:ir.model.fields,field_description:base.field_ir_actions_client__help +#: model:ir.model.fields,field_description:base.field_ir_actions_report__help +#: model:ir.model.fields,field_description:base.field_ir_actions_server__help +#: model:ir.model.fields,field_description:base.field_ir_cron__help +msgid "Action Description" +msgstr "动作说明" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__name +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__name +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__name +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__name +#: model:ir.model.fields,field_description:base.field_ir_actions_client__name +#: model:ir.model.fields,field_description:base.field_ir_actions_report__name +#: model:ir.model.fields,field_description:base.field_ir_actions_server__name +#: model:ir.model.fields,field_description:base.field_ir_cron__name +msgid "Action Name" +msgstr "动作名称" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_needaction #: model:ir.model.fields,field_description:account.field_account_account_template__message_needaction #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_needaction @@ -3985,6 +15833,13 @@ msgstr "动作" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_needaction #: model:ir.model.fields,field_description:account.field_res_company__message_needaction #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_needaction +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_needaction +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_needaction +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_needaction +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_needaction +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_needaction +#: model:ir.model.fields,field_description:mail.field_res_partner__message_needaction +#: model:ir.model.fields,field_description:mail.field_res_users__message_needaction #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_needaction #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_needaction #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_needaction @@ -4007,11 +15862,104 @@ msgstr "需要动作" msgid "Action Proposed" msgstr "建议措施" -#. module: account +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__target +msgid "Action Target" +msgstr "动作目标" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__state +#: model:ir.model.fields,field_description:mail.field_ir_cron__state +msgid "Action To Do" +msgstr "待办的动作" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__type +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__type +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__type +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__type +#: model:ir.model.fields,field_description:base.field_ir_actions_client__type +#: model:ir.model.fields,field_description:base.field_ir_actions_report__type +#: model:ir.model.fields,field_description:base.field_ir_actions_server__type +#: model:ir.model.fields,field_description:base.field_ir_cron__type +#: model_terms:ir.ui.view,arch_db:base.view_server_action_search +msgid "Action Type" +msgstr "动作类型" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_url +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__url +msgid "Action URL" +msgstr "动作网址" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__usage +msgid "Action Usage" +msgstr "动作用途" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +msgid "Action Window" +msgstr "动作窗口" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "Action Window Close" +msgstr "动作窗口关闭" + +#. module: mail +#: model:ir.model,name:mail.model_ir_actions_act_window_view +msgid "Action Window View" +msgstr "动作窗口视图" + +#. modules: base, account +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.model,name:base.model_ir_actions_actions #: model:ir.ui.menu,name:account.menu_finance_entries_actions +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Actions" msgstr "动作" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_activity__activity_category +#: model:ir.model.fields,help:mail.field_mail_activity_type__category +msgid "" +"Actions may trigger specific behavior like opening calendar view or " +"automatically mark as done when a document is uploaded" +msgstr "操作可能触发特定的行为,如打开日历视图或在上传单据时自动标记" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +msgid "Actions to Perform on Incoming Mails" +msgstr "在传入邮件上执行的操作" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +#: model_terms:ir.ui.view,arch_db:base.res_lang_tree +msgid "Activate" +msgstr "激活" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#, python-format +msgid "Activate Full Screen" +msgstr "激活全屏幕" + +#. module: base +#: model:ir.actions.server,name:base.action_server_module_immediate_install +msgid "Activate Modules" +msgstr "激活模块" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "Activate and Translate" +msgstr "启用及翻译" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_location__replenish_location msgid "" @@ -4029,7 +15977,13 @@ msgstr "启用以创建采购收据" msgid "Activate to create sale receipt" msgstr "启用以创建销售收据" -#. modules: maintenance, mrp, sale_management, stock, quality, account +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__default +msgid "Activated by default when subscribing." +msgstr "订阅时默认启用." + +#. modules: mrp, account, sale_management, quality, mail, base, stock, +#. maintenance #: model:ir.model.fields,field_description:account.field_account_account_tag__active #: model:ir.model.fields,field_description:account.field_account_fiscal_position__active #: model:ir.model.fields,field_description:account.field_account_incoterms__active @@ -4039,7 +15993,28 @@ msgstr "启用以创建销售收据" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__active #: model:ir.model.fields,field_description:account.field_account_tax__active #: model:ir.model.fields,field_description:account.field_account_tax_template__active -#: model:ir.model.fields,field_description:account.field_res_partner_bank__active +#: model:ir.model.fields,field_description:base.field_ir_cron__active +#: model:ir.model.fields,field_description:base.field_ir_filters__active +#: model:ir.model.fields,field_description:base.field_ir_mail_server__active +#: model:ir.model.fields,field_description:base.field_ir_model_access__active +#: model:ir.model.fields,field_description:base.field_ir_rule__active +#: model:ir.model.fields,field_description:base.field_ir_sequence__active +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__active +#: model:ir.model.fields,field_description:base.field_ir_ui_view__active +#: model:ir.model.fields,field_description:base.field_res_bank__active +#: model:ir.model.fields,field_description:base.field_res_company__active +#: model:ir.model.fields,field_description:base.field_res_currency__active +#: model:ir.model.fields,field_description:base.field_res_lang__active +#: model:ir.model.fields,field_description:base.field_res_partner__active +#: model:ir.model.fields,field_description:base.field_res_partner_bank__active +#: model:ir.model.fields,field_description:base.field_res_partner_category__active +#: model:ir.model.fields,field_description:base.field_res_partner_industry__active +#: model:ir.model.fields,field_description:base.field_res_users__active +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__active +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__active +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__active +#: model:ir.model.fields,field_description:mail.field_mail_channel__active +#: model:ir.model.fields,field_description:mail.field_mail_template__active #: model:ir.model.fields,field_description:maintenance.field_maintenance_team__active #: model:ir.model.fields,field_description:mrp.field_mrp_bom__active #: model:ir.model.fields,field_description:mrp.field_mrp_document__active @@ -4055,6 +16030,11 @@ msgstr "启用以创建销售收据" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__active #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__active #: model_terms:ir.ui.view,arch_db:account.view_account_tax_search +#: model_terms:ir.ui.view,arch_db:base.asset_view_search +#: model_terms:ir.ui.view,arch_db:base.res_lang_search +#: model_terms:ir.ui.view,arch_db:base.view_currency_search +#: model_terms:ir.ui.view,arch_db:base.view_view_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_search msgid "Active" msgstr "启用" @@ -4063,18 +16043,35 @@ msgstr "启用" msgid "Active Account" msgstr "活动帐户" -#. module: account +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__active_lang_count +#: model:ir.model.fields,field_description:base.field_res_users__active_lang_count +msgid "Active Lang Count" +msgstr "启用语言计数" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__active_domain +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__active_domain msgid "Active domain" msgstr "启用域名" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: model:ir.actions.act_window,name:mail.mail_activity_action #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_ids #: model:ir.model.fields,field_description:account.field_account_journal__activity_ids #: model:ir.model.fields,field_description:account.field_account_move__activity_ids #: model:ir.model.fields,field_description:account.field_account_payment__activity_ids #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_ids #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_ids +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_ids +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_ids +#: model:ir.model.fields,field_description:mail.field_res_users__activity_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_ids #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_ids @@ -4085,16 +16082,48 @@ msgstr "启用域名" #: model:ir.model.fields,field_description:quality.field_quality_check__activity_ids #: model:ir.model.fields,field_description:stock.field_stock_lot__activity_ids #: model:ir.model.fields,field_description:stock.field_stock_picking__activity_ids +#: model:ir.ui.menu,name:mail.menu_mail_activities +#: model:mail.message.subtype,name:mail.mt_activities +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_search +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_tree +#, python-format msgid "Activities" msgstr "活动" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_activity_check_res_id_is_set +msgid "Activities have to be linked to records with a not null res_id." +msgstr "活动必须链接到具有非空res_id的记录。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#: code:addons/mail/static/src/js/views/activity/activity_view.js:0 +#: model:ir.model,name:mail.model_mail_activity +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__activity_type_id +#: model:ir.model.fields,field_description:mail.field_ir_cron__activity_type_id +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_act_window_view__view_mode__activity +#: model:ir.model.fields.selection,name:mail.selection__ir_ui_view__type__activity +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_calendar +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +#: model_terms:ir.ui.view,arch_db:mail.view_server_action_form_template +#, python-format +msgid "Activity" +msgstr "活动" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_exception_decoration #: model:ir.model.fields,field_description:account.field_account_journal__activity_exception_decoration #: model:ir.model.fields,field_description:account.field_account_move__activity_exception_decoration #: model:ir.model.fields,field_description:account.field_account_payment__activity_exception_decoration #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_exception_decoration #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_exception_decoration +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_exception_decoration +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_exception_decoration +#: model:ir.model.fields,field_description:mail.field_res_users__activity_exception_decoration #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_exception_decoration #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_exception_decoration #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_exception_decoration @@ -4108,13 +16137,27 @@ msgstr "活动" msgid "Activity Exception Decoration" msgstr "活动异常勋章" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model,name:mail.model_mail_activity_mixin +msgid "Activity Mixin" +msgstr "活动Mixin" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_form +msgid "Activity Settings" +msgstr "活动设置" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_state #: model:ir.model.fields,field_description:account.field_account_journal__activity_state #: model:ir.model.fields,field_description:account.field_account_move__activity_state #: model:ir.model.fields,field_description:account.field_account_payment__activity_state #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_state #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_state +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_state +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_state +#: model:ir.model.fields,field_description:mail.field_res_users__activity_state #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_state #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_state #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_state @@ -4133,13 +16176,24 @@ msgstr "活动状态" msgid "Activity Summary" msgstr "活动摘要" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model,name:mail.model_mail_activity_type +#: model:ir.model.fields,field_description:mail.field_mail_activity__activity_type_id +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +msgid "Activity Type" +msgstr "活动类型" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_type_icon #: model:ir.model.fields,field_description:account.field_account_journal__activity_type_icon #: model:ir.model.fields,field_description:account.field_account_move__activity_type_icon #: model:ir.model.fields,field_description:account.field_account_payment__activity_type_icon #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_type_icon #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_type_icon +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_type_icon +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_type_icon +#: model:ir.model.fields,field_description:mail.field_res_users__activity_type_icon #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_type_icon #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_type_icon #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_type_icon @@ -4153,9 +16207,12 @@ msgstr "活动摘要" msgid "Activity Type Icon" msgstr "活动类型图表" -#. module: maintenance +#. modules: mail, maintenance +#: model:ir.actions.act_window,name:mail.mail_activity_type_action #: model:ir.actions.act_window,name:maintenance.mail_activity_type_action_config_maintenance +#: model:ir.ui.menu,name:mail.menu_mail_activity_type #: model:ir.ui.menu,name:maintenance.maintenance_menu_config_activity_type +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form msgid "Activity Types" msgstr "活动类型" @@ -4164,6 +16221,19 @@ msgstr "活动类型" msgid "Activity User" msgstr "活动用户" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__activity_user_type +#: model:ir.model.fields,field_description:mail.field_ir_cron__activity_user_type +msgid "Activity User Type" +msgstr "活动用户类型" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#, python-format +msgid "Activity type" +msgstr "活动类型" + #. module: account #: model:ir.model.fields,help:account.field_account_journal__sale_activity_type_id msgid "" @@ -4171,15 +16241,30 @@ msgid "" "collection process." msgstr "活动将在付款到期日自动安排,以改善收款过程。" -#. module: account -#. openerp-web +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_activity.py:0 +#, python-format +msgid "Activity: %s" +msgstr "活动: %s" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_sequence__number_next_actual +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__number_next_actual +msgid "Actual Next Number" +msgstr "确切的下一号码" + +#. modules: base, account +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 +#: model_terms:ir.ui.view,arch_db:base.view_base_language_install #, python-format msgid "Add" -msgstr "" +msgstr "添加" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: model_terms:ir.ui.view,arch_db:mrp_workorder.view_mrp_workorder_additional_product_wizard @@ -4188,15 +16273,16 @@ msgid "Add By-Product" msgstr "添加副产品" #. module: mrp_workorder -#. openerp-web +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #, python-format msgid "Add By-product" -msgstr "" +msgstr "添加副产品" #. module: mrp_workorder -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 @@ -4211,10 +16297,70 @@ msgstr "添加组件" msgid "Add Credit Note" msgstr "添加退款通知" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree -msgid "Add Manual Valuation" -msgstr "添加人工计价" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_form +msgid "Add Email Blacklist" +msgstr "添加 Email 黑名单" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/follower_list_menu/follower_list_menu.xml:0 +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__partner_ids +#: model:ir.model.fields,field_description:mail.field_ir_cron__partner_ids +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__state__followers +#: model_terms:ir.ui.view,arch_db:mail.mail_wizard_invite_form +#, python-format +msgid "Add Followers" +msgstr "添加关注者" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_actions_server.py:0 +#, python-format +msgid "Add Followers can only be done on a mail thread models" +msgstr "仅在邮件线程模型上可以添加关注者" + +#. module: base +#: model:ir.actions.act_window,name:base.action_view_base_language_install +msgid "Add Languages" +msgstr "添加语言" + +#. module: base +#: model:ir.module.module,description:base.module_data_merge_helpdesk +#: model:ir.module.module,summary:base.module_data_merge_helpdesk +msgid "Add Merge action in contextual menu of helpdesk ticket model." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_data_merge_project +#: model:ir.module.module,summary:base.module_data_merge_project +msgid "Add Merge action in contextual menu of project task and tag models." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mail_bot +msgid "Add OdooBot in discussions" +msgstr "在讨论中加入OdooBot" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#, python-format +msgid "Add Product" +msgstr "添加产品" + +#. module: base +#: model:ir.module.module,summary:base.module_crm_sms +msgid "Add SMS capabilities to CRM" +msgstr "向 CRM 增加 短信息功能" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_subcontracting_account_enterprise +msgid "" +"Add Subcontracting information in Cost Analysis Reports and Production " +"Analysis" +msgstr "" #. module: account #: model:ir.actions.server,name:account.action_new_bank_setting @@ -4239,8 +16385,16 @@ msgid "" " their mobile banking application." msgstr "结算单上添加二维码,客户可以立即在手机银行引用支付." +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_action_view.js:0 +#, python-format +msgid "Add a Reaction" +msgstr "添加反应" + #. module: mrp_workorder -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 @@ -4254,11 +16408,23 @@ msgstr "" msgid "Add a bank account" msgstr "添加银行账户" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#, python-format +msgid "Add a description" +msgstr "添加描述" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_block_wizard_form msgid "Add a description..." msgstr "添加描述。" +#. module: base +#: model:ir.module.module,summary:base.module_loyalty_delivery +msgid "Add a free shipping option to your rewards" +msgstr "为您的奖励添加免费送货选项" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_account_journal_form msgid "Add a journal" @@ -4269,29 +16435,47 @@ msgstr "添加日记账" msgid "Add a journal group" msgstr "添加日记账组" -#. modules: account, mrp +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "Add a language" +msgstr "添加语言" + +#. modules: mrp, account #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_routing_workcenter_bom_tree_view msgid "Add a line" msgstr "添加明细行" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Add a line to your invoice" -msgstr "" +msgstr "添加一行到结算单" #. module: account #: model:ir.model.fields.selection,name:account.selection__res_company__terms_type__html msgid "Add a link to a Web Page" msgstr "添加网页链接" +#. module: base +#: model:ir.module.module,summary:base.module_transifex +msgid "Add a link to edit a translation in Transifex" +msgstr "增加连结以在 Transifex 中编辑译文" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_production_lot_form msgid "Add a lot/serial number" msgstr "增加批号/序列号" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Add a new %(document)s or send an email to %(email_link)s" +msgstr "新增 %(document)s 或发送邮件至%(email_link)s" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_account_form msgid "Add a new account" @@ -4344,19 +16528,24 @@ msgstr "增加一个新的存储类别" msgid "Add a new tag" msgstr "添加新标签" -#. modules: sale_management, account, purchase +#. modules: purchase, sale_management, account #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form msgid "Add a note" msgstr "添加说明" +#. module: base +#: model:ir.module.module,summary:base.module_account_reports_tax_reminder +msgid "Add a notification when the tax report has been generated" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Add a payment QR-code to your invoices" msgstr "在您的结算单上添加支付二维码" -#. modules: sale_management, purchase +#. modules: purchase, sale_management #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_form_quote #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form @@ -4368,23 +16557,39 @@ msgstr "添加产品" msgid "Add a rounding line" msgstr "添加舍入取整明细" -#. modules: sale_management, account, purchase +#. modules: purchase, sale_management, account #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form msgid "Add a section" msgstr "添加节" +#. module: base +#: model:ir.module.module,summary:base.module_website_form_project +msgid "Add a task suggestion form to your website" +msgstr "向网站增加任务推荐表" + #. module: maintenance #: model_terms:ir.actions.act_window,help:maintenance.maintenance_team_action_settings msgid "Add a team in the maintenance request" msgstr "在维护请求中添加团队" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form -msgid "" -"Add additional cost (transport, customs, ...) in the value of the product." -msgstr "在产品价值中增加额外成本(运输,海关......)。" +#. module: base +#: model:ir.module.module,summary:base.module_website_mail_group +msgid "Add a website snippet for the mail groups." +msgstr "为邮件组增加网站片段." + +#. module: mail +#: model_terms:ir.actions.act_window,help:mail.mail_blacklist_action +msgid "Add an email address to the blacklist" +msgstr "将电子邮件地址添加到黑名单" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/xml/text_emojis.xml:0 +#, python-format +msgid "Add an emoji" +msgstr "添加一个表情" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_form @@ -4417,6 +16622,26 @@ msgid "" msgstr "" "添加并自定义路线作业以处理您库存中的产品调拨:例如:卸货>品控>入库,拣货>包装>发运。您也可以在仓位置置设置上架策略,以便直接将入库产品发送到特定的子位置(例如:特定的货位、货架)。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/suggested_recipient_info.js:0 +#, python-format +msgid "Add as recipient and follower (reason: %s)" +msgstr "添加为收件人和关注者 (原因:%s)" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Add attachment" +msgstr "添加附件" + +#. module: base +#: model:ir.module.module,summary:base.module_event_barcode +msgid "Add barcode scanning feature to event management." +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.res_config_settings_view_form msgid "" @@ -4425,16 +16650,116 @@ msgid "" "the option: A + B = C + D." msgstr "添加副产品到BOM。 这也可以用来获得几个完工产品。 没有这个选项,您只能这样做:A + B = C。选项:A + B = C + D." -#. module: account +#. module: base +#: model:ir.module.module,summary:base.module_account_reports_cash_basis +msgid "Add cash basis functionality for reports" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_slides_survey +msgid "Add certification capabilities to your courses" +msgstr "为您的课程增加认证功能" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_skills_survey +msgid "Add certification to resume of your employees" +msgstr "向员工简历添加认证" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_skills_slides +msgid "Add completed courses to resume of your employees" +msgstr "向员工简历添加完成的课程" + +#. modules: mail, account #: model_terms:ir.ui.view,arch_db:account.account_invoice_send_wizard_form +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +#: model_terms:ir.ui.view,arch_db:mail.mail_wizard_invite_form msgid "Add contacts to notify..." msgstr "添加联系人到通知中..." +#. module: base +#: model:ir.module.module,summary:base.module_social_crm +msgid "Add crm UTM info on social" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_event_sale_dashboard +msgid "Add dashboard for Event Revenues Report" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_delivery +msgid "Add delivery costs to online sales" +msgstr "增加交货成本到线上销售" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Add direction" +msgstr "增加指引" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Add directional information (not used for digital)" +msgstr "增加指引消息 (不适用于数字)" + +#. module: base +#: model:ir.module.module,summary:base.module_base_address_extended +msgid "Add extra fields on addresses" +msgstr "在地址上增加额外的字段" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#, python-format +msgid "Add extra product?" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.act_report_xml_view +msgid "Add in the 'Print' menu" +msgstr "在'打印'选项增加" + +#. module: base +#: model:ir.module.module,description:base.module_event_crm_sale +msgid "" +"Add information of sale order linked to the registration for the creation of" +" the lead." +msgstr "增加销售订单消息连结到创建潜在客户的报名." + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_crm +msgid "Add lead / opportunities UTM info on mass mailing" +msgstr "在群发邮件中增加UTM的主要或机会信息" + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_crm_sms +msgid "Add lead / opportunities info on mass mailing sms" +msgstr "在群发短信息中增加潜在客户/机会信息" + +#. module: base +#: model:ir.module.module,summary:base.module_im_livechat_mail_bot +msgid "Add livechat support for OdooBot" +msgstr "增加OdooBot及时聊天支持" + #. module: sale_management #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_portal_content_inherit_sale_management msgid "Add one" msgstr "添加一行" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/discuss_sidebar_category.js:0 +#, python-format +msgid "Add or join a channel" +msgstr "添加或加入频道" + #. module: mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp_workorder.view_mrp_workorder_additional_product_wizard msgid "Add product" @@ -4450,16 +16775,43 @@ msgstr "为您的调拨作业增加质量检查" msgid "Add quality checks to your work orders" msgstr "为您的工单增加质量检查" +#. module: base +#: model:ir.module.module,summary:base.module_social_sale +msgid "Add sale UTM info on social" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_sale +msgid "Add sale order UTM info on mass mailing" +msgstr "在群发邮件中增加UTM的销售订单信息" + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_sale_sms +msgid "Add sale order info on mass mailing sms" +msgstr "在群发短信息中增加销售订单信息" + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_sale_subscription +msgid "Add sale subscription support in mass mailing" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "Add several variants to the purchase order from a grid" msgstr "在购买订单中用网格方式添加几个变体" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "Add some products or services to your quotation." +msgstr "添加些产品或者服务到您的报价" + +#. module: base +#: model:ir.module.module,description:base.module_sign_itsme +msgid "" +"Add support for itsme® identification when signing documents (Belgium and " +"Netherlands only)" msgstr "" #. module: mrp @@ -4467,6 +16819,11 @@ msgstr "" msgid "Add tag for the workcenter" msgstr "为工作中心添加标签" +#. module: base +#: model:ir.module.module,summary:base.module_stock_barcode_picking_batch +msgid "Add the support of batch transfers into the barcode view" +msgstr "" + #. module: sale_management #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_portal_content_inherit_sale_management msgid "Add to cart" @@ -4477,27 +16834,57 @@ msgstr "加入购物车" msgid "Add to order lines" msgstr "添加到订单明细行" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#, python-format +msgid "Add users" +msgstr "添加用户" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_product_matrix +msgid "Add variants to Sales Order through a grid entry." +msgstr "通过矩阵分录向销售订单增加变体." + +#. module: base +#: model:ir.module.module,summary:base.module_event_enterprise +msgid "Add views and tweaks on event" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "" "Add your terms & conditions at the bottom of invoices/orders/quotations" msgstr "在结算单/订单/报价底部添加您的条款&条件" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view -msgid "Added Value" -msgstr "增加的价值" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Add your twilio credentials for ICE servers" +msgstr "为ICE服务器添加您的twilio凭据" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value -msgid "Added value" -msgstr "增加的价值" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Adding followers on channels is not possible. Consider adding members " +"instead." +msgstr "无法在频道上添加关注者。考虑改为添加成员。" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__partner_ids msgid "Additional Contacts" msgstr "添加联系人" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Additional Fields" +msgstr "额外字段" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "Additional Info" @@ -4509,7 +16896,7 @@ msgstr "额外的信息" msgid "Additional Information" msgstr "其它信息" -#. modules: quality, quality_control +#. modules: quality_control, quality #: model:ir.model.fields,field_description:quality.field_quality_check__additional_note #: model:ir.model.fields,field_description:quality_control.field_quality_check_wizard__additional_note msgid "Additional Note" @@ -4520,7 +16907,7 @@ msgstr "其它说明" msgid "Additional Product" msgstr "附加产品" -#. modules: quality, quality_control +#. modules: quality_control, quality #: model:ir.model.fields,help:quality.field_quality_check__additional_note #: model:ir.model.fields,help:quality_control.field_quality_check_wizard__additional_note msgid "Additional remarks concerning this check." @@ -4533,22 +16920,242 @@ msgid "" "domains" msgstr "此重新分区行将分配用于域的其他标签" -#. module: stock +#. modules: stock, base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:stock.field_stock_warehouse__partner_id +#: model_terms:ir.ui.view,arch_db:base.contact +#: model_terms:ir.ui.view,arch_db:base.res_partner_view_form_private +#: model_terms:ir.ui.view,arch_db:base.view_company_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_address_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +#, python-format msgid "Address" msgstr "地址" +#. module: base +#: model:ir.model,name:base.model_format_address_mixin +msgid "Address Format" +msgstr "地址格式" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__type +#: model:ir.model.fields,field_description:base.field_res_users__type +msgid "Address Type" +msgstr "地址类型" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_country_form +msgid "Address format..." +msgstr "地址格式..." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Address separator" +msgstr "地址分隔符" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_rule__partner_address_id msgid "Address where goods should be delivered. Optional." msgstr "货物的运送地址。可选填。" +#. module: base +#: model:ir.module.module,summary:base.module_pos_restaurant_adyen +msgid "Adds American style tipping to Adyen" +msgstr "为 Adyen 添加美式小费" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_restaurant_stripe +msgid "Adds American style tipping to Stripe" +msgstr "为Stripe添加美式小费" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_contract_salary_payroll +msgid "Adds a Gross to Net Salary Simulaton" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_project_stock +#: model:ir.module.module,summary:base.module_sale_project_stock +msgid "" +"Adds a full traceability of inventory operations on the profitability " +"report." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_sale_expense +msgid "" +"Adds a full traceability of reinvoice expenses on the profitability report." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_loyalty_delivery +msgid "Adds free shipping mechanism in sales orders" +msgstr "在销售订单中增加了免费送货机制" + +#. module: base +#: model:ir.module.module,description:base.module_contacts_enterprise +msgid "Adds notably the map view of contact" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_hr +msgid "Adds specific fields to Employees for Mexican companies." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_auth_ldap +msgid "" +"Adds support for authentication by LDAP server.\n" +"===============================================\n" +"This module allows users to login with their LDAP username and password, and\n" +"will automatically create Odoo users for them on the fly.\n" +"\n" +"**Note:** This module only work on servers that have Python's ``python-ldap`` module installed.\n" +"\n" +"Configuration:\n" +"--------------\n" +"After installing this module, you need to configure the LDAP parameters in the\n" +"General Settings menu. Different companies may have different\n" +"LDAP servers, as long as they have unique usernames (usernames need to be unique\n" +"in Odoo, even across multiple companies).\n" +"\n" +"Anonymous LDAP binding is also supported (for LDAP servers that allow it), by\n" +"simply keeping the LDAP user and password empty in the LDAP configuration.\n" +"This does not allow anonymous authentication for users, it is only for the master\n" +"LDAP account that is used to verify if a user exists before attempting to\n" +"authenticate it.\n" +"\n" +"Securing the connection with STARTTLS is available for LDAP servers supporting\n" +"it, by enabling the TLS option in the LDAP configuration.\n" +"\n" +"For further options configuring the LDAP settings, refer to the ldap.conf\n" +"manpage: manpage:`ldap.conf(5)`.\n" +"\n" +"Security Considerations:\n" +"------------------------\n" +"Users' LDAP passwords are never stored in the Odoo database, the LDAP server\n" +"is queried whenever a user needs to be authenticated. No duplication of the\n" +"password occurs, and passwords are managed in one place only.\n" +"\n" +"Odoo does not manage password changes in the LDAP, so any change of password\n" +"should be conducted by other means in the LDAP directory directly (for LDAP users).\n" +"\n" +"It is also possible to have local Odoo users in the database along with\n" +"LDAP-authenticated users (the Administrator account is one obvious example).\n" +"\n" +"Here is how it works:\n" +"---------------------\n" +" * The system first attempts to authenticate users against the local Odoo\n" +" database;\n" +" * if this authentication fails (for example because the user has no local\n" +" password), the system then attempts to authenticate against LDAP;\n" +"\n" +"As LDAP users have blank passwords by default in the local Odoo database\n" +"(which means no access), the first step always fails and the LDAP server is\n" +"queried to do the authentication.\n" +"\n" +"Enabling STARTTLS ensures that the authentication query to the LDAP server is\n" +"encrypted.\n" +"\n" +"User Template:\n" +"--------------\n" +"In the LDAP configuration on the General Settings, it is possible to select a *User\n" +"Template*. If set, this user will be used as template to create the local users\n" +"whenever someone authenticates for the first time via LDAP authentication. This\n" +"allows pre-setting the default groups and menus of the first-time users.\n" +"\n" +"**Warning:** if you set a password for the user template, this password will be\n" +" assigned as local password for each new LDAP user, effectively setting\n" +" a *master password* for these users (until manually changed). You\n" +" usually do not want this. One easy way to setup a template user is to\n" +" login once with a valid LDAP user, let Odoo create a blank local\n" +" user with the same login (and a blank password), then rename this new\n" +" user to a username that does not exist in LDAP, and setup its groups\n" +msgstr "" +"增加对 LDAP 服务器身份验证的支持.\n" +"================================================\n" +"该模块允许用户使用他们的 LDAP 帐号和密码登录,并且\n" +"将自动为他们动态创建 Odoo 用户.\n" +"\n" +"**注意:** 此模块仅适用于安装了 Python 的 ``python-ldap`` 模块的服务器.\n" +"\n" +"设置:\n" +"--------------\n" +"安装此模块后,需要在\n" +"一般设置菜单.不同的公司可能有不同的\n" +"LDAP 服务器,只要它们有唯一的帐号(帐号必须是唯一的\n" +"在 Odoo 中,甚至跨多个公司).\n" +"\n" +"还支持匿名 LDAP 绑定(对于允许它的 LDAP服务器),通过\n" +"只需在 LDAP 设置中保持 LDAP 帐号和密码为空即可.\n" +"这不允许对用户进行匿名身份验证,它仅适用于 master\n" +"LDAP 帐户,用于在尝试之前验证用户是否存在\n" +"验证它.\n" +"\n" +"使用 STARTTLS 保护连接可用于支持 LDAP 服务器\n" +"通过在 LDAP 设置中启用 TLS 选项.\n" +"\n" +"有关设置 LDAP 设置的更多选项,请参阅 ldap.conf\n" +"手册页\" 手册页: `ldap.conf(5)`.\n" +"\n" +"安全注意事项:\n" +"----------------------\n" +"用户的 LDAP 密码永远不会存储在 LDAP 服务器 Odoo 数据库中\n" +"每当需要对用户进行身份验证时都会查询. 没有重复的\n" +"密码发生,并且密码仅在一个地方进行管理.\n" +"\n" +"Odoo 不管理 LDAP 中的密码更改,因此任何密码更改\n" +"应通过其它方式直接在 LDAP 目录中进行(对于 LDAP 用户).\n" +"\n" +"也可以在数据库中拥有本地 Odoo 帐号以及\n" +"LDAP 认证的帐号(管理员帐号就是一个明显的例子).\n" +"\n" +"下面是它的工作原理:\n" +"---------------------\n" +" * 系统首先尝试针对本地 Odoo 对帐号进行身份验证\n" +" 数据库;\n" +" * 如果此身份验证失败(例如因为用户没有本地\n" +" 密码),然后系统尝试针对 LDAP 进行身份验证;\n" +"\n" +"由于 LDAP 用户在本地 Odoo 数据库中默认密码为空\n" +"(这意味著不能访问),第一步总是失败并且 LDAP 服务器是\n" +"要求进行身份验证.\n" +"\n" +"启用 STARTTLS 可确保对 LDAP 服务器的身份验证查询是\n" +"加密.\n" +"\n" +"帐号模板:\n" +"--------------\n" +"在一般设置的 LDAP 设置中,可以选择 *User\n" +"模板*。如果设置,此帐号将用作创建本地帐号的模板\n" +"每当有人通过 LDAP 身份验证首次进行身份验证时. 这\n" +"允许预先设置新帐号的默认组和菜单.\n" +"\n" +"**警告:**如果您为帐号模板设置密码,此密码将是\n" +" 配置为每个新 LDAP 帐号的本地密码,有效地设置\n" +" 这些用户的*主密码*(直到手动更改). 您\n" +" 通常不想要这个. 设置模板帐号的一种简单方法是\n" +" 使用有效的 LDAP 帐号登录一次,让 Odoo 创建一个空白的本地\n" +" 具有相同登录名称(和空白密码)的帐号,然后重新命名这个新的\n" +" 帐号到 LDAP 中不存在的用户名称,并设置其组\n" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_edi_extended_40 +msgid "Adds the CommercioExterior Complement to CFDI v4.0" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_automatic_entry_wizard_form msgid "Adjusting Amount" msgstr "调整金额" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "" @@ -4557,9 +17164,10 @@ msgid "" "{new_date}" msgstr "" "已为此发票创建调整分录:
  • %(link1)s 取消 {percent:.2f}%% of " -"{amount}
  • %(link0)s 将其推迟到 {new_date }
" +"{amount}
  • %(link0)s 将其推迟到 {new_date}
  • " #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "" @@ -4568,13 +17176,32 @@ msgid "" msgstr "调整明细 {link}: {percent:.2f}% of {amount}识别的 {new_date}" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "" "Adjusting Entry {link}: {percent:.2f}% of {amount} recognized from {date}" msgstr "调整明细 {link}: {percent:.2f}% of {amount} recognized from {date}" -#. modules: quality, purchase, stock, mrp +#. module: base +#: model:ir.module.category,name:base.module_category_administration +#: model:ir.module.category,name:base.module_category_administration_administration +#: model_terms:ir.ui.view,arch_db:base.user_groups_view +msgid "Administration" +msgstr "系统管理" + +#. module: base +#: model:ir.model.fields,help:base.field_res_country_state__name +msgid "" +"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +msgstr "一个国家的行政区划. E.g. 省/州, 部, 区" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_N +msgid "Administrative/Utilities" +msgstr "行政/公用事业" + +#. modules: stock, purchase, mrp, quality #: model:res.groups,name:mrp.group_mrp_manager #: model:res.groups,name:purchase.group_purchase_manager #: model:res.groups,name:quality.group_quality_manager @@ -4582,17 +17209,68 @@ msgstr "调整明细 {link}: {percent:.2f}% of {amount} recognized from {date}" msgid "Administrator" msgstr "管理员" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Administrator access is required to uninstall a module" +msgstr "卸载模块要求管理访问" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__property_advance_tax_payment_account_id msgid "Advance tax payment account" msgstr "预付税款账户" -#. module: account +#. modules: mail, base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +#, python-format +msgid "Advanced" +msgstr "高级" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_country_form +msgid "Advanced Address Formatting" +msgstr "高级地址格式" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_track_gantt +msgid "Advanced Event Track Management" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_track +msgid "Advanced Events" +msgstr "高级活动" + +#. module: base +#: model:ir.module.module,summary:base.module_purchase_enterprise +msgid "Advanced Features for Purchase Management" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_enterprise +msgid "Advanced Features for Sale Management" +msgstr "" + +#. modules: mail, account #: model_terms:ir.ui.view,arch_db:account.view_account_tax_template_form #: model_terms:ir.ui.view,arch_db:account.view_tax_form +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form msgid "Advanced Options" msgstr "高级选项" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.act_report_xml_view +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "Advanced Properties" +msgstr "高级属性" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Advanced Scheduling" @@ -4603,11 +17281,41 @@ msgstr "高级调度" msgid "Advanced Settings" msgstr "高级设置" +#. module: base +#: model:ir.module.module,summary:base.module_crm_enterprise +msgid "Advanced features for CRM" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_enterprise +msgid "Advanced features for PoS" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_stock_enterprise +msgid "Advanced features for Stock" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_stock_account_enterprise +msgid "Advanced features for stock_account" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_subonctracting_landed_costs +msgid "Advanced views to manage landed cost for subcontracting orders" +msgstr "管理分包订单落地成本的高级视图" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_move__procure_method__make_to_order msgid "Advanced: Apply Procurement Rules" msgstr "高级:应用补货规则" +#. module: base +#: model:ir.module.module,summary:base.module_theme_odoo_experts +msgid "Advisor, Corporate, Service, Business, Finance, IT" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax__include_base_amount msgid "Affect Base of Subsequent Taxes" @@ -4618,21 +17326,58 @@ msgstr "影响后续税的基数" msgid "Affect Subsequent Taxes" msgstr "影响后续税" -#. module: stock_account -#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs -#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form -msgid "" -"Affect landed costs on reception operations and split them among products to" -" update their cost price." -msgstr "影响收货作业的到岸成本,并拆分它们来更新成本价." +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__agpl-3 +msgid "Affero GPL-3" +msgstr "" -#. module: account -#. openerp-web +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan" +msgstr "阿富汗" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Africa" +msgstr "非洲" + +#. modules: base, account +#. odoo-javascript #: code:addons/account/static/src/components/account_resequence/account_resequence.xml:0 +#: model:ir.model.fields.selection,name:base.selection__ir_asset__directive__after #, python-format msgid "After" +msgstr "之后" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_country__name_position__after +msgid "After Address" +msgstr "地址后" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_currency__position__after +msgid "After Amount" +msgstr "金额后面" + +#. module: stock_barcode +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_put_in_pack__mandatory +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_dest_location__mandatory +msgid "After each product" msgstr "" +#. module: stock_barcode +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_put_in_pack__optional +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_dest_location__optional +msgid "After group of Products" +msgstr "" + +#. module: base +#: model:ir.module.category,description:base.module_category_services_helpdesk +msgid "After-sales services" +msgstr "售后服务" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_expression__engine__aggregation msgid "Aggregate Other Formulas" @@ -4643,55 +17388,105 @@ msgstr "聚合其他公式" msgid "Aggregation Formula Shortcut" msgstr "聚合公式快捷方式" +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_A +msgid "Agriculture" +msgstr "农业" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "阿尔巴尼亚" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_mixin__activity_exception_decoration__warning +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_type__decoration_type__warning +#: model:ir.model.fields.selection,name:mail.selection__res_partner__activity_exception_decoration__warning +msgid "Alert" +msgstr "警报" + #. module: quality #: model:ir.model.fields,field_description:quality.field_quality_alert_stage__done msgid "Alert Processed" msgstr "警报已处理" -#. modules: quality, quality_control, quality_mrp +#. modules: quality_control, quality #: model:ir.model.fields,field_description:quality.field_quality_check__alert_ids #: model:ir.model.fields,field_description:quality_control.field_stock_picking__quality_alert_ids -#: model:ir.model.fields,field_description:quality_mrp.field_mrp_production__quality_alert_ids #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form msgid "Alerts" msgstr "提醒" -#. modules: quality, maintenance +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "阿尔及利亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_dz +msgid "Algeria - Accounting" +msgstr "" + +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias_mixin__alias_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_id #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_id +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_tree msgid "Alias" msgstr "别名" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_contact #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_contact #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_contact msgid "Alias Contact Security" msgstr "安全联系人别名" -#. modules: quality, maintenance, account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_config_settings__alias_domain +msgid "Alias Domain" +msgstr "别名域" + +#. modules: mail, quality, maintenance, account #: model:ir.model.fields,field_description:account.field_account_journal__alias_name +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_name #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_name #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_name msgid "Alias Name" msgstr "别名" -#. modules: quality, maintenance, account +#. modules: mail, quality, maintenance, account #: model:ir.model.fields,field_description:account.field_account_journal__alias_domain +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_domain #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_domain #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_domain msgid "Alias domain" msgstr "域名别名" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_model_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_model_id #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_model_id msgid "Aliased Model" msgstr "模型别名" -#. modules: maintenance, purchase, mrp, stock, quality_control, account +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_mail_alias +#: model:ir.ui.menu,name:mail.mail_alias_menu +msgid "Aliases" +msgstr "别名" + +#. modules: purchase, quality_control, mrp, account, mail, base, stock, +#. maintenance +#. odoo-python +#. odoo-javascript #: code:addons/account/controllers/portal.py:0 +#: code:addons/mail/static/src/components/messaging_menu_tab/messaging_menu_tab.xml:0 +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 #: code:addons/purchase/controllers/portal.py:0 #: model:ir.model.fields.selection,name:quality_control.selection__quality_point__measure_frequency_type__all +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search #: model_terms:ir.ui.view,arch_db:maintenance.maintenance_team_kanban #: model_terms:ir.ui.view,arch_db:mrp.stock_production_type_kanban #: model_terms:ir.ui.view,arch_db:stock.stock_picking_type_kanban @@ -4700,25 +17495,25 @@ msgid "All" msgstr "全部" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "All Draft RFQs" -msgstr "" +msgstr "所有草稿询价" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "All Late RFQs" -msgstr "" +msgstr "所有迟到询价" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "All RFQs" -msgstr "" +msgstr "所有询价" #. module: sale_management #: model:ir.model.fields,field_description:sale_management.field_digest_digest__kpi_all_sale_total @@ -4736,20 +17531,21 @@ msgid "All Users Lock Date" msgstr "所有用户锁定日期" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "All Waiting RFQs" -msgstr "" +msgstr "所有等待的询价" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/views/search/stock_report_search_panel.xml:0 #, python-format msgid "All Warehouses" -msgstr "" +msgstr "所有仓库" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "All accounts on the lines must be of the same type." @@ -4765,13 +17561,30 @@ msgstr "一次性全部" msgid "All checks passed" msgstr "所有检查通过" +#. module: base +#. odoo-python +#: code:addons/base/wizard/base_partner_merge.py:0 +#: code:addons/base/wizard/base_partner_merge.py:0 +#, python-format +msgid "" +"All contacts must have the same email. Only the Administrator can merge " +"contacts with different emails." +msgstr "所有联系人都必须具有相同的电子邮件. 只有管理员可以合并不同电子邮件的联系人." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_step +msgid "All done!" +msgstr "全部搞定!" + #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #, python-format msgid "All entries are hashed." msgstr "所有項目已沖帳" #. module: mrp +#. odoo-python #: code:addons/mrp/controller/main.py:0 #, python-format msgid "All files uploaded" @@ -4782,6 +17595,14 @@ msgstr "已上载所有文件" msgid "All our contractual relations will be governed exclusively by" msgstr "我们所有的合同关系将完全由" +#. modules: stock, base +#: model_terms:res.company,invoice_terms_html:base.main_company +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"All our contractual relations will be governed exclusively by United States " +"law." +msgstr "我们所有的合作关系都将受国家法律管辖." + #. module: mrp #: model:ir.model.constraint,message:mrp.constraint_mrp_bom_line_bom_qty_zero msgid "" @@ -4793,14 +17614,42 @@ msgstr "" "数量为0的行可以用作可选行。\n" "如果要管理BOM上的额外产品,则应安装mrp_byproduct模块!" +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#, python-format +msgid "All products need to be packed" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move__returned_move_ids msgid "All returned moves" msgstr "全部退回移动" -#. modules: stock, mrp +#. module: base +#: model:ir.model.fields,help:base.field_res_partner__lang +#: model:ir.model.fields,help:base.field_res_users__lang +msgid "" +"All the emails and documents sent to this contact will be translated in this" +" language." +msgstr "发送到该联系人的所有电子邮件和文档将以这种语言翻译。" + +#. module: base +#: model:ir.module.module,description:base.module_account_consolidation +#: model:ir.module.module,summary:base.module_account_consolidation +msgid "All you need to make financial consolidation" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_holidays +msgid "Allocate PTOs and follow leaves requests" +msgstr "配置 PTO 并遵循休假请求" + +#. modules: stock, mrp, stock_barcode #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:stock.view_picking_form +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_picking_barcode msgid "Allocation" msgstr "分配" @@ -4850,6 +17699,11 @@ msgstr "允许注册" msgid "Allow Work Order Dependencies" msgstr "容许工单依赖" +#. module: base +#: model:ir.module.module,summary:base.module_password_security +msgid "Allow admin to set password security requirements." +msgstr "" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_production__use_auto_consume_components_lots #: model:ir.model.fields,help:mrp.field_stock_picking_type__use_auto_consume_components_lots @@ -4866,6 +17720,16 @@ msgstr "允许自动发送邮件并提醒您的供应商单据日期" msgid "Allow check printing and deposits" msgstr "允许支票打印和存款" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__barcode_validation_full +msgid "Allow full picking validation" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_helpdesk_fsm +msgid "Allow generating fsm tasks from ticket" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.res_config_settings_view_form msgid "" @@ -4873,11 +17737,38 @@ msgid "" "for prior approval" msgstr "允许生产用户修改消耗的数量,而不需要事先批准" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Allow matching with subfields" +msgstr "允许与子字段匹配" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_storage_category__allow_new_product__mixed msgid "Allow mixed products" msgstr "允许混合产品" +#. module: base +#: model:ir.module.module,summary:base.module_appointment +msgid "Allow people to book meetings in your agenda" +msgstr "允许人们在您的议程中预订会议" + +#. module: base +#: model:ir.module.module,description:base.module_website_event_crm +msgid "Allow per-order lead creation mode" +msgstr "允许按订单潜在客户创建模式" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_comparison +msgid "Allow shoppers to compare products based on their attributes" +msgstr "允许购物者对产品属性进行对比" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_wishlist +msgid "Allow shoppers to enlist products" +msgstr "允许运输商征集产品" + #. module: account #: model:res.groups,name:account.group_cash_rounding msgid "Allow the cash rounding management" @@ -4899,6 +17790,13 @@ msgstr "允许为组件创建新的批号/序列号" msgid "Allow to edit purchase orders" msgstr "允许修改采购订单" +#. module: stock_barcode +#: model:ir.model.fields,help:stock_barcode.field_stock_picking_type__barcode_validation_full +msgid "" +"Allow to validate a picking even if nothing was scanned yet (and so, do an " +"immediate transfert)" +msgstr "" + #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_bom__consumption__flexible #: model:ir.model.fields.selection,name:mrp.selection__mrp_consumption_warning__consumption__flexible @@ -4906,6 +17804,11 @@ msgstr "允许修改采购订单" msgid "Allowed" msgstr "允许" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Allowed Companies" +msgstr "允许的公司" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__allowed_journal_ids msgid "Allowed Journals" @@ -4938,6 +17841,76 @@ msgstr "允许取消预留生产" msgid "Allowed with warning" msgstr "允许但警告" +#. module: base +#: model:ir.module.module,summary:base.module_mail_plugin +msgid "Allows integration with mail plugins." +msgstr "允许与邮件外挂集成." + +#. module: base +#: model:ir.module.module,summary:base.module_stock_barcode_mrp_subcontracting +msgid "Allows the subcontracting process with the barcode views" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_stock_barcode_quality_control +msgid "Allows the usage of quality checks within the barcode views" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_web_map +msgid "Allows the viewing of records on a map" +msgstr "允许地图上的查看这些记录" + +#. module: base +#: model:ir.module.module,description:base.module_website_profile +msgid "" +"Allows to access the website profile of the users and see their statistics " +"(karma, badges, etc..)" +msgstr "允许访问用户的网站资料并查看他们的统计数据(活跃度、成就等. )" + +#. module: base +#: model:ir.module.module,summary:base.module_website_slides_forum +msgid "Allows to link forum on a course" +msgstr "允许连结课程论坛" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_loyalty_delivery +#: model:ir.module.module,summary:base.module_website_sale_loyalty_delivery +msgid "Allows to offer free shippings in loyalty program rewards on eCommerce" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sms +msgid "Allows to send sms to website visitor" +msgstr "允许向网站访客传送SMS" + +#. module: base +#: model:ir.module.module,description:base.module_website_crm_sms +msgid "" +"Allows to send sms to website visitor if the visitor is linked to a lead." +msgstr "如果访客连结到潜在客户,则允许向网站访客发送短信息." + +#. module: base +#: model:ir.module.module,description:base.module_website_sms +msgid "" +"Allows to send sms to website visitor if the visitor is linked to a partner." +msgstr "如果访客连接到合作伙伴,则允许向网站访客发送短信息." + +#. module: base +#: model:ir.module.module,summary:base.module_website_crm_sms +msgid "Allows to send sms to website visitor that have lead" +msgstr "允许向有线索的网站访客发送短信息" + +#. module: base +#: model:ir.module.module,summary:base.module_account_accountant_batch_payment +msgid "Allows using Reconciliation with the Batch Payment feature." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_delivery_fedex +msgid "Allows website customers to choose delivery pick-up points" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Allows you to use Storno accounting." @@ -4960,7 +17933,7 @@ msgid "" "dispatch production" msgstr "可以替代此工作中心进行生产的其他工作中心" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__account_report__availability_condition__always #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__create_backorder__always msgid "Always" @@ -4999,7 +17972,39 @@ msgid "" "line foreign currency." msgstr "此匹配所涉及的金额始终为正,以外币借方行表示。" -#. modules: account, purchase +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_amazon +msgid "Amazon Connector" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_amazon_taxcloud +msgid "Amazon/TaxCloud Bridge" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"Ambiguous specification for field '%(field)s', only provide one of name, " +"external id or database id" +msgstr "字段 '%(field)s' 的描述模糊,只要提供 名称, external id 或者database id之一" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "美属萨摩亚" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Americas" +msgstr "美洲" + +#. modules: purchase, account #: model:ir.model.fields,field_description:account.field_account_accrued_orders_wizard__amount #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__amount #: model:ir.model.fields,field_description:account.field_account_partial_reconcile__amount @@ -5132,25 +18137,84 @@ msgid "Amount to Pay (foreign currency)" msgstr "应付金额(外币)" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #, python-format msgid "Amount:" -msgstr "" +msgstr "金额" + +#. module: base +#: model:ir.model.fields,help:base.field_res_currency__rounding +msgid "" +"Amounts in this currency are rounded off to the nearest multiple of the " +"rounding factor." +msgstr "以这种货币表示的金额四舍五入到最接近的四舍五入系数的倍数." + +#. module: base +#: model:ir.module.module,summary:base.module_payment_aps +msgid "An Amazon payment provider covering the MENA region." +msgstr "一家覆盖中东和北非地区的亚马逊付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_paypal +msgid "An American payment provider for online payments all over the world." +msgstr "一家美国付款服务提供商,在全球范围内提供在线支付服务。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_stripe +msgid "An Irish-American payment provider covering the US and many others." +msgstr "一家覆盖美国等多个国家的爱尔兰-美国付款服务提供商。" #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #, python-format msgid "An Off-Balance account can not be reconcilable" msgstr "表外科目不能对账" #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #, python-format msgid "An Off-Balance account can not have taxes" msgstr "表外科目不能添加税" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"An SMTP exception occurred. Check port number and connection security type.\n" +" %s" +msgstr "" +"发生 SMTP 异常. 检查端口地址号和连接安全类型.\n" +" %s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/fetchmail.py:0 +#, python-format +msgid "" +"An SSL exception occurred. Check SSL/TLS configuration on server port.\n" +" %s" +msgstr "" +"发生SSL异常。 检查服务器端口上的SSL / TLS配置。\n" +" %s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"An SSL exception occurred. Check connection security type.\n" +" %s" +msgstr "" +"发生 SSL 异常. 检查连接安全类型.\n" +" %s" + #. module: account #: model:ir.model.constraint,message:account.constraint_account_fiscal_position_account_account_src_dest_uniq msgid "" @@ -5174,13 +18238,39 @@ msgstr "" " 损失). 公司的年营收科目法律规定的\n" " 要披露一定量的公司信息." +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_client__tag +msgid "" +"An arbitrary string, interpreted by the client according to its own needs " +"and wishes. There is no central tag repository across clients." +msgstr "任意字符串,可根据客户自己的需要和意愿的解释. 客户之间没有中央的标签库." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_module_module__auto_install +msgid "" +"An auto-installable module is automatically installed by the system when all" +" its dependencies are satisfied. If the module has no dependency, it is " +"always installed." +msgstr "自动安装模块是指当它的所有依赖满足时系统会自动安装. 如果该模块没有任何依赖,那么系统总是会安装它." + +#. modules: mail, base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#: code:addons/mail/models/res_partner.py:0 +#, python-format +msgid "An email is required for find_or_create to work" +msgstr "要 find_or_create功能工作,需要一个电子邮件" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "An error has occurred." msgstr "发生了一个错误。" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "" @@ -5188,6 +18278,43 @@ msgid "" "unique previous posted journal entry." msgstr "计算不变性时发生了错误.不能获取唯一的之前已经发布的会计凭证." +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_group/notification_group.xml:0 +#, python-format +msgid "An error occurred when sending an email." +msgstr "发送电子邮件时发生错误。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#: code:addons/mail/static/src/components/thread_view/thread_view.xml:0 +#, python-format +msgid "An error occurred while fetching messages." +msgstr "获取消息时发生错误。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"An option is not supported by the server:\n" +" %s" +msgstr "" +"服务器不支持以下选项: \n" +" %s" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_asiapay +msgid "An payment provider based in Hong Kong covering most Asian countries." +msgstr "一家覆盖多数亚洲国家的香港付款服务提供商。" + +#. module: base +#: model:ir.module.module,summary:base.module_payment_authorize +msgid "An payment provider covering the US, Australia, and Canada." +msgstr "一家覆盖美国、澳大利亚和加拿大的付款服务提供商。" + #. module: mrp #: model_terms:ir.actions.act_window,help:mrp.mrp_unbuild msgid "" @@ -5195,7 +18322,36 @@ msgid "" "components." msgstr "拆解单用于将成品分解为其组件。" -#. modules: account, purchase +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#, python-format +msgid "" +"An unexisting package type was scanned. This part of the barcode can't be " +"processed." +msgstr "扫描了一个不存在的包装类型。条形码的这一部分不能被处理。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/user.js:0 +#, python-format +msgid "An unexpected error occurred during the creation of the chat." +msgstr "创建聊天时发生意外错误。" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "" +"An unknown issue occurred during import (possibly lost connection, data " +"limit exceeded or memory limits exceeded). Please retry in case the issue is" +" transient. If the issue still occurs, try to split the file rather than " +"import it at once." +msgstr "" +"导入过程中出现未知问题(可能连接丢失、数据超过限制或内存超过限制)。如果问题是暂时的,请重试。如果问题仍然发生,尝试拆分文件,而不是立即导入它。" + +#. modules: purchase, account #: model:ir.model.fields,field_description:account.field_account_move_line__analytic_distribution #: model:ir.model.fields,field_description:account.field_account_reconcile_model_line__analytic_distribution #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__analytic_distribution @@ -5208,16 +18364,17 @@ msgstr "分析会计" msgid "Analytic Account" msgstr "分析账户" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_move__analytic_account_line_id -msgid "Analytic Account Line" -msgstr "分析账户行" - -#. module: account +#. modules: base, account +#: model:ir.module.module,shortdesc:base.module_analytic #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" msgstr "分析会计" +#. module: base +#: model:ir.module.module,shortdesc:base.module_analytic_enterprise +msgid "Analytic Accounting Enterprise" +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.account_analytic_def_account msgid "Analytic Accounts" @@ -5231,13 +18388,18 @@ msgstr "分析成本" #. module: account #: model:ir.model,name:account.model_account_analytic_distribution_model msgid "Analytic Distribution Model" -msgstr "分析分布模型" +msgstr "分析分配模型" #. module: account #: model:ir.ui.menu,name:account.menu_analytic__distribution_model msgid "Analytic Distribution Models" msgstr "分析分布模型" +#. module: account +#: model:ir.model.fields,field_description:account.field_account_report__filter_analytic +msgid "Analytic Filter" +msgstr "过滤分析" + #. module: account #: model:ir.ui.menu,name:account.menu_action_analytic_lines_tree msgid "Analytic Items" @@ -5263,6 +18425,24 @@ msgstr "分析计划的适用范围" msgid "Analytic Plans" msgstr "分析计划" +#. modules: purchase, account +#: model:ir.model.fields,field_description:account.field_account_move_line__analytic_precision +#: model:ir.model.fields,field_description:account.field_account_reconcile_model_line__analytic_precision +#: model:ir.model.fields,field_description:purchase.field_purchase_order_line__analytic_precision +msgid "Analytic Precision" +msgstr "分析精度" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_account +#: model:ir.module.module,summary:base.module_mrp_account_enterprise +msgid "Analytic accounting in Manufacturing" +msgstr "制造分析会计" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_workorder_hr_account +msgid "Analytic cost of employee work in manufacturing" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__analytic_line_ids msgid "Analytic lines" @@ -5273,6 +18453,52 @@ msgstr "分析明细行" msgid "Analytics" msgstr "分析" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_member_list/channel_member_list.xml:0 +#, python-format +msgid "And" +msgstr "和" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_member_list/channel_member_list.xml:0 +#, python-format +msgid "And 1 other member." +msgstr "和另外 1 名其它成员." + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra" +msgstr "安道尔" + +#. module: base +#: model:ir.module.module,description:base.module_theme_anelusia +msgid "Anelusia Fashion Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_anelusia +msgid "Anelusia Theme" +msgstr "" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "安哥拉" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "安圭拉" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Animals & Nature" +msgstr "动物和自然" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Annual Inventory Day and Month" @@ -5292,35 +18518,84 @@ msgid "" "inventory date. Set to no month if no automatic annual inventory." msgstr "对于不在有周期性库存日期的地点的产品的年度库存月。如果没有自动年度库存,则设置为无月。" +#. module: mail +#. odoo-python +#. odoo-javascript +#: code:addons/mail/models/mail_channel.py:0 +#: code:addons/mail/static/src/components/message/message.xml:0 +#: code:addons/mail/static/src/models/message.js:0 +#, python-format +msgid "Anonymous" +msgstr "匿名" + #. module: maintenance #: model:ir.model.constraint,message:maintenance.constraint_maintenance_equipment_serial_no msgid "Another asset already exists with this serial number!" msgstr "已经有资产用到该序列号" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_location.py:0 #, python-format msgid "" "Another parent/sub replenish location %s exists, if you wish to change it, " "uncheck it first" -msgstr "" +msgstr "另一个父/子补充位置 %s 存在,如果您希望更改它,请先取消选中" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "Another user already has this barcode" +msgstr "另一用户已使用该条码" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "南极洲" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "安提瓜和巴布达" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "" "Any journal item on a payable account must have a due date and vice versa." -msgstr "应收/付账款上的日记账都必须有到期日。" +msgstr "应付账款科目上的任何日记账项目都必须有到期日,反之亦然." #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "" "Any journal item on a receivable account must have a due date and vice " "versa." -msgstr "应收账款账户上的任何日记账项目都必须有到期日,反之亦然。" +msgstr "应收账款科目上的任何日记账项目都必须有到期日,反之亦然." -#. modules: account, stock +#. module: base +#: model:ir.actions.client,name:base.modules_act_cl +#: model:ir.ui.menu,name:base.module_mi +msgid "App Store" +msgstr "应用商店" + +#. module: base +#: model:ir.model.fields,help:base.field_res_company__report_header +msgid "" +"Appears by default on the top right corner of your printed documents (report" +" header)." +msgstr "将出现在打印的报告的右上角(报告页眉)" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_asset__directive__append +msgid "Append" +msgstr "附加" + +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_account_tag__applicability #: model_terms:ir.ui.view,arch_db:stock.view_stock_rule_form msgid "Applicability" @@ -5351,9 +18626,32 @@ msgstr "可应用于产品类别" msgid "Applicable on Warehouse" msgstr "可应用于仓库" -#. modules: account, stock, mrp +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: model:ir.model.fields,field_description:base.field_ir_module_module__application +#: model:ir.model.fields,field_description:base.field_res_groups__category_id +msgid "Application" +msgstr "应用程序" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "应用程序术语" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template__model_id +msgid "Applies to" +msgstr "应用于" + +#. modules: account, mail, base, stock, mrp, stock_barcode +#. odoo-javascript +#: code:addons/mail/static/src/components/follower_subtype_list/follower_subtype_list.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 #: model_terms:ir.ui.view,arch_db:account.account_invoice_onboarding_sale_tax_form #: model_terms:ir.ui.view,arch_db:account.setup_financial_year_opening_form +#: model_terms:ir.ui.view,arch_db:base.base_onboarding_company_form +#: model_terms:ir.ui.view,arch_db:base.res_config_view_base #: model_terms:ir.ui.view,arch_db:mrp.view_assign_serial_numbers_production #: model_terms:ir.ui.view,arch_db:mrp.view_immediate_production #: model_terms:ir.ui.view,arch_db:stock.stock_inventory_adjustment_name_form_view @@ -5361,15 +18659,31 @@ msgstr "可应用于仓库" #: model_terms:ir.ui.view,arch_db:stock.view_immediate_transfer #: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_tree_inventory_editable #: model_terms:ir.ui.view,arch_db:stock.view_stock_track_confirmation +#, python-format msgid "Apply" msgstr "应用" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/views/list/inventory_report_list.xml:0 #, python-format msgid "Apply All" -msgstr "" +msgstr "应用全部" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade_install +#, python-format +msgid "Apply Schedule Upgrade" +msgstr "应用已安排的升级" + +#. module: base +#: model:ir.ui.menu,name:base.menu_view_base_module_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "应用已安排的升级" #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form @@ -5382,6 +18696,26 @@ msgstr "应用货物和服务交付到的欧盟国家的增值税。" msgid "Apply automatically this fiscal position." msgstr "自动应用该财政状况." +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_rule__perm_create +msgid "Apply for Create" +msgstr "应用在创建" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_rule__perm_unlink +msgid "Apply for Delete" +msgstr "应用在删除" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_rule__perm_read +msgid "Apply for Read" +msgstr "应用在读取" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_rule__perm_write +msgid "Apply for Write" +msgstr "应用在写入" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_bom_byproduct__bom_product_template_attribute_value_ids #: model:ir.model.fields,field_description:mrp.field_mrp_bom_line__bom_product_template_attribute_value_ids @@ -5414,6 +18748,64 @@ msgid "" "routes." msgstr "应用特定路线进行补货,而不是产品的默认路线。" +#. module: base +#: model:ir.module.module,shortdesc:base.module_appointment_crm +msgid "Appointment Lead Generation" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_appointment_sms +msgid "Appointment SMS" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_appointment_full +#: model:ir.module.module,summary:base.module_test_appointment_full +msgid "Appointment Testing Module" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_appointment +msgid "Appointments" +msgstr "预约" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_appraisal_skills +msgid "Appraisal - Skills" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_appraisal_survey +msgid "Appraisal - Survey" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_appraisal_contract +msgid "Appraisal Contract" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_appraisals +#: model:ir.module.module,shortdesc:base.module_hr_appraisal +msgid "Appraisals" +msgstr "评价" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_approvals +#: model:ir.module.module,shortdesc:base.module_approvals +msgid "Approvals" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_approvals_purchase +msgid "Approvals - Purchase" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_approvals_purchase_stock +msgid "Approvals - Purchase - Stock" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_change_production_qty_wizard msgid "Approve" @@ -5424,12 +18816,80 @@ msgstr "批准" msgid "Approve Order" msgstr "审批单" -#. modules: account, stock +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree +#: model:ir.ui.menu,name:base.menu_apps +#: model:ir.ui.menu,name:base.menu_management +#: model_terms:ir.ui.view,arch_db:base.module_tree +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Apps" +msgstr "应用" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_export__modules +msgid "Apps To Export" +msgstr "要导出的应用" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall +msgid "Apps to Uninstall" +msgstr "待卸载的应用" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__module_info +msgid "Apps to Update" +msgstr "要更新的应用" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Apps:" +msgstr "应用:" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__4 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__4 msgid "April" msgstr "四月" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Aquarius" +msgstr "水瓶座" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__arch_db +msgid "Arch Blob" +msgstr "结构 Blob" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__arch_fs +msgid "Arch Filename" +msgstr "结构文件名" + +#. module: base +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__arch_to_compare +msgid "Arch To Compare To" +msgstr "要比较的架构" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_enark +msgid "Architect, Corporate, Business, Finance, Services" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_view_form +msgid "Architecture" +msgstr "结构" + +#. module: base +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__arch_diff +msgid "Architecture Diff" +msgstr "结构差异" + #. module: maintenance #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__archive msgid "Archive" @@ -5440,8 +18900,8 @@ msgstr "存档" msgid "Archive Operation" msgstr "归档作业" -#. modules: maintenance, mrp_workorder, mrp, sale_management, stock, quality, -#. quality_control, account +#. modules: quality_control, mrp, account, sale_management, quality, mail, +#. base, stock, maintenance, mrp_workorder #: model_terms:ir.ui.view,arch_db:account.account_incoterms_form #: model_terms:ir.ui.view,arch_db:account.account_incoterms_view_search #: model_terms:ir.ui.view,arch_db:account.account_tag_view_form @@ -5454,6 +18914,29 @@ msgstr "归档作业" #: model_terms:ir.ui.view,arch_db:account.view_account_tax_template_search #: model_terms:ir.ui.view,arch_db:account.view_payment_term_form #: model_terms:ir.ui.view,arch_db:account.view_payment_term_search +#: model_terms:ir.ui.view,arch_db:base.edit_menu_access_search +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_mail_server_form +#: model_terms:ir.ui.view,arch_db:base.res_bank_view_search +#: model_terms:ir.ui.view,arch_db:base.res_partner_category_view_search +#: model_terms:ir.ui.view,arch_db:base.res_partner_industry_view_search +#: model_terms:ir.ui.view,arch_db:base.view_ir_mail_server_search +#: model_terms:ir.ui.view,arch_db:base.view_partner_bank_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_form +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +#: model_terms:ir.ui.view,arch_db:base.view_sequence_search +#: model_terms:ir.ui.view,arch_db:base.view_users_form +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_search +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_search +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_search +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search @@ -5485,50 +18968,194 @@ msgstr "归档作业" msgid "Archived" msgstr "已归档" +#. module: mail +#. odoo-python +#: code:addons/mail/models/res_users.py:0 +#, python-format +msgid "" +"Archived because %(user_name)s (#%(user_id)s) deleted the portal account" +msgstr "已存档,因为 %(user_name)s (%(user_id)s 删除了门户帐户" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Are you sure to execute the automatic merge of your contacts ?" +msgstr "确实要执行自动合并您的联系人?" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "" +"Are you sure to execute the list of automatic merges of your contacts ?" +msgstr "您确定要执行自动合并列表联系人?" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_cancel_operation_view +msgid "Are you sure you want to cancel this operation ?" +msgstr "你确定要取消这个操作吗?" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/delete_message_confirm/delete_message_confirm.xml:0 +#, python-format +msgid "Are you sure you want to delete this message?" +msgstr "您确定要删除此消息吗?" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +msgid "Are you sure you want to hide these onboarding tips?" +msgstr "您确定要隐藏这些入职提示吗?" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_template_reset_view_form +msgid "" +"Are you sure you want to reset these email templates to their original " +"configuration? Changes and translations will be lost." +msgstr "您确定要将这些电子邮件模板重置为原始配置吗? 更改和翻译将丢失。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_blacklist.py:0 +#: code:addons/mail/models/mail_thread_blacklist.py:0 +#, python-format +msgid "Are you sure you want to unblacklist this Email Address?" +msgstr "您确定要将此电子邮件地址取消列入黑名单吗?" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "阿根廷" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ar +msgid "Argentina - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ar_reports +msgid "Argentinean Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ar_edi +msgid "Argentinean Electronic Invoicing" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ar_website_sale +msgid "Argentinean eCommerce" +msgstr "" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_client__params +msgid "Arguments sent to the client along with the view tag" +msgstr "和视图标签一起发送给客户端的参数" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Aries" +msgstr "白羊座" + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "亚美尼亚" + #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order__effective_date msgid "Arrival" msgstr "到达" +#. module: base +#: model:ir.module.module,summary:base.module_theme_artists +msgid "" +"Artist, Arts, Galleries, Creative, Paintings, Photography, Shows, Stores" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_artists +msgid "Artists Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_artists +msgid "Artists Theme - Art Galleries, Photography, Painting" +msgstr "" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "阿鲁巴" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_picking__move_type__direct msgid "As soon as possible" msgstr "尽快" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Asia" +msgstr "亚洲" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__create_backorder__ask msgid "Ask" msgstr "提问" -#. module: account +#. module: base +#: model:ir.module.module,summary:base.module_hr_appraisal +msgid "Assess your employees" +msgstr "评估您的员工" + +#. modules: base, account +#: model:ir.model,name:base.model_ir_asset #: model:ir.model.fields.selection,name:account.selection__account_account__internal_group__asset msgid "Asset" msgstr "资产" -#. module: account -#. openerp-web +#. modules: base, account +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 +#: model:ir.actions.act_window,name:base.action_asset +#: model:ir.ui.menu,name:base.menu_action_asset #: model_terms:ir.ui.view,arch_db:account.view_account_search +#: model_terms:ir.ui.view,arch_db:base.asset_view_form +#: model_terms:ir.ui.view,arch_db:base.asset_view_search +#: model_terms:ir.ui.view,arch_db:base.asset_view_tree #, python-format msgid "Assets" msgstr "资产" -#. module: stock -#. openerp-web -#: code:addons/stock/static/src/components/reception_report_line/stock_reception_report_line.xml:0 -#, python-format -msgid "Assign" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_asset +msgid "Assets Management" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_asset_fleet +msgid "Assets/Fleet bridge" msgstr "" #. module: stock -#. openerp-web +#. odoo-javascript +#: code:addons/stock/static/src/components/reception_report_line/stock_reception_report_line.xml:0 +#, python-format +msgid "Assign" +msgstr "分配" + +#. module: stock +#. odoo-javascript #: code:addons/stock/static/src/components/reception_report_main/stock_reception_report_main.xml:0 #: code:addons/stock/static/src/components/reception_report_table/stock_reception_report_table.xml:0 #: code:addons/stock/static/src/xml/report_stock_reception.xml:0 #, python-format msgid "Assign All" -msgstr "" +msgstr "全部指定" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking__owner_id @@ -5550,6 +19177,35 @@ msgstr "分配序列号" msgid "Assign To User" msgstr "指派给用户" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_category_form +msgid "Assign tags to your contacts to organize, filter and track them." +msgstr "为您的联系人配置标签以组织、筛选和跟踪他们." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#: code:addons/mail/static/src/views/fields/assign_user_command_hook.js:0 +#, python-format +msgid "Assign to ..." +msgstr "指派给…" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/views/fields/assign_user_command_hook.js:0 +#, python-format +msgid "Assign/Unassign to me" +msgstr "指派/取消指派给我" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#, python-format +msgid "Assign/unassign to me" +msgstr "指派/取消指派给我" + #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search msgid "Assigned" @@ -5570,16 +19226,48 @@ msgstr "指派的移动" msgid "Assigned To" msgstr "分派给" -#. module: maintenance +#. modules: mail, maintenance +#. odoo-javascript +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#: model:ir.model.fields,field_description:mail.field_mail_activity__user_id #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search +#, python-format msgid "Assigned to" msgstr "分派给" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_activity.py:0 +#: code:addons/mail/models/mail_activity.py:0 +#, python-format +msgid "" +"Assigned user %s has no access to the document and is not able to handle " +"this activity." +msgstr "指定用户 %s 对单据无权限,无法处理这个活动 。" + +#. module: base +#: model:ir.module.module,description:base.module_website_sale_autocomplete +#: model:ir.module.module,summary:base.module_website_sale_autocomplete +msgid "" +"Assist your users with automatic completion & suggestions when filling their" +" address during checkout" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__account_ids msgid "Associated Account Templates" msgstr "关联的科目模板" +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__report_ids +msgid "Associated reports" +msgstr "关联报告" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_association +msgid "Associations Management" +msgstr "协会管理" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__reservation_method__at_confirm msgid "At Confirmation" @@ -5590,7 +19278,15 @@ msgstr "确认时" msgid "At Date" msgstr "即日" +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "At least one language must be active." +msgstr "至少要启用一种语言." + #. module: account +#. odoo-python #: code:addons/account/populate/res_company.py:0 #, python-format msgid "" @@ -5618,23 +19314,40 @@ msgstr "在制造订单创建时。" msgid "At the creation of a Stock Transfer." msgstr "在库存调拨创建时。" -#. module: account +#. modules: mail, account #: model_terms:ir.ui.view,arch_db:account.account_invoice_send_wizard_form #: model_terms:ir.ui.view,arch_db:account.account_tour_upload_bill +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form msgid "Attach a file" msgstr "添加附件" -#. module: mrp +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_attachment +msgid "Attach a new document" +msgstr "附加新文件" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_box/attachment_box.xml:0 +#, python-format +msgid "Attach files" +msgstr "附加文件" + +#. modules: base, mrp +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_document_form msgid "Attached To" msgstr "附加于" -#. module: account +#. modules: mail, base, account +#: model:ir.model,name:mail.model_ir_attachment #: model:ir.model.fields,field_description:account.field_account_bank_statement__attachment_ids +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__attachment_ids +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search msgid "Attachment" msgstr "附件" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_attachment_count #: model:ir.model.fields,field_description:account.field_account_account_template__message_attachment_count #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_attachment_count @@ -5645,6 +19358,13 @@ msgstr "附件" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_attachment_count #: model:ir.model.fields,field_description:account.field_res_company__message_attachment_count #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_res_partner__message_attachment_count +#: model:ir.model.fields,field_description:mail.field_res_users__message_attachment_count #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_attachment_count #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_attachment_count #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_attachment_count @@ -5667,16 +19387,37 @@ msgstr "附件数量" msgid "Attachment URL" msgstr "附件网址" -#. modules: account, mrp -#. openerp-web +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#, python-format +msgid "Attachment counter loading..." +msgstr "附件计数器加载中..." + +#. modules: mail, base, mrp, account +#. odoo-python +#. odoo-javascript +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 #: code:addons/mrp/models/mrp_bom.py:0 #: code:addons/mrp/static/src/components/bom_overview_line/mrp_bom_overview_line.js:0 #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 +#: model:ir.actions.act_window,name:base.action_attachment #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__attachment_ids #: model:ir.model.fields,field_description:account.field_account_invoice_send__attachment_ids #: model:ir.model.fields,field_description:account.field_account_move__attachment_ids #: model:ir.model.fields,field_description:account.field_account_payment__attachment_ids #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill__attachment_ids +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__attachment_ids +#: model:ir.model.fields,field_description:mail.field_mail_mail__attachment_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__attachment_ids +#: model:ir.model.fields,field_description:mail.field_mail_template__attachment_ids +#: model:ir.ui.menu,name:base.menu_action_attachment +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +#: model_terms:ir.ui.view,arch_db:base.view_attachment_tree +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_document_form #, python-format msgid "Attachments" @@ -5687,6 +19428,46 @@ msgstr "附件" msgid "Attachments Count" msgstr "附件数" +#. module: base +#: model:ir.module.module,shortdesc:base.module_attachment_indexation +msgid "Attachments List and Document Indexation" +msgstr "附件列出以及单据索引" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_holidays_attendance +msgid "Attendance Holidays" +msgstr "出勤假期" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_attendances +#: model:ir.module.module,shortdesc:base.module_hr_attendance +msgid "Attendances" +msgstr "出勤" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_attendance_mobile +msgid "Attendances Barcode in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_attendance_mobile +msgid "Attendances Barcode scan in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_mass_mailing +#: model:ir.module.module,summary:base.module_website_mass_mailing_sms +msgid "Attract visitors to subscribe to mailing lists" +msgstr "吸引访问者订阅邮件列表" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Attribute %(attribute)s evaluation expects a boolean, got %(value)s" +msgstr "属性 %(attribute)s 评估需要一个布尔值,得到 %(value)s" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_production__product_variant_attributes msgid "Attribute Values" @@ -5704,35 +19485,168 @@ msgstr "属性" msgid "Auditable" msgstr "可审计" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__8 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__8 msgid "August" msgstr "八月" -#. module: account +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: model:res.country,name:base.au +#, python-format +msgid "Australia" +msgstr "澳大利亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_au +msgid "Australia - Accounting" +msgstr "Australian - Accounting" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_au_keypay +msgid "Australian Payroll using KeyPay Integration" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_au_reports +msgid "Australian Reports - Accounting" +msgstr "" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "奥地利" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_at +msgid "Austria - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_at_reports +msgid "Austria - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_at_reports +msgid "Austrian Financial Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_at +msgid "Austrian Standardized Charts & Tax" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"Authenticate by using SSL certificates, belonging to your domain name. \n" +"SSL certificates allow you to authenticate your mail server for the entire domain name." +msgstr "" +"使用您域名的SSL证书进行身份验证。\n" +"您可以使用SSL证书在整个域名中对邮件服务器进行身份验证。" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__smtp_authentication +msgid "Authenticate with" +msgstr "认证以" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_alias__alias_contact__partners +msgid "Authenticated Partners" +msgstr "身份验证过的业务伙伴" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__smtp_authentication_info +msgid "Authentication Info" +msgstr "身份验证信息" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_ldap +msgid "Authentication via LDAP" +msgstr "使用 LDAP验证身份" + +#. modules: mail, base, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__author_id +#: model:ir.model.fields,field_description:base.field_ir_module_module__author +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__author_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__author_id +#: model:ir.model.fields,field_description:mail.field_mail_message__author_id +#: model:ir.model.fields,field_description:mail.field_mail_notification__author_id +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search msgid "Author" msgstr "作者" -#. module: account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Author Name" +msgstr "作者名字" + +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__author_id +#: model:ir.model.fields,help:mail.field_mail_compose_message__author_id +#: model:ir.model.fields,help:mail.field_mail_mail__author_id +#: model:ir.model.fields,help:mail.field_mail_message__author_id msgid "" "Author of the message. If not set, email_from may hold an email address that" " did not match any partner." msgstr "消息的作者。如果没设置,email_from 可能保存一个不匹配任何合作伙伴的EMail地址." +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__author_avatar +#: model:ir.model.fields,field_description:mail.field_mail_message__author_avatar +msgid "Author's avatar" +msgstr "作者形象" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__group_public_id +msgid "Authorized Group" +msgstr "授权群组" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_warehouse_orderpoint__trigger__auto msgid "Auto" msgstr "自动" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__auto_delete +#: model:ir.model.fields,field_description:mail.field_mail_template__auto_delete +msgid "Auto Delete" +msgstr "自动删除" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency__auto_install_required +msgid "Auto Install Required" +msgstr "需要自动安装" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_search msgid "Auto Reconcile" msgstr "自动调节" -#. modules: account, purchase +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_form +msgid "Auto Subscribe Groups" +msgstr "自动订阅组" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__group_ids +msgid "Auto Subscription" +msgstr "自动订阅" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_message_subtype_form +msgid "Auto subscription" +msgstr "自动订阅" + +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:purchase.view_move_form_inherit_purchase msgid "Auto-Complete" @@ -5766,6 +19680,11 @@ msgstr "自动完成过去的账单." msgid "Auto-complete from a past purchase order." msgstr "参照以往订单自动完成。" +#. module: base +#: model:ir.module.module,summary:base.module_partner_autocomplete +msgid "Auto-complete partner companies' data" +msgstr "自动完成联系人公司的数据" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__payment_ids msgid "Auto-generated Payments" @@ -5796,12 +19715,23 @@ msgstr "自动验证" msgid "Automate Orders" msgstr "自动订单" -#. module: stock_account -#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time -msgid "Automated" -msgstr "自动" +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_automation +msgid "Automated Action Rules" +msgstr "自动动作规则" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_automation_hr_contract +msgid "Automated Action based on Employee Contracts" +msgstr "" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__automated +msgid "Automated activity" +msgstr "自动活动" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: code:addons/account/models/company.py:0 #, python-format @@ -5823,6 +19753,16 @@ msgstr "自动输入" msgid "Automatic Entry Default Journal" msgstr "自动录入默认日记帐" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__auto_install +msgid "Automatic Installation" +msgstr "自动安装" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Automatic Merge Wizard" +msgstr "自动合并向导" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_rule__auto msgid "Automatic Move" @@ -5833,11 +19773,36 @@ msgstr "自动移动" msgid "Automatic No Step Added" msgstr "自动,不增加步骤" +#. module: base +#: model:ir.model,name:base.model_ir_autovacuum +msgid "Automatic Vacuum" +msgstr "自动清空" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#, python-format +msgid "Automatic install of downloaded Apps is currently disabled." +msgstr "自动安装下载的APP,当前不可用." + #. module: account #: model:ir.model,name:account.model_sequence_mixin msgid "Automatic sequence" msgstr "自动序列" +#. module: base +#: model:ir.module.module,summary:base.module_hr_contract_salary_holidays +msgid "Automatically creates extra time-off on contract signature" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_invoice_extract_purchase +msgid "" +"Automatically finds the purchase order linked to a vendor bill when using " +"invoice extraction" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "Automatically lock confirmed orders to prevent editing" @@ -5848,6 +19813,12 @@ msgstr "自动锁定已确定的订单以防止编辑" msgid "Automatically remind the receipt date to your vendors" msgstr "自动提醒收货日期到您的供应商" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_activity_type__triggered_next_type_id +msgid "" +"Automatically schedule this activity once the current one is marked as done." +msgstr "将当前活动标记为完成后,自动安排此活动。" + #. module: purchase #: model:ir.model.fields,help:purchase.field_purchase_order__receipt_reminder_email #: model:ir.model.fields,help:purchase.field_res_partner__receipt_reminder_email @@ -5858,22 +19829,27 @@ msgid "" "expected receipt date, asking him to confirm the exact date." msgstr "在预计的收货日期前X天自动向供应商发送确认电子邮件,要求供应商确认确切日期。" +#. module: base +#: model:ir.ui.menu,name:base.menu_automation +msgid "Automation" +msgstr "自动化" + #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_display_filter/mrp_bom_overview_display_filter.js:0 #, python-format msgid "Availabilities" -msgstr "" +msgstr "可用性" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #, python-format msgid "Availabilities on products." -msgstr "" +msgstr "产品可用数量" -#. modules: mrp_workorder, account, mrp -#. openerp-web +#. modules: mrp_workorder, mrp, account +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model:ir.model.fields,field_description:account.field_account_report__availability_condition #: model:ir.model.fields.selection,name:mrp.selection__mrp_workcenter_productivity_loss_type__loss_type__availability @@ -5889,7 +19865,8 @@ msgid "Availability Losses" msgstr "可用性损失" #. modules: stock, mrp -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/mrp/models/mrp_production.py:0 #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #: code:addons/stock/models/stock_picking.py:0 @@ -5935,37 +19912,135 @@ msgstr "可用的产品" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant__available_quantity #: model_terms:ir.ui.view,arch_db:stock.replenishment_option_tree_view +#: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_form_editable #: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_tree_inventory_editable msgid "Available Quantity" msgstr "可用数量" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_form +msgid "Available for User" +msgstr "可供用户使用" + #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Available quantity should be set to zero before changing type" msgstr "更改类型之前,可用数量应设置为零" -#. module: mrp +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_avantgarde +msgid "Avantgarde Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_avantgarde +msgid "Avantgarde is a sophisticated theme to inspire and impress" +msgstr "" + +#. modules: mail, base, mrp +#. odoo-javascript +#: code:addons/mail/static/src/components/call_invite_request_popup/call_invite_request_popup.xml:0 +#: code:addons/mail/static/src/components/call_participant_card/call_participant_card.xml:0 +#: code:addons/mail/static/src/components/channel_invitation_form_selectable_partner/channel_invitation_form_selectable_partner.xml:0 +#: code:addons/mail/static/src/components/channel_member/channel_member.xml:0 +#: code:addons/mail/static/src/components/message_in_reply_to_view/message_in_reply_to_view.xml:0 +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#: model:ir.model.fields,field_description:base.field_avatar_mixin__avatar_1920 +#: model:ir.model.fields,field_description:base.field_res_partner__avatar_1920 +#: model:ir.model.fields,field_description:base.field_res_users__avatar_1920 +#: model:ir.model.fields,field_description:mail.field_mail_channel__avatar_128 +#: model:ir.model.fields,field_description:mail.field_mail_guest__avatar_1920 +#: model_terms:ir.ui.view,arch_db:base.view_res_users_kanban #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_kanban +#, python-format msgid "Avatar" msgstr "形象" +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__avatar_1024 +#: model:ir.model.fields,field_description:base.field_res_partner__avatar_1024 +#: model:ir.model.fields,field_description:base.field_res_users__avatar_1024 +#: model:ir.model.fields,field_description:mail.field_mail_guest__avatar_1024 +msgid "Avatar 1024" +msgstr "形象 1024" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__avatar_128 +#: model:ir.model.fields,field_description:base.field_res_partner__avatar_128 +#: model:ir.model.fields,field_description:base.field_res_users__avatar_128 +#: model:ir.model.fields,field_description:mail.field_mail_guest__avatar_128 +msgid "Avatar 128" +msgstr "形象 128" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__avatar_256 +#: model:ir.model.fields,field_description:base.field_res_partner__avatar_256 +#: model:ir.model.fields,field_description:base.field_res_users__avatar_256 +#: model:ir.model.fields,field_description:mail.field_mail_guest__avatar_256 +msgid "Avatar 256" +msgstr "形象 256" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__avatar_512 +#: model:ir.model.fields,field_description:base.field_res_partner__avatar_512 +#: model:ir.model.fields,field_description:base.field_res_users__avatar_512 +#: model:ir.model.fields,field_description:mail.field_mail_guest__avatar_512 +msgid "Avatar 512" +msgstr "形象 512" + +#. module: base +#: model:ir.model,name:base.model_avatar_mixin +msgid "Avatar Mixin" +msgstr "形象混入" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_request/notification_request.xml:0 +#, python-format +msgid "Avatar of OdooBot" +msgstr "OdooBot的形象" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Avatar of guest" +msgstr "游客形象" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Avatar of user" +msgstr "游客形象" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_avatax +msgid "Avatax" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_avatax_sale +msgid "Avatax for SO" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_avatax_sale_subscription +msgid "Avatax for Subscriptions" +msgstr "" + #. module: quality_control #: model:ir.model.fields,field_description:quality_control.field_quality_point__average msgid "Average" msgstr "平均" -#. modules: purchase, stock_account +#. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_report__price_average -#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost msgid "Average Cost" msgstr "平均成本" -#. module: stock_account -#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average -msgid "Average Cost (AVCO)" -msgstr "平均成本(AVCO)" - #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_report__avg_days_to_purchase msgid "Average Days to Purchase" @@ -5992,13 +20067,123 @@ msgid "" msgstr "制造此产品的平均交货时间(天)。在多级物料清单的情况下,将增加组件的制造提前期。如果产品是分包的,这可用于确定将组件发送给分包商的日期。" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "Avg Order Value" +msgstr "平均订单价值" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_aviato +msgid "Aviato Theme" msgstr "" +#. module: base +#: model:ir.module.module,description:base.module_theme_aviato +msgid "Aviato Theme - Responsive Bootstrap Theme for Odoo CMS" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_documents_fsm +msgid "Avoid auto-enabling the documents feature on fsm projects" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#, python-format +msgid "Away" +msgstr "离开" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "阿塞拜疆" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_B +msgid "B - MINING AND QUARRYING" +msgstr "B - 采矿和采石业" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "B button (blood type)" +msgstr "B按钮(血型)" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b0 +msgid "B0 14 1000 x 1414 mm" +msgstr "B0 14 1000 x 1414 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b1 +msgid "B1 15 707 x 1000 mm" +msgstr "B1 15 707 x 1000 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b10 +msgid "B10 16 31 x 44 mm" +msgstr "B10 16 31 x 44 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b2 +msgid "B2 17 500 x 707 mm" +msgstr "B2 17 500 x 707 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b3 +msgid "B3 18 353 x 500 mm" +msgstr "B3 18 353 x 500 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b4 +msgid "B4 19 250 x 353 mm" +msgstr "B4 19 250 x 353 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b5 +msgid "B5 1 176 x 250 mm, 6.93 x 9.84 inches" +msgstr "B5 1 176 x 250 毫米, 6.93 x 9.84 英寸" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b6 +msgid "B6 20 125 x 176 mm" +msgstr "B6 20 125 x 176 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b7 +msgid "B7 21 88 x 125 mm" +msgstr "B7 21 88 x 125 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b8 +msgid "B8 22 62 x 88 mm" +msgstr "B8 22 62 x 88 毫米" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__b9 +msgid "B9 23 33 x 62 mm" +msgstr "B9 23 33 x 62 毫米" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "BACK" +msgstr "返回" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "BACK arrow" +msgstr "后退箭头" + #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "BILL" @@ -6038,6 +20223,11 @@ msgstr "" msgid "BT40" msgstr "" +#. module: sf_base +#: model:ir.model.fields.selection,name:sf_base.selection__sf_machine_tool_type__knife_type__bt50 +msgid "BT50" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking__backorder_id msgid "Back Order of" @@ -6049,8 +20239,27 @@ msgstr "欠单" msgid "Back Orders" msgstr "欠单" -#. module: stock -#: model:ir.model,name:stock.model_stock_backorder_confirmation +#. module: base +#: model:ir.module.category,name:base.module_category_themes_backend +msgid "Backend" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__layout_background_image +msgid "Background Image" +msgstr "背景图像" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Background blur intensity" +msgstr "背景模糊强度" + +#. module: stock_barcode +#: model:ir.model,name:stock_barcode.model_stock_backorder_confirmation msgid "Backorder Confirmation" msgstr "欠单确认" @@ -6067,12 +20276,14 @@ msgid "Backorder Confirmation Lines" msgstr "欠单确认明细行" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "Backorder MO" msgstr "欠单MO" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "Backorder MO's" @@ -6100,11 +20311,35 @@ msgstr "欠单顺序,如果等于0表示没有相关的欠单" msgid "Backorders" msgstr "欠单" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Bactrian" +msgstr "大夏" + #. module: account #: model:ir.model.fields.selection,name:account.selection__res_partner__trust__bad msgid "Bad Debtor" msgstr "信用差的债务人" +#. module: base +#. odoo-python +#: code:addons/translate.py:0 +#, python-format +msgid "Bad file format: %s" +msgstr "错误的文件格式: %s" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "巴哈马" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "巴林" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__balance #: model:ir.model.fields.selection,name:account.selection__account_payment_term_line__value__balance @@ -6112,29 +20347,43 @@ msgid "Balance" msgstr "余额" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 #, python-format msgid "Balance Sheet" -msgstr "" +msgstr "资产负债表" #. module: account +#. odoo-python #: code:addons/account/models/account_reconcile_model.py:0 #, python-format msgid "Balance percentage can't be 0" msgstr "余额百分比不能为0" -#. module: account +#. module: base +#: model:ir.module.module,summary:base.module_theme_notes +msgid "Band, Musics, Sound, Concerts, Artists, Records, Event, Food, Stores" +msgstr "" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "孟加拉" + +#. modules: base, account +#. odoo-python #: code:addons/account/models/chart_template.py:0 +#: model:ir.model,name:base.model_res_bank #: model:ir.model.fields,field_description:account.field_account_journal__bank_id #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__bank_id #: model:ir.model.fields,field_description:account.field_res_partner__bank_account_count -#: model:ir.model.fields,field_description:account.field_res_partner_bank__bank_id #: model:ir.model.fields,field_description:account.field_res_users__bank_account_count +#: model:ir.model.fields,field_description:base.field_res_partner_bank__bank_id #: model:ir.model.fields.selection,name:account.selection__account_journal__type__bank #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_form #, python-format msgid "Bank" msgstr "银行" @@ -6152,18 +20401,21 @@ msgid "Bank Account" msgstr "银行账户" #. module: account +#. odoo-python #: code:addons/account/models/res_partner_bank.py:0 #, python-format msgid "Bank Account %s created" msgstr "已创建银行帐户 %s" #. module: account +#. odoo-python #: code:addons/account/models/res_partner_bank.py:0 #, python-format msgid "Bank Account %s updated" msgstr "银行帐户 %s 已更新" #. module: account +#. odoo-python #: code:addons/account/models/res_partner_bank.py:0 #, python-format msgid "Bank Account %s with number %s deleted" @@ -6184,18 +20436,29 @@ msgid "" "Partner bank account number." msgstr "已支付的结算单将记录银行账号。如果这是客户结算单或供应商退款通知,则是公司银行账户,否则是合作伙伴银行账号。" -#. module: account -#: model:ir.model,name:account.model_res_partner_bank +#. modules: base, account +#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form +#: model:ir.model,name:base.model_res_partner_bank #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form +#: model_terms:ir.ui.view,arch_db:base.res_partner_view_form_private +#: model_terms:ir.ui.view,arch_db:base.view_partner_bank_search +#: model_terms:ir.ui.view,arch_db:base.view_partner_bank_tree msgid "Bank Accounts" msgstr "银行账户" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_form +msgid "Bank Address" +msgstr "银行地址" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__bank_statements_source msgid "Bank Feeds" msgstr "银行费用" -#. module: account +#. modules: base, account +#: model:ir.model.fields,field_description:base.field_res_bank__bic +#: model:ir.model.fields,field_description:base.field_res_partner_bank__bank_bic #: model_terms:ir.ui.view,arch_db:account.setup_bank_account_wizard msgid "Bank Identifier Code" msgstr "银行识别代码" @@ -6210,6 +20473,11 @@ msgstr "银行日记账" msgid "Bank Matched" msgstr "银行匹配" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_bank_search +msgid "Bank Name" +msgstr "银行名称" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__bank_partner_id #: model:ir.model.fields,field_description:account.field_account_move__bank_partner_id @@ -6245,6 +20513,7 @@ msgid "Bank Statements" msgstr "银行对账单" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #: model:ir.model.fields,field_description:account.field_res_config_settings__account_journal_suspense_account_id #, python-format @@ -6252,6 +20521,7 @@ msgid "Bank Suspense Account" msgstr "银行担保账户" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Bank Transaction" @@ -6271,8 +20541,14 @@ msgstr "" "银行交易在导入或同步后立即发布。他们的对手是银行暂记账户。\n" "对账将后者替换为最终账户。" -#. module: account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_bank_form +msgid "Bank account" +msgstr "银行帐户" + +#. modules: base, account #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__acc_type +#: model:ir.model.fields,help:base.field_res_partner_bank__acc_type msgid "" "Bank account type: Normal or IBAN. Inferred from the bank account number." msgstr "银行账户类型:正常或IBAN。从银行账号推断。" @@ -6297,37 +20573,114 @@ msgid "" msgstr "银行对帐单交易将发布在暂记帐户中,直到最终核对允许找到正确的帐户为止。" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Bank: Balance" msgstr "银行:余额" -#. module: account +#. modules: base, account +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.model.fields,field_description:base.field_res_company__bank_ids +#: model:ir.model.fields,field_description:base.field_res_partner__bank_ids +#: model:ir.model.fields,field_description:base.field_res_users__bank_ids #: model:ir.ui.menu,name:account.account_banks_menu +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_tree msgid "Banks" msgstr "银行" -#. modules: stock, mrp +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_bank_form +msgid "" +"Banks are the financial institutions at which you and your contacts have " +"their accounts." +msgstr "银行是您和您的联系人拥有账户的金融机构." + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "巴巴多斯" + +#. modules: stock, base, mrp, stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: model:ir.actions.client,name:stock_barcode.stock_barcode_action_main_menu +#: model:ir.model.fields,field_description:base.field_res_partner__barcode +#: model:ir.model.fields,field_description:base.field_res_users__barcode #: model:ir.model.fields,field_description:stock.field_stock_location__barcode #: model:ir.model.fields,field_description:stock.field_stock_package_type__barcode #: model:ir.model.fields,field_description:stock.field_stock_picking_type__barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_move_line__product_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_scrap__product_barcode +#: model:ir.module.category,name:base.module_category_human_resources_barcode +#: model:ir.module.module,shortdesc:base.module_barcodes +#: model:ir.module.module,shortdesc:base.module_stock_barcode +#: model:ir.ui.menu,name:stock_barcode.stock_barcode_menu #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_production_components #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form +#, python-format msgid "Barcode" msgstr "条码" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Barcode %s" +msgstr "条码%s" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_barcodes_gs1_nomenclature +msgid "Barcode - GS1 Nomenclature" +msgstr "条码 - GS1 命名法" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_view_picking_type_form +msgid "Barcode App" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_stock_barcode_product_expiry +msgid "Barcode Expiry" +msgstr "" + +#. module: stock_barcode +#: model:ir.actions.client,name:stock_barcode.stock_barcode_inventory_client_action +msgid "Barcode Inventory Client Action" +msgstr "条形码库存客户端动作" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.res_config_settings_view_form +msgid "Barcode Nomenclature" +msgstr "条码命名规则" + #. module: stock #: model:ir.ui.menu,name:stock.menu_wms_barcode_nomenclature_all msgid "Barcode Nomenclatures" msgstr "条码命名规则" +#. module: stock_barcode +#: model:ir.actions.client,name:stock_barcode.stock_barcode_picking_client_action +msgid "Barcode Picking Client Action" +msgstr "条码拣货客户端动作" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_stock_barcode_quality_control +msgid "Barcode Quality bridge module" +msgstr "" + #. module: stock #: model:ir.model,name:stock.model_barcode_rule msgid "Barcode Rule" msgstr "条码规则" -#. module: sf_manufacturing +#. modules: sf_manufacturing, stock_barcode #: model:ir.model.fields,field_description:sf_manufacturing.field_mrp_workorder___barcode_scanned +#: model:ir.model.fields,field_description:stock_barcode.field_stock_scrap___barcode_scanned msgid "Barcode Scanned" msgstr "扫描到条码" @@ -6336,17 +20689,79 @@ msgstr "扫描到条码" msgid "Barcode Scanner" msgstr "条码扫描器" +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#, python-format +msgid "Barcode Scanning" +msgstr "条码扫描" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_stock_barcode_picking_batch +msgid "Barcode for Batch Transfer" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_barcodes_mobile +msgid "Barcode in Mobile" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_product_product__valid_ean msgid "Barcode is valid EAN" msgstr "条码是有效 EAN" -#. module: account +#. module: base +#: model:ir.module.module,summary:base.module_barcodes_mobile +msgid "Barcode scan in Mobile" +msgstr "" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_model.js:0 +#, python-format +msgid "Barcode scan is ambiguous with several model: %s. Use the most likely." +msgstr "条形码扫描在几个模型上是模糊:%s.使用最可能的。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Barcode symbology" +msgstr "条码符号" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Barcode type, eg: UPCA, EAN13, Code128" +msgstr "条码类型, 例如: UPCA, EAN13, Code128" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_stock_barcode_quality_control_picking_batch +msgid "Barcode/Quality/Batch Transfer bridge module" +msgstr "" + +#. modules: mail, base, account +#: model:ir.model,name:mail.model_base #: model:ir.model.fields.selection,name:account.selection__account_tax_repartition_line__repartition_type__base #: model:ir.model.fields.selection,name:account.selection__account_tax_repartition_line_template__repartition_type__base +#: model:ir.module.category,name:base.module_category_base +#: model:ir.module.module,shortdesc:base.module_base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_model_search msgid "Base" msgstr "基础" +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_install_request +msgid "Base - Module Install Request" +msgstr "基础—模块安装请求" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax__is_base_affected #: model:ir.model.fields,field_description:account.field_account_tax_template__is_base_affected @@ -6358,6 +20773,44 @@ msgstr "受以前税影响的基数" msgid "Base Amount" msgstr "基本金额" +#. module: base +#: model:ir.module.module,summary:base.module_test_base_automation +msgid "Base Automation Tests: Ensure Flow Robustness" +msgstr "基础自动化测试: 确保流程稳健性" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_model_fields__state__base +msgid "Base Field" +msgstr "基础字段" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "Base Import" +msgstr "基础导入" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_mapping +msgid "Base Import Mapping" +msgstr "基础导入对照" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted." +msgstr "不能删除基础语言 \"en_US\"." + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_model__state__base +msgid "Base Object" +msgstr "基础对像" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "Base Properties" +msgstr "基础属性" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__property_cash_basis_base_account_id #: model:ir.model.fields,field_description:account.field_res_company__account_cash_basis_base_account_id @@ -6365,12 +20818,48 @@ msgstr "基本金额" msgid "Base Tax Received Account" msgstr "基本税应收科目" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_template__template_category__base_template +msgid "Base Template" +msgstr "基础模板" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_template_search +msgid "Base Templates" +msgstr "基础模板" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__arch_base +msgid "Base View Architecture" +msgstr "基本视图结构" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_import +msgid "Base import" +msgstr "基础导入" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_import_module +msgid "Base import module" +msgstr "基础导入 模块" + #. module: account #: model:ir.model.fields,help:account.field_account_tax_repartition_line__repartition_type #: model:ir.model.fields,help:account.field_account_tax_repartition_line_template__repartition_type msgid "Base on which the factor will be applied." msgstr "将应用该因子的基础。" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__mode__primary +msgid "Base view" +msgstr "基本视图" + +#. module: base +#: model:ir.actions.server,name:base.autovacuum_job_ir_actions_server +#: model:ir.cron,cron_name:base.autovacuum_job +msgid "Base: Auto-vacuum internal data" +msgstr "基础:自动清理内部数据" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax_repartition_line__repartition_type #: model:ir.model.fields,field_description:account.field_account_tax_repartition_line_template__repartition_type @@ -6410,43 +20899,251 @@ msgstr "" msgid "Based on Payment" msgstr "基于付款" +#. module: base +#: model:ir.module.module,summary:base.module_web_grid +msgid "Basic 2D Grid view for odoo" +msgstr "基本的2D矩阵视图" + +#. module: base +#: model:ir.module.module,summary:base.module_web_cohort +msgid "Basic Cohort view for odoo" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_quality +msgid "Basic Feature for Quality" +msgstr "质量的基本特征" + +#. module: base +#: model:ir.module.module,summary:base.module_iap +msgid "Basic models and helpers to support In-App purchases." +msgstr "支持应用内购买的基本模型和助手." + +#. module: base +#: model:ir.module.module,summary:base.module_iot +msgid "Basic models and helpers to support Internet of Things." +msgstr "" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Batch Import" +msgstr "批量导入" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_batch_payment +msgid "Batch Payment" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Batch Payments" msgstr "批量付款" +#. module: base +#: model:ir.module.module,summary:base.module_delivery_stock_picking_batch +msgid "Batch Transfer, Carrier" +msgstr "批量调拨,承运商" + #. module: stock #: model:ir.model.fields,field_description:stock.field_res_config_settings__module_stock_picking_batch msgid "Batch Transfers" msgstr "批量调拨" -#. module: account -#. openerp-web +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Batch limit" +msgstr "批量限制" + +#. module: base +#: model:ir.module.module,description:base.module_theme_bewise +#: model:ir.module.module,shortdesc:base.module_theme_bewise +msgid "Be Wise Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_ar_website_sale +msgid "" +"Be able to see Identification Type and AFIP Responsibility in ecommerce " +"checkout form." +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_view_form +msgid "" +"Be aware that editing the architecture of a standard view is not advised, since the changes will be overwritten during future module updates.
    \n" +" We recommend applying modifications to standard views through inherited views or customization with Odoo Studio." +msgstr "" +"请注意,不推荐编辑标准视图的结构,因为在将来的模块更新期间更改将被复盖.
    我们推荐通过继承视图或应用 Odoo Studio " +"进行自定来对标准视图进行修改." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_beauty +msgid "Beauty Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_beauty +msgid "Beauty Theme - Cosmetics, Beauty, Make Up, Hairdresser" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_beauty +msgid "Beauty, Health, Care, Make Up, Cosmetics, Hair Dressers, Stores" +msgstr "" + +#. modules: base, account +#. odoo-javascript #: code:addons/account/static/src/components/account_resequence/account_resequence.xml:0 +#: model:ir.model.fields.selection,name:base.selection__ir_asset__directive__before #, python-format msgid "Before" -msgstr "" +msgstr "在之前" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_country__name_position__before +msgid "Before Address" +msgstr "地址前" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_currency__position__before +msgid "Before Amount" +msgstr "金额前面" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "" +"Before clicking on 'Change Password', you have to write a new password." +msgstr "在点选「更改密码」之前,您必须填写新密码." #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__reservation_method__by_date msgid "Before scheduled date" msgstr "在预定日期之前" -#. module: account +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "白俄罗斯" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_intrastat +msgid "Belgian Intrastat Declaration" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_attendance +msgid "Belgian Payroll - Attendance" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_blackbox_be +msgid "Belgian Registered Cash Register" +msgstr "" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "比利时" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be +msgid "Belgium - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_reports +msgid "Belgium - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_reports_post_wizard +msgid "Belgium - Accounting Reports (post wizard)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_reports_sms +msgid "Belgium - Accounting Reports - SMS" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_disallowed_expenses +msgid "Belgium - Disallowed Expenses Data" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_coda +msgid "Belgium - Import Bank CODA Statements" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_soda +msgid "Belgium - Import SODA files" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll +msgid "Belgium - Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_dimona +msgid "Belgium - Payroll - Dimona" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_fleet +msgid "Belgium - Payroll - Fleet" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_account +msgid "Belgium - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "伯利兹" + +#. modules: stock, base, account #: model_terms:ir.ui.view,arch_db:account.account_default_terms_and_conditions +#: model_terms:res.company,invoice_terms_html:base.main_company +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 msgid "" "Below text serves as a suggestion and doesn’t engage Odoo S.A. " "responsibility." msgstr "以下文字仅供参考,Odoo S.A.不承担责任。" +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "贝宁" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "百慕大群岛" + #. module: mrp_workorder -#. openerp-web +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #, python-format msgid "Best Time! Congratulations!" msgstr "" +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "不丹" + #. module: account #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__bank_bic msgid "Bic" @@ -6488,7 +21185,7 @@ msgstr "账单明细行" msgid "Bill Reference" msgstr "账单参照" -#. modules: sf_manufacturing, mrp_workorder, mrp +#. modules: sf_manufacturing, mrp, mrp_workorder #: model:ir.model,name:sf_manufacturing.model_mrp_bom #: model:ir.model.fields,field_description:mrp.field_mrp_production__bom_id #: model:ir.model.fields,field_description:mrp.field_mrp_unbuild__bom_id @@ -6538,6 +21235,11 @@ msgid "" "make a finished product." msgstr "材料明细表允许您定义制造成品所需的组件清单。" +#. module: base +#: model:ir.module.module,summary:base.module_website_delivery_ups +msgid "Bill to your UPS account number" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Billed" @@ -6573,7 +21275,8 @@ msgstr "账单管理员" msgid "Billing Status" msgstr "账单状态" -#. modules: account, purchase +#. modules: purchase, account +#. odoo-python #: code:addons/account/controllers/portal.py:0 #: model:ir.actions.act_window,name:account.action_move_in_invoice_type #: model:ir.model.fields,field_description:purchase.field_purchase_order__invoice_ids @@ -6620,10 +21323,102 @@ msgid "Bills to Validate" msgstr "待验证账单" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Bills to pay" -msgstr "待付账单" +msgstr "待支付账单" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__binary +msgid "Binary" +msgstr "二进制数据" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_client__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_report__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_server__binding_model_id +#: model:ir.model.fields,field_description:base.field_ir_cron__binding_model_id +msgid "Binding Model" +msgstr "绑定模型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_client__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_report__binding_type +#: model:ir.model.fields,field_description:base.field_ir_actions_server__binding_type +#: model:ir.model.fields,field_description:base.field_ir_cron__binding_type +msgid "Binding Type" +msgstr "绑定类型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_client__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_report__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_actions_server__binding_view_types +#: model:ir.model.fields,field_description:base.field_ir_cron__binding_view_types +msgid "Binding View Types" +msgstr "绑定视图类型" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_bistro +msgid "Bistro Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_bistro +msgid "Bistro Theme - Restaurant, Food/Drink, Catering, Food trucks" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_bistro +msgid "Bistro, Restaurant, Bar, Pub, Cafe, Food, Catering" +msgstr "" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__is_blacklisted +#: model:ir.model.fields,field_description:mail.field_res_partner__is_blacklisted +#: model:ir.model.fields,field_description:mail.field_res_users__is_blacklisted +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_form +msgid "Blacklist" +msgstr "黑名单" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_tree +msgid "Blacklist Date" +msgstr "黑名单日期" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__failure_type__mail_bl +msgid "Blacklisted Address" +msgstr "黑名单地址" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_blacklist_action +msgid "Blacklisted Email Addresses" +msgstr "列入黑名单的电子邮件地址" + +#. modules: sf_manufacturing, sf_tool_management +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__blade_tip_characteristics_ids +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__blade_tip_characteristics_ids +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__blade_tip_characteristics_ids +msgid "Blade Tip Characteristics" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__layout_background__blank +msgid "Blank" +msgstr "空白" #. module: account #: model:ir.model.fields,field_description:account.field_account_report_column__blank_if_zero @@ -6631,8 +21426,8 @@ msgstr "待付账单" msgid "Blank if Zero" msgstr "如果为零则为空白" -#. modules: mrp_workorder, mrp -#. openerp-web +#. modules: mrp, mrp_workorder +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_tree_editable_view @@ -6671,12 +21466,21 @@ msgstr "阻塞被" msgid "Blocked Time" msgstr "阻塞时间" +#. module: mail +#. odoo-python +#: code:addons/mail/models/res_users.py:0 +#, python-format +msgid "" +"Blocked by deletion of portal account %(portal_user_name)s by %(user_name)s " +"(#%(user_id)s)" +msgstr "通过删除门户帐户 %(portal_user_name)s 由 %(user_name)s %(user_id)s阻止" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_workcenter__blocked_time msgid "Blocked hours over the last month" msgstr "过去一月阻塞的时数" -#. modules: stock, account, purchase +#. modules: stock, purchase, account #: model:ir.model.fields.selection,name:account.selection__res_partner__invoice_warn__block #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_line_warn__block #: model:ir.model.fields.selection,name:purchase.selection__res_partner__purchase_warn__block @@ -6695,6 +21499,29 @@ msgstr "阻塞原因" msgid "Blocks" msgstr "阻塞数" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_blog +msgid "Blogs" +msgstr "博文" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Blu-ray" +msgstr "蓝光" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Blur video background" +msgstr "模糊视频背景" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_bom_byproduct__bom_id msgid "BoM" @@ -6709,7 +21536,7 @@ msgid "BoM Components" msgstr "BOM组件" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom #, python-format @@ -6740,6 +21567,7 @@ msgid "BoM Type" msgstr "BOM类型" #. modules: sf_manufacturing, mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/quality.py:0 #: code:addons/mrp_workorder/models/quality.py:0 #: code:addons/mrp_workorder/wizard/propose_change.py:0 @@ -6754,13 +21582,36 @@ msgid "BoM feedback %s (%s)" msgstr "" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #, python-format msgid "BoM line product %s should not be the same as BoM product." msgstr "BoM明细中的产品%s不应与BoM产品相同。" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template__body_html +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__body_html +#: model_terms:ir.ui.view,arch_db:mail.mail_message_view_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +msgid "Body" +msgstr "正文" + +#. module: base +#: model:res.country,name:base.bo +msgid "Bolivia" +msgstr "玻利维亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_bo +msgid "Bolivia - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_bo_reports +msgid "Bolivia - Accounting Reports" +msgstr "" + #. module: mrp -#: model:product.product,name:mrp.product_product_computer_desk_bolt #: model:product.template,name:mrp.product_product_computer_desk_bolt_product_template msgid "Bolt" msgstr "螺栓" @@ -6770,31 +21621,359 @@ msgstr "螺栓" msgid "Bom Product" msgstr "Bom产品" +#. module: base +#: model:res.country,name:base.bq +msgid "Bonaire, Sint Eustatius and Saba" +msgstr "博内尔岛,圣尤斯特歇斯岛和萨巴" + +#. module: base +#: model:ir.module.module,description:base.module_theme_bookstore +msgid "Books, Magazines, Music" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_bookstore +msgid "Bookstore Theme" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__boolean +msgid "Boolean" +msgstr "布尔型" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_booth_sale_exhibitor +msgid "Booths Sale/Exhibitors Bridge" +msgstr "展位销售/展商桥" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_booth_exhibitor +msgid "Booths/Exhibitors Bridge" +msgstr "展位/展商桥" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia and Herzegovina" +msgstr "波斯尼亚和黑塞哥维那" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/persona_im_status_icon/persona_im_status_icon.xml:0 +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#, python-format +msgid "Bot" +msgstr "机器人" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "博茨瓦纳" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__margin_bottom +msgid "Bottom Margin (mm)" +msgstr "下边距(毫米)" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_bounce +#: model:ir.model.fields,field_description:mail.field_res_partner__message_bounce +#: model:ir.model.fields,field_description:mail.field_res_users__message_bounce +msgid "Bounce" +msgstr "弹回" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/notification.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__notification_status__bounce +#, python-format +msgid "Bounced" +msgstr "被退回" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "罗得岛" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "巴西" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_br_reports +msgid "Brazil - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_br +msgid "Brazilian - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_renting_sign +msgid "Bridge Sign functionalities with the Rental application" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_iap_crm +#: model:ir.module.module,summary:base.module_iap_crm +msgid "Bridge between IAP and CRM" +msgstr "IAP 和 CRM 之间的桥梁" + +#. module: base +#: model:ir.module.module,description:base.module_iap_mail +#: model:ir.module.module,summary:base.module_iap_mail +msgid "Bridge between IAP and mail" +msgstr "IAP 和邮件之间的桥梁" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_account_accountant +msgid "Bridge between Sale and Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_stock_accountant +msgid "Bridge between Stock and Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_account_asset +msgid "" +"Bridge created to add the number of assets linked to an AA to a project form" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_hr_payroll_account +msgid "" +"Bridge created to add the number of contracts linked to an AA to a project " +"form" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_hr_expense +msgid "" +"Bridge created to add the number of expenses linked to an AA to a project " +"form" +msgstr "创建桥梁以将连结到 AA 的费用数量增加到项目表单中" + +#. module: base +#: model:ir.module.module,description:base.module_project_sale_subscription +msgid "" +"Bridge created to add the number of subscriptions linked to an AA to a " +"project form" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_timesheet_account_budget +msgid "" +"Bridge created to compute the planned amount of the budget items linked to " +"the AA of a project" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_project_helpdesk +msgid "Bridge created to convert tickets to tasks and tasks to tickets" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_amazon_taxcloud +msgid "Bridge module between Amazon Connector and TaxCloud" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_timesheet_margin +msgid "Bridge module between Sales Margin and Sales Timesheet" +msgstr "销售保证金和销售工时表之间的桥梁模块" + +#. module: base +#: model:ir.module.module,summary:base.module_mail_bot_hr +msgid "Bridge module between hr and mailbot." +msgstr "于 hr 和 mailbot 之间的桥接模块." + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_booth_sale_exhibitor +msgid "" +"Bridge module between website_event_booth_exhibitor and " +"website_event_booth_sale." +msgstr "于 website_event_booth_exhibitor 和 website_event_booth_sale 之间的桥梁模块." + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_enterprise +msgid "Bridge module for MRP subcontracting and enterprise" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_subcontracting_enterprise +msgid "" +"Bridge module for MRP subcontracting and enterprise to avoid some conflicts " +"with studio" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_subcontracting_studio +msgid "Bridge module for MRP subcontracting and studio" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_subcontracting_studio +msgid "" +"Bridge module for MRP subcontracting and studio to avoid some conflicts" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_comparison_wishlist +msgid "Bridge module for Website sale comparison and wishlist" +msgstr "用于网站销售比较和愿望清单的桥接模块" + +#. module: base +#: model:ir.module.module,description:base.module_website_helpdesk +#: model:ir.module.module,summary:base.module_website_helpdesk +msgid "Bridge module for helpdesk modules using the website." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_enterprise +msgid "Bridge module for project and enterprise" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_enterprise_hr +msgid "Bridge module for project_enterprise and hr" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_enterprise_hr_contract +msgid "Bridge module for project_enterprise and hr_contract" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_timesheet_forecast_contract +msgid "Bridge module for project_timesheet_forecast and hr_contract" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_twitter_wall +msgid "Bridge module to configure a twitter wall on your event" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_social +msgid "Bridge module to push notifications to event attendees" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_track_live_quiz +msgid "Bridge module to support quiz features during \"live\" tracks. " +msgstr "桥接模块在\"即时\"专题期间支持测验功能. " + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__include_initial_balance msgid "Bring Accounts Balance Forward" msgstr "将科目余额转移" +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "英属印度洋领地" + #. module: account #: model_terms:ir.actions.act_window,help:account.open_account_journal_dashboard_kanban msgid "Browse available countries." msgstr "浏览可用的国家" -#. module: account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Browser default" +msgstr "默认浏览器" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "汶莱" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Buddhist" +msgstr "佛教徒" + +#. modules: base, account #: model:ir.model.fields,field_description:account.field_res_config_settings__module_account_budget +#: model:ir.module.module,shortdesc:base.module_account_budget msgid "Budget Management" msgstr "预算管理" +#. module: base +#: model:ir.module.module,summary:base.module_marketing_automation +msgid "Build automated mailing campaigns" +msgstr "创建自动化广告邮件活动" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_quotation_builder +msgid "Build great quotation templates" +msgstr "构建优秀的报价模板" + +#. module: base +#: model:ir.module.module,summary:base.module_board +msgid "Build your own dashboards" +msgstr "创建自定仪表板" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "保加利亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_bg +msgid "Bulgaria - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_bg_reports +msgid "Bulgaria - Accounting Reports" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant_package__quant_ids msgid "Bulk Content" msgstr "散装内容" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_asset__bundle +msgid "Bundle name" +msgstr "名称" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "布基纳法索" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "布隆迪" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_config_settings__secondary_color +msgid "Button Color" +msgstr "按钮颜色" + #. module: account #: model:ir.model.fields,field_description:account.field_account_reconcile_model_template__name msgid "Button Label" msgstr "按钮标签" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Button must have a name" +msgstr "按钮必须有名称" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__rule_type__writeoff_button #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_template__rule_type__writeoff_button @@ -6802,6 +21981,7 @@ msgid "Button to generate counterpart entry" msgstr "生成对应分录的按钮" #. module: purchase_stock +#. odoo-python #: code:addons/purchase_stock/models/stock.py:0 #: model:ir.model.fields.selection,name:purchase_stock.selection__stock_rule__action__buy #: model:stock.route,name:purchase_stock.route_warehouse0_buy @@ -6825,6 +22005,21 @@ msgstr "购买补给" msgid "Buyer" msgstr "买家" +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_buzzy +msgid "Buzzy Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_buzzy +msgid "Buzzy Theme - Responsive Bootstrap Theme for Odoo CMS" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "By" +msgstr "由" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__product_template__tracking__lot msgid "By Lots" @@ -6835,6 +22030,16 @@ msgstr "按批次" msgid "By Unique Serial Number" msgstr "按唯一序列号" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "By default the widget uses the field information" +msgstr "默认情况下,小部件使用字段信息" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move__procure_method msgid "" @@ -6878,7 +22083,7 @@ msgid "By-Product" msgstr "副产品" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_special_line/mrp_bom_overview_special_line.xml:0 #: model:ir.model.fields,field_description:mrp.field_res_config_settings__group_mrp_byproducts #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view @@ -6892,6 +22097,7 @@ msgid "By-product" msgstr "副产品" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #, python-format msgid "By-product %s should not be the same as BoM product." @@ -6910,12 +22116,18 @@ msgid "By-products" msgstr "副产品" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "By-products cost shares must be positive." msgstr "副产品的成本分摊必须是正数。" +#. module: base +#: model:res.groups,name:base.group_sanitize_override +msgid "Bypass HTML Field Sanitize" +msgstr "绕过HTML字段清理" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_bom_byproduct #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_byproduct_form_view @@ -6923,6 +22135,7 @@ msgid "Byproduct" msgstr "副产品" #. module: mrp +#. odoo-python #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #, python-format msgid "Byproducts" @@ -6934,7 +22147,18 @@ msgstr "副产品" msgid "B轴" msgstr "" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_C +msgid "C - MANUFACTURING" +msgstr "C - 制造业" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__c5e +msgid "C5E 24 163 x 229 mm" +msgstr "C5E 24 163 x 229 毫米" + #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #: code:addons/account/models/chart_template.py:0 #, python-format @@ -6946,6 +22170,29 @@ msgstr "" msgid "CAMT Import" msgstr "CAMT 导入" +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__cam_cutter_spacing_code +msgid "CAM刀位号" +msgstr "" + +#. module: sf_tool_management +#: model:ir.actions.act_window,name:sf_tool_management.sf_cam_work_order_program_knife_plan_view_act +#: model:ir.model,name:sf_tool_management.model_sf_cam_work_order_program_knife_plan +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__sf_cam_work_order_program_knife_plan_id +#: model:ir.ui.menu,name:sf_tool_management.menu_sf_cam_work_order_program_knife_plan +msgid "CAM工单程序用刀计划" +msgstr "" + +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__cam_procedure_code +msgid "CAM程序编号" +msgstr "" + +#. module: sf_tool_management +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_assembly__loading_task_source__0 +msgid "CAM装刀" +msgstr "" + #. module: account #: model:account.incoterms,name:account.incoterm_CIP msgid "CARRIAGE AND INSURANCE PAID TO" @@ -6956,6 +22203,35 @@ msgstr "" msgid "CARRIAGE PAID TO" msgstr "" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread_cc.py:0 +#, python-format +msgid "CC Email" +msgstr "抄送邮件" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "CD" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "CL" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "CL button" +msgstr "CL按钮" + #. module: sf_manufacturing #: model:ir.model,name:sf_manufacturing.model_sf_cnc_processing #: model:ir.model.fields,field_description:sf_manufacturing.field_mrp_workorder__cnc_ids @@ -6964,6 +22240,24 @@ msgstr "" msgid "CNC加工" msgstr "" +#. module: sf_dlm +#: model:product.template,name:sf_dlm.product_template_sf_product_template +msgid "CNC加工产品模板" +msgstr "冲压模具滑块" + +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__name +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__name +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__CNC_machine_table_id +#: model_terms:ir.ui.view,arch_db:sf_tool_management.sf_cam_work_order_program_knife_plan_search +msgid "CNC机床" +msgstr "" + +#. module: sf_tool_management +#: model_terms:ir.ui.view,arch_db:sf_tool_management.view_sf_functional_tool_warning_search +msgid "CNC机床列表" +msgstr "" + #. module: sf_manufacturing #: model_terms:ir.ui.view,arch_db:sf_manufacturing.view_mrp_production_workorder_tray_form_inherit_sf msgid "CNC程序" @@ -6979,6 +22273,21 @@ msgstr "" msgid "CONTINUE PRODUCTION" msgstr "继续生产" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "COOL" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "COOL button" +msgstr "COOL按钮" + #. module: account #: model:account.incoterms,name:account.incoterm_CFR msgid "COST AND FREIGHT" @@ -6989,29 +22298,100 @@ msgstr "" msgid "COST, INSURANCE AND FREIGHT" msgstr "" +#. module: base +#: model:ir.module.category,name:base.module_category_sales_crm +#: model:ir.module.module,shortdesc:base.module_crm +msgid "CRM" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_data_merge_crm +msgid "CRM Deduplication" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_gamification_sale_crm +msgid "CRM Gamification" +msgstr "CRM游戏化" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_livechat +msgid "CRM Livechat" +msgstr "CRM 联机客服" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_mail_plugin +msgid "CRM Mail Plugin" +msgstr "CRM 邮件外挂" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_enterprise +msgid "CRM enterprise" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__base_language_export__format__csv +msgid "CSV File" +msgstr "CSV单据" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "CSV Import" msgstr "CSV 导入" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "" +"CSV format: you may edit it directly with your favorite spreadsheet software,\n" +" the rightmost column (value) contains the translations" +msgstr "CSV 格式: 您可以用您的电子试算表软件直接修改. 最右边一列(值)包括了翻译" + +#. module: base +#: model:res.country,vat_label:base.ar +msgid "CUIT" +msgstr "" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "CUST" msgstr "客戶" #. module: stock -#: model:product.product,name:stock.product_cable_management_box #: model:product.template,name:stock.product_cable_management_box_product_template msgid "Cable Management Box" -msgstr "理线盒" +msgstr "手机机壳" -#. modules: purchase, stock +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__calendar +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__calendar +#: model:ir.module.category,name:base.module_category_productivity_calendar +#: model:ir.module.module,shortdesc:base.module_calendar +msgid "Calendar" +msgstr "日历" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_calendar_sms +msgid "Calendar - SMS" +msgstr "日历 - 短信息" + +#. modules: stock, purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_calendar #: model_terms:ir.ui.view,arch_db:stock.stock_picking_calendar msgid "Calendar View" msgstr "日历视图" +#. module: mail +#: model:mail.activity.type,name:mail.mail_activity_data_call +msgid "Call" +msgstr "电话" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__call_at +msgid "Call At" +msgstr "调用于" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "" @@ -7019,8 +22399,32 @@ msgid "" " several vendors for a given set of products to compare offers." msgstr "招标是当您想要为给定的一组产品向多个供应商生成报价请求以比较报价时." -#. module: account +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia" +msgstr "柬埔寨" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_demo_view/call_demo_view.xml:0 +#, python-format +msgid "Camera is off" +msgstr "关闭相机" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "喀麦隆" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__can_cancel +msgid "Can Cancel" +msgstr "可以取消" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__can_edit_body +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__can_edit_body +#: model:ir.model.fields,field_description:mail.field_mail_composer_mixin__can_edit_body msgid "Can Edit Body" msgstr "允许编辑" @@ -7034,34 +22438,112 @@ msgstr "可以编辑向导" msgid "Can Group Payments" msgstr "可以分组付款" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__can_resend +msgid "Can Resend" +msgstr "可以重新发送" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__can_write +#: model:ir.model.fields,field_description:mail.field_mail_template__can_write +msgid "Can Write" +msgstr "可写" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__visible msgid "Can be Visible?" msgstr "是否显示?" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"Can not create Many-To-One records indirectly, import the field separately" +msgstr "不能间接创建 M2O (多对一)记录,分别导入字段" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_notification.py:0 +#, python-format +msgid "Can not update the message or recipient of a notification." +msgstr "无法更新通知的消息或收件人。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "不能升级模块 \"%s\",因为它尚未安装." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Can only rename one field at a time!" +msgstr "字段换名只能一次一个!" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Can't compare more than two views." +msgstr "不能比较两个以上的视图." + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Can't find any customer or supplier location." msgstr "找不到任何客户或供应商位置。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Can't find any generic route %s." msgstr "找不到通用路线 %s." #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #, python-format msgid "Can't find any production location." -msgstr "找不到任何制造位置 。" +msgstr "找不到任何生产位置 。" -#. modules: maintenance, purchase, mrp_workorder, mrp, stock, stock_account, -#. quality_control, account -#. openerp-web +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "加拿大" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ca +msgid "Canada - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ca_check_printing +msgid "Canadian Checks Layout" +msgstr "" + +#. modules: purchase, quality_control, mrp, account, mrp_workorder, +#. base_import, mail, base, stock, maintenance, stock_barcode +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#: code:addons/mail/static/src/components/attachment_delete_confirm/attachment_delete_confirm.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/delete_message_confirm/delete_message_confirm.xml:0 +#: code:addons/mail/static/src/components/follower_subtype_list/follower_subtype_list.xml:0 +#: code:addons/mail/static/src/components/link_preview_delete_confirm_view/link_preview_delete_confirm_view.xml:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 #: model_terms:ir.ui.view,arch_db:account.account_automatic_entry_wizard_form #: model_terms:ir.ui.view,arch_db:account.account_invoice_onboarding_sale_tax_form #: model_terms:ir.ui.view,arch_db:account.account_invoice_send_wizard_form @@ -7075,6 +22557,28 @@ msgstr "找不到任何制造位置 。" #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form #: model_terms:ir.ui.view,arch_db:account.view_account_payment_register_form #: model_terms:ir.ui.view,arch_db:account.view_move_form +#: model_terms:ir.ui.view,arch_db:base.base_onboarding_company_form +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +#: model_terms:ir.ui.view,arch_db:base.change_password_own_form +#: model_terms:ir.ui.view,arch_db:base.change_password_wizard_view +#: model_terms:ir.ui.view,arch_db:base.enable_profiling_wizard +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description +#: model_terms:ir.ui.view,arch_db:base.identity_check_wizard +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +#: model_terms:ir.ui.view,arch_db:base.res_config_view_base +#: model_terms:ir.ui.view,arch_db:base.reset_view_arch_wizard_view +#: model_terms:ir.ui.view,arch_db:base.view_base_import_language +#: model_terms:ir.ui.view,arch_db:base.view_base_language_install +#: model_terms:ir.ui.view,arch_db:base.view_base_module_update +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade_install +#: model_terms:ir.ui.view,arch_db:base.view_model_menu_create +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +#: model_terms:ir.ui.view,arch_db:mail.mail_template_reset_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_wizard_invite_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_tree_view @@ -7097,25 +22601,75 @@ msgstr "找不到任何制造位置 。" #: model_terms:ir.ui.view,arch_db:stock.view_stock_quantity_history #: model_terms:ir.ui.view,arch_db:stock.view_stock_return_picking_form #: model_terms:ir.ui.view,arch_db:stock.view_stock_rules_report -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_cancel_operation_view #, python-format msgid "Cancel" msgstr "取消" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_tree +msgid "Cancel Email" +msgstr "取消Email" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Cancel Entry" msgstr "取消分录" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +msgid "Cancel Install" +msgstr "取消安装" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_rule__propagate_cancel msgid "Cancel Next Move" msgstr "取消下一步移动" -#. modules: stock, account, purchase, mrp +#. module: stock_barcode +#: model:ir.model,name:stock_barcode.model_stock_barcode_cancel_operation +msgid "Cancel Operation" +msgstr "取消操作" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +msgid "Cancel Uninstall" +msgstr "取消卸装" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Cancel Upgrade" +msgstr "取消升级" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_cancel_operation_view +msgid "Cancel operation" +msgstr "取消操作" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#: code:addons/stock_barcode/models/stock_picking.py:0 +#, python-format +msgid "Cancel this operation ?" +msgstr "取消此操作?" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/notification.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__notification_status__canceled +#, python-format +msgid "Canceled" +msgstr "已取消" + +#. modules: purchase, account, mail, stock, mrp +#. odoo-python #: code:addons/purchase/controllers/portal.py:0 #: model:ir.model.fields.selection,name:account.selection__account_invoice_report__state__cancel #: model:ir.model.fields.selection,name:account.selection__account_move__state__cancel +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__state__cancel #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__state__cancel #: model:ir.model.fields.selection,name:mrp.selection__mrp_workorder__state__cancel #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__cancel @@ -7145,31 +22699,110 @@ msgstr "取消的移动" msgid "Cancelled Purchase Order #" msgstr "取消采购订单#" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Cancer" +msgstr "巨蟹座" + +#. module: mail +#: model:ir.model,name:mail.model_mail_shortcode +msgid "Canned Response / Shortcode" +msgstr "自动回复" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__canned_response_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__canned_response_ids +msgid "Canned Responses" +msgstr "预设回应" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Cannot aggregate field %r." +msgstr "不能聚合字段 %r." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "Cannot change the channel type of: %(channel_names)s" +msgstr "不能更改频道类型:%(channel_names)s" + +#. module: base +#. odoo-python +#: code:addons/base/models/assetsbundle.py:0 +#: code:addons/base/models/assetsbundle.py:0 +#, python-format +msgid "Cannot create %r because the template to inherit %r is not found." +msgstr "未找到承接%r的模板,无法创建%r。" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Cannot create a purchase document in a non purchase journal" msgstr "无法在非采购日记帐中创建采购单据" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Cannot create a sale document in a non sale journal" msgstr "无法在非销售日记帐中创建销售凭证" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"Cannot create new '%s' records from their name alone. Please create those " +"records manually and try importing again." +msgstr "不能仅从名称创建新的 '1%s' 纪录. 请手动创建这些纪录并再次尝试导入." + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "Cannot deactivate a language that is currently used by contacts." +msgstr "不能停用当前被联系人所使用的语言." + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "Cannot deactivate a language that is currently used by users." +msgstr "不能撤消当前用户使用的语言." + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "Cannot delete a manufacturing order in done state." msgstr "无法删除状态为完成的制造订单。" #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "Cannot delete a purchase order line which is in state '%s'." msgstr "无法删除处于'%s'状态的采购订单行。" +#. module: base +#. odoo-python +#: code:addons/base/models/res_config.py:0 +#: code:addons/base/models/res_config.py:0 +#, python-format +msgid "Cannot duplicate configuration!" +msgstr "不能复制配置!" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "" @@ -7179,24 +22812,8 @@ msgstr "" "找不到本公司的科目表. \n" "请到会计配置进行配置" -#. module: stock_account -#: code:addons/stock_account/models/stock_move.py:0 -#, python-format -msgid "" -"Cannot find a stock input account for the product %s. You must define one on" -" the product category, or on the location, before processing this operation." -msgstr "找不到产品%s的库存入库科目。 在处理此作业之前,您必须在产品类别或产品上进行一个定义。" - -#. module: stock_account -#: code:addons/stock_account/models/stock_move.py:0 -#, python-format -msgid "" -"Cannot find a stock output account for the product %s. You must define one " -"on the product category, or on the location, before processing this " -"operation." -msgstr "找不到产品%s的库存出库库科目。 在处理此作业之前,您必须在产品类别或产品上进行定义。" - #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #: code:addons/account/models/chart_template.py:0 #, python-format @@ -7204,6 +22821,7 @@ msgid "Cannot generate an unused account code." msgstr "不能生成未使用的科目代码" #. module: account +#. odoo-python #: code:addons/account/models/account_journal.py:0 #, python-format msgid "" @@ -7211,13 +22829,22 @@ msgid "" msgstr "不能生成未使用的日记账代码。请在 '简称'一栏输入内容" #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "" "Cannot get aggregation details from a line not using 'aggregation' engine" msgstr "无法从不使用“聚合”引擎的行获取聚合详细信息" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Cannot rename/delete fields that are still present in views:" +msgstr "不能重命名/删除还在视图中使用的字段:" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -7247,6 +22874,35 @@ msgstr "按产品分类的容量" msgid "Capacity should be a positive number." msgstr "能力应为正数。" +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "佛得角" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Capricorn" +msgstr "摩羯座" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__email_cc +msgid "Carbon copy message recipients" +msgstr "抄送" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template_preview__email_cc +msgid "Carbon copy recipients" +msgstr "抄送收件人" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__email_cc +msgid "Carbon copy recipients (placeholders may be used here)" +msgstr "抄送收件人(可以在这里使用占位符)" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__qty_reported_from_previous_wo msgid "Carried Quantity" @@ -7258,12 +22914,19 @@ msgid "Carry Over To" msgstr "结转至" #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "Carryover lines for: %s" msgstr "结转行: %s" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_model_fields__on_delete__cascade +msgid "Cascade" +msgstr "级联" + #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #: model:ir.model.fields.selection,name:account.selection__account_journal__type__cash #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter @@ -7282,7 +22945,13 @@ msgstr "现金账户" msgid "Cash Basis" msgstr "收付实现制" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_reports_cash_basis +msgid "Cash Basis Accounting Reports" +msgstr "" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__tax_cash_basis_created_move_ids #: model:ir.model.fields,field_description:account.field_account_move__tax_cash_basis_created_move_ids @@ -7305,6 +22974,7 @@ msgid "Cash Basis Origin" msgstr "收付实现制制来源" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash Basis Taxes" @@ -7323,6 +22993,7 @@ msgid "Cash Difference Expense Account" msgstr "现金差额费用账户" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash Difference Gain" @@ -7335,12 +23006,14 @@ msgid "Cash Difference Income Account" msgstr "现金差异收入账户" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash Difference Loss" msgstr "现金差额损失" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash Discount Gain" @@ -7352,6 +23025,7 @@ msgid "Cash Discount Gain account" msgstr "现金折扣收益账户" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash Discount Loss" @@ -7409,26 +23083,51 @@ msgid "Cash Statement" msgstr "现金对账单" #. module: account +#. odoo-python +#: code:addons/account/models/account_move_line.py:0 +#, python-format +msgid "Cash basis rounding difference" +msgstr "现金收付舍入差异" + +#. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Cash basis transition account" msgstr "收付实现制制转账科目" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Cash: Balance" msgstr "现金:余额" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_company__catchall_formatted +msgid "Catchall" +msgstr "预设" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_company__catchall_email +msgid "Catchall Email" +msgstr "预设邮件" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Categories" +msgstr "电商品类" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Categorize your locations for smarter putaway rules" msgstr "对您的地点进行分类,以制定更明智的放行规则" -#. modules: maintenance, mrp_workorder, purchase, mrp, sale_management, stock, -#. sf_base, account +#. modules: purchase, mrp, account, sale_management, base, sf_base, stock, +#. maintenance, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_analytic_line__category #: model:ir.model.fields,field_description:account.field_account_move_line__product_uom_category_id +#: model:ir.model.fields,field_description:base.field_ir_module_module__category_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__category_id #: model:ir.model.fields,field_description:mrp.field_mrp_bom__product_uom_category_id #: model:ir.model.fields,field_description:mrp.field_mrp_bom_byproduct__product_uom_category_id @@ -7447,6 +23146,7 @@ msgstr "对您的地点进行分类,以制定更明智的放行规则" #: model:ir.model.fields,field_description:stock.field_stock_move_line__product_uom_category_id #: model:ir.model.fields,field_description:stock.field_stock_scrap__product_uom_category_id #: model_terms:ir.ui.view,arch_db:account.view_account_analytic_line_filter_inherit +#: model_terms:ir.ui.view,arch_db:base.view_module_filter #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search #: model_terms:ir.ui.view,arch_db:mrp.oee_loss_tree_view @@ -7484,6 +23184,39 @@ msgstr "收入科目的类别" msgid "Cause" msgstr "原由" +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "开曼群岛" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__email_cc +#: model:ir.model.fields,field_description:mail.field_mail_template__email_cc +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__email_cc +msgid "Cc" +msgstr "抄送" + +#. module: base +#: model:res.country,name:base.cf +msgid "Central African Republic" +msgstr "中非共和国" + +#. module: base +#: model:ir.module.module,summary:base.module_hr +msgid "Centralize employee information" +msgstr "集中员工信息" + +#. module: base +#: model:ir.module.module,summary:base.module_contacts +msgid "Centralize your address book" +msgstr "集中地址簿" + +#. module: base +#: model:ir.module.module,description:base.module_knowledge +#: model:ir.module.module,summary:base.module_knowledge +msgid "Centralize, manage, share and grow your knowledge library" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_default_terms_and_conditions msgid "" @@ -7492,16 +23225,78 @@ msgid "" "be paid by the client to the tax authorities. Under no circumstances can" msgstr "某些国家根据其国内立法对结算单金额实行源头预扣。客户将向税务机关支付任何来源预扣税。在任何情况下都不能" +#. module: stock +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"Certain countries apply withholding at source on the amount of invoices, in " +"accordance with their internal legislation. Any withholding at source will " +"be paid by the client to the tax authorities. Under no circumstances can My " +"Company (Chicago) become involved in costs related to a country's " +"legislation. The amount of the invoice will therefore be due to My Company " +"(Chicago) in its entirety and does not include any costs relating to the " +"legislation of the country in which the client is located." +msgstr "" +"某些国家根据其国内立法,对结算单金额实行源头预扣。任何来源的预扣款将由客户支付给税务机关。在任何情况下,我公司(芝加哥)都不能涉及与一个国家的立法有关的费用。因此,结算单金额将全部由我公司(芝加哥)承担,不包括与客户所在国家的立法有关的任何费用。" + +#. module: base +#: model_terms:res.company,invoice_terms_html:base.main_company +msgid "" +"Certain countries apply withholding at source on the amount of invoices, in " +"accordance with their internal legislation. Any withholding at source will " +"be paid by the client to the tax authorities. Under no circumstances can My " +"Company (San Francisco) become involved in costs related to a country's " +"legislation. The amount of the invoice will therefore be due to My Company " +"(San Francisco) in its entirety and does not include any costs relating to " +"the legislation of the country in which the client is located." +msgstr "" +"某些国家根据其国内立法对结算单金额实行源头预扣. 任何源泉扣缴将由客户支付给税务机关. 在任何情况下,我司(旧金山)都不得参与与国家立法相关的费用. " +"因此,结算单金额将全部归我司(旧金山)所有,不包括与客户所在国家/地区的法律相关的任何费用." + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "查德" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_return_picking__move_dest_exists msgid "Chained Move Exists" msgstr "链接的移动已存在" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__chaining_type +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__chaining_type +msgid "Chaining Type" +msgstr "链接类型" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_automatic_entry_wizard__action__change_account msgid "Change Account" msgstr "更改帐户" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_view.js:0 +#, python-format +msgid "Change Layout" +msgstr "更改布局" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "更改我的偏好" + +#. module: base +#: model:ir.actions.act_window,name:base.change_password_wizard_action +#: model_terms:ir.ui.view,arch_db:base.change_password_own_form +#: model_terms:ir.ui.view,arch_db:base.change_password_wizard_view +msgid "Change Password" +msgstr "更改密码" + +#. module: base +#: model:ir.model,name:base.model_change_password_wizard +msgid "Change Password Wizard" +msgstr "更改密码向导" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_automatic_entry_wizard__action__change_period #: model_terms:ir.ui.view,arch_db:account.view_move_form @@ -7534,7 +23329,38 @@ msgstr "变更待生产数量" msgid "Change label of the counterpart that will hold the payment difference" msgstr "更改对方的标签将导致付款差额" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "Change password" +msgstr "更改密码" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_activity__activity_decoration +#: model:ir.model.fields,help:mail.field_mail_activity_type__decoration_type +msgid "Change the background color of the related activities of this type." +msgstr "修改此类相关活动的背景." + +#. module: base +#: model:ir.module.module,description:base.module_account_sequence +#: model:ir.module.module,description:base.module_l10n_latam_account_sequence +msgid "Change the way `sequence.mixin` works to reduce concurrency errors" +msgstr "更改“sequence.mixin”的工作方式,以减少并发错误" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_country_form +msgid "Change the way addresses are displayed in reports" +msgstr "更改地址在报告中的显示方式" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/tracking_value/tracking_value.xml:0 +#: code:addons/mail/static/src/components/tracking_value/tracking_value.xml:0 +#, python-format +msgid "Changed" +msgstr "已修改" + #. module: account +#. odoo-python #: code:addons/account/controllers/portal.py:0 #, python-format msgid "" @@ -7542,7 +23368,22 @@ msgid "" "account. Please contact us directly for this operation." msgstr "一旦您的账户开具结算单,不可再更改增值税号码。如需要此操作,请直接与我们联系。" +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "" +"Changing the company of a contact should only be done if it was never " +"correctly set. If an existing contact starts working for a new company then " +"a new contact should be created under that new company. You can use the " +"\"Discard\" button to abandon this change." +msgstr "" +"如果没有被正确设置,则只能改变联系人的公司. " +"如果一个已经存在的联系人属于新公司,则在这个新公司里一个新联系人应该被创建,您可以使用「取消」按钮来放弃这个改变." + #. module: stock +#. odoo-python #: code:addons/stock/models/product_strategy.py:0 #: code:addons/stock/models/stock_location.py:0 #: code:addons/stock/models/stock_lot.py:0 @@ -7555,19 +23396,45 @@ msgid "" "rather archive it and create a new one." msgstr "此时禁止更改此记录的公司,您应该将其归档并创建一个新记录。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Changing the model of a field is forbidden!" +msgstr "改变字段的模型是禁止的!" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Changing the operation type of this record is forbidden at this point." msgstr "此时禁止更改此记录的作业类型。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move_line.py:0 #, python-format msgid "Changing the product is only allowed in 'Draft' state." msgstr "只允许在“草稿”状态下更改产品。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "" +"Changing the type of a field is not yet supported. Please drop it and create" +" it again!" +msgstr "还不支持更改字段的类型,请先删除该字段再重新创建!" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "Changing to 12-hour clock format instead." +msgstr "改为12小时制钟表格式。" + #. module: account +#. odoo-python #: code:addons/account/controllers/portal.py:0 #, python-format msgid "" @@ -7575,15 +23442,8 @@ msgid "" " your account. Please contact us directly for this operation." msgstr "在您的账户已有开出结算单的清况下, 不允许更改您的公司名称。请联系我们确认相关内容。" -#. module: stock_account -#: code:addons/stock_account/models/product.py:0 -#, python-format -msgid "" -"Changing your cost method is an important change that will impact your " -"inventory valuation. Are you sure you want to make that change?" -msgstr "更改您的成本方法是一个重要的更改, 将影响您的库存评估。是否确实要进行此更改?" - #. module: account +#. odoo-python #: code:addons/account/controllers/portal.py:0 #, python-format msgid "" @@ -7591,6 +23451,83 @@ msgid "" "account. Please contact us directly for this operation." msgstr "一旦您的账户开具了结算单,不可再更改名字。如需执行此操作,请直接与我们联系。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__channel_id +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__channel_id +#: model:ir.model.fields.selection,name:mail.selection__mail_channel__channel_type__channel +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_member_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_rtc_session_view_search +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_kanban +#, python-format +msgid "Channel" +msgstr "频道" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Channel \"%(channel_name)s\" only accepts members of group " +"\"%(group_name)s\". Forbidden for: %(guest_names)s" +msgstr "频道“%(channel_name)s”只接受组“%(group_name)s”的成员。禁止:%(guest_names)s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Channel \"%(channel_name)s\" only accepts members of group " +"\"%(group_name)s\". Forbidden for: %(partner_names)s" +msgstr "频道 \"%(channel_name)s\" 只接受 \"%(group_name)s\"组的成员. 禁止: %(partner_names)s" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__channel_member_id +msgid "Channel Member" +msgstr "频道成员" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__channel_type +msgid "Channel Type" +msgstr "频道类型" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/discuss_sidebar_category_item/discuss_sidebar_category_item.xml:0 +#, python-format +msgid "Channel settings" +msgstr "频道设置" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/messaging_menu_tab/messaging_menu_tab.xml:0 +#: code:addons/mail/static/src/models/discuss_sidebar_category.js:0 +#: model:ir.model.fields,field_description:mail.field_mail_guest__channel_ids +#: model:ir.model.fields,field_description:mail.field_res_partner__channel_ids +#: model:ir.model.fields,field_description:mail.field_res_users__channel_ids +#: model:ir.ui.menu,name:mail.mail_channel_menu_settings +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_member_view_tree +#, python-format +msgid "Channels" +msgstr "频道" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_channel_member_action +msgid "Channels/Member" +msgstr "频道/成员" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_channel_member_menu +msgid "Channels/Partner" +msgstr "频道/业务伙伴" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__char +msgid "Char" +msgstr "字符型" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account_template__chart_template_id #: model:ir.model.fields,field_description:account.field_account_fiscal_position_template__chart_template_id @@ -7607,6 +23544,7 @@ msgid "Chart Templates" msgstr "科目模板" #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #: model:ir.actions.act_window,name:account.action_account_form #: model:ir.model.fields,field_description:account.field_account_report__chart_template_id @@ -7631,12 +23569,46 @@ msgstr "会计科目表" msgid "Chart of accounts set." msgstr "会计科目表集合。" -#. modules: quality, quality_control, mrp_workorder +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/messaging_menu_tab/messaging_menu_tab.xml:0 +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_channel__channel_type__chat +#, python-format +msgid "Chat" +msgstr "聊天" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_shortcode_action +msgid "Chat Shortcode" +msgstr "聊天简码" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_channel__channel_type +msgid "" +"Chat is private and unique between 2 persons. Group is private among invited" +" persons. Channel can be freely joined (depending on its configuration)." +msgstr "在 2 个人之间的聊天是私密且唯一的。受邀者之间群聊是私密的。频道可以自由加入(取决于其配置)。" + +#. module: base +#: model:ir.module.module,summary:base.module_im_livechat +#: model:ir.module.module,summary:base.module_website_livechat +msgid "Chat with your website visitors" +msgstr "与您网站访问者聊天" + +#. module: base +#: model:ir.module.module,summary:base.module_mail +msgid "Chat, mail gateway and private channels" +msgstr "聊天, 邮件网关和私有频道" + +#. modules: quality, quality_control, base, mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_mrp_workorder__check_ids #: model:ir.model.fields,field_description:mrp_workorder.field_stock_move_line__quality_check_ids #: model:ir.model.fields,field_description:quality.field_quality_alert__check_id #: model:ir.model.fields,field_description:quality.field_quality_point__check_ids #: model:ir.model.fields,field_description:quality_control.field_quality_check_wizard__check_ids +#: model:ir.module.category,name:base.module_category_accounting_localizations_check msgid "Check" msgstr "检查" @@ -7651,6 +23623,11 @@ msgstr "检查可用量" msgid "Check Count" msgstr "检查数量" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_check_printing +msgid "Check Printing Base" +msgstr "支票打印基础" + #. module: quality_control #: model:ir.model.fields,field_description:quality_control.field_stock_move_line__check_state msgid "Check State" @@ -7661,6 +23638,22 @@ msgstr "核对状态" msgid "Check availability" msgstr "检查可用性" +#. module: base +#: model:ir.model.fields,help:base.field_res_partner__is_company +#: model:ir.model.fields,help:base.field_res_users__is_company +msgid "Check if the contact is a company, otherwise it is a person" +msgstr "若客户性质属公司客户请打勾,个人客户请勿勾选" + +#. module: stock_barcode +#: model:ir.model.fields,help:stock_barcode.field_stock_move_line__is_completed +msgid "Check if the quantity done matches the demand" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_check_printing +msgid "Check printing basic features" +msgstr "支票打印基础功能" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_picking__has_packages msgid "Check the existence of destination packages on move lines" @@ -7679,6 +23672,12 @@ msgid "" "journal items." msgstr "如果这个科目能够让结算单和付款与日记账的匹配就勾选这个框" +#. module: base +#: model:ir.model.fields,help:base.field_res_partner__employee +#: model:ir.model.fields,help:base.field_res_users__employee +msgid "Check this box if this contact is an Employee." +msgstr "勾选此项 如果 这个 联系人 是 一个 员工." + #. module: account #: model:ir.model.fields,help:account.field_account_journal__refund_sequence msgid "" @@ -7737,10 +23736,10 @@ msgstr "检查人" msgid "Checked Date" msgstr "检查日期" -#. modules: quality_mrp_workorder, quality_control, account +#. modules: account, quality_control, mrp_workorder +#: model:ir.model.fields,field_description:mrp_workorder.field_mrp_production__check_ids #: model:ir.model.fields,field_description:quality_control.field_stock_move_line__check_ids #: model:ir.model.fields,field_description:quality_control.field_stock_picking__check_ids -#: model:ir.model.fields,field_description:quality_mrp_workorder.field_mrp_production__check_ids #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Checks" msgstr "检查" @@ -7750,16 +23749,67 @@ msgstr "检查" msgid "Checks In Progress" msgstr "进行中的检查" -#. module: mrp +#. module: base +#: model:ir.module.module,summary:base.module_l10n_latam_check +msgid "Checks Management" +msgstr "支票管理" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__checksum #: model:ir.model.fields,field_description:mrp.field_mrp_document__checksum msgid "Checksum/SHA1" msgstr "校验和/SHA1" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_server__child_ids +#: model:ir.model.fields,field_description:base.field_ir_cron__child_ids +msgid "Child Actions" +msgstr "下级动作" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_category__child_ids +msgid "Child Applications" +msgstr "子应用" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__child_ids +msgid "Child Companies" +msgstr "下级公司" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__field_parent +msgid "Child Field" +msgstr "下级字段" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__child_id +msgid "Child IDs" +msgstr "下级 ID" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_line__children_ids msgid "Child Lines" msgstr "子行" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__child_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__child_ids +msgid "Child Messages" +msgstr "下级消息" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner_category__child_ids +msgid "Child Tags" +msgstr "下级标签" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_server__child_ids +#: model:ir.model.fields,help:base.field_ir_cron__child_ids +msgid "" +"Child server actions that will be executed. Note that the last return " +"returned action value will be used as global return value." +msgstr "子服务器将被被激活。注意最后返回动作的值将做用做全局变量。" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax__children_tax_ids #: model:ir.model.fields,field_description:account.field_account_tax_template__children_tax_ids @@ -7768,7 +23818,54 @@ msgstr "子行" msgid "Children Taxes" msgstr "子级税" +#. module: base +#: model:ir.module.category,name:base.module_category_localization_chile +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "智利" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl +msgid "Chile - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl_reports +msgid "Chile - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl_edi_stock +msgid "Chile - E-Invoicing Delivery Guide" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl_edi +msgid "Chile - E-invoicing" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl_edi_boletas +msgid "Chile - Electronic Receipt" +msgstr "" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "中国" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cn +msgid "China - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cn_city +msgid "China - City Data" +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #: code:addons/stock/wizard/stock_label_type.py:0 #, python-format @@ -7776,10 +23873,11 @@ msgid "Choose Labels Layout" msgstr "选择标签布局" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Choose Type of Labels To Print" -msgstr "" +msgstr "请选择要打印的标签类型" #. module: stock #: model:ir.model.fields,help:stock.field_stock_quantity_history__inventory_datetime @@ -7787,18 +23885,26 @@ msgstr "" msgid "Choose a date to get the inventory at that date" msgstr "选择一个日期以获得该日期的库存" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account -msgid "Choose a date to get the valuation at that date" -msgstr "" - #. module: account #: model_terms:ir.ui.view,arch_db:account.account_invoice_onboarding_sale_tax_form #: model_terms:ir.ui.view,arch_db:account.onboarding_sale_tax_step msgid "Choose a default sales tax for your products." msgstr "选择产品的默认销售税。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_country_form +msgid "" +"Choose a subview of partners that includes only address fields, to change " +"the way users can input addresses." +msgstr "选择仅包含地址字段的合作伙伴子视图,以更改用户输入地址的方式." + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_template_preview_view_form +msgid "Choose an example" +msgstr "选择一个示例" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Choose destination location" @@ -7811,6 +23917,33 @@ msgid "" "\"cancel\" if the invoice is already reconciled." msgstr "选择您希望如何记入此应收结算单. 如果已经调节应收结算单,则无法'修改'或'取消'." +#. module: mail +#: model:ir.model.fields,help:mail.field_ir_actions_server__mail_post_method +#: model:ir.model.fields,help:mail.field_ir_cron__mail_post_method +msgid "" +"Choose method for email sending:\n" +"EMail: send directly emails\n" +"Post as Message: post on document and notify followers\n" +"Post as Note: log a note on document" +msgstr "" +"选择发送电子邮件的方法:\n" +"电子邮件:直接发送电子邮件\n" +"作为信息发布:在文档上发布并通知关注者\n" +"发布为注释:在文档上记录注释" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__smtp_encryption +msgid "" +"Choose the connection encryption scheme:\n" +"- None: SMTP sessions are done in cleartext.\n" +"- TLS (STARTTLS): TLS encryption is requested at start of SMTP session (Recommended)\n" +"- SSL/TLS: SMTP sessions are encrypted with SSL/TLS through a dedicated port (default: 465)" +msgstr "" +"选择连接加密方案:\n" +"- None: SMTP 对话用明文完成.\n" +"- TLS (STARTTLS): SMTP对话的开始时要求TLS 加密 (推荐)\n" +"- SSL/TLS: SMTP对话通过专用端口地址用 SSL/TLS 加密 (默认是: 465)" + #. module: stock #: model:ir.model,name:stock.model_lot_label_layout msgid "Choose the sheet layout to print lot labels" @@ -7831,6 +23964,69 @@ msgstr "清选择【打印产品标签】/【批次标签】" msgid "Choose your date" msgstr "选择您的日期" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Christian" +msgstr "基督教徒" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Christmas" +msgstr "圣诞节" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "圣诞岛" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Christmas tree" +msgstr "圣诞树" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_bank__city +#: model:ir.model.fields,field_description:base.field_res_company__city +#: model:ir.model.fields,field_description:base.field_res_partner__city +#: model:ir.model.fields,field_description:base.field_res_users__city +#: model_terms:ir.ui.view,arch_db:base.res_partner_view_form_private +#: model_terms:ir.ui.view,arch_db:base.view_company_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_address_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_form +msgid "City" +msgstr "城市" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Claus" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_clean +#: model:ir.module.module,shortdesc:base.module_theme_clean +msgid "Clean Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_cobalt +#: model:ir.module.module,description:base.module_theme_paptic +msgid "Clean and sharp design." +msgstr "" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__time_stop msgid "Cleanup Time" @@ -7861,12 +24057,72 @@ msgstr "清除数量" msgid "Click" msgstr "点击" -#. modules: quality, account, stock -#. openerp-web +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Click 'Resume' to proceed with the import, resuming at line" +msgstr "单击\"继续\"继续导入,继续从行" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#: code:addons/mail/static/src/components/thread_view/thread_view.xml:0 +#, python-format +msgid "Click here to retry" +msgstr "单击此处重试" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "Click on your message" +msgstr "点击您的留言" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_in_reply_to_view/message_in_reply_to_view.xml:0 +#, python-format +msgid "Click to see the attachments" +msgstr "点击查看附件" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_logging__type__client +msgid "Client" +msgstr "客户端" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_client +msgid "Client Action" +msgstr "客户端动作" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_client__tag +msgid "Client action tag" +msgstr "客户端动作标签" + +#. modules: account, quality, mail, base, stock, stock_barcode +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#: code:addons/mail/static/src/components/follower_subtype_list/follower_subtype_list.xml:0 #: code:addons/quality/static/src/tablet_image_field/tablet_image_field.xml:0 #: code:addons/quality/static/src/tablet_image_field/tablet_image_field.xml:0 #: code:addons/stock/static/src/xml/stock_traceability_report_backend.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/components/main.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 #: model_terms:ir.ui.view,arch_db:account.account_terms_conditions_setting_banner +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +#: model_terms:ir.ui.view,arch_db:base.language_install_view_form_lang_switch +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +#: model_terms:ir.ui.view,arch_db:base.view_base_module_update +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +#: model_terms:ir.ui.view,arch_db:mail.mail_resend_message_view_form +#: model_terms:ir.ui.view,arch_db:mail.mail_template_preview_view_form #: model_terms:ir.ui.view,arch_db:stock.duplicated_sn_warning #: model_terms:ir.ui.view,arch_db:stock.view_stock_move_operations #: model_terms:ir.ui.view,arch_db:stock.view_stock_replenishment_info @@ -7874,14 +24130,41 @@ msgstr "点击" msgid "Close" msgstr "关闭" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#, python-format +msgid "Close (Esc)" +msgstr "关闭 (Esc)" + #. module: maintenance #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__close_date msgid "Close Date" msgstr "关闭日期" -#. module: account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#, python-format +msgid "Close chat window" +msgstr "关闭聊天视窗" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#, python-format +msgid "Close conversation" +msgstr "关闭对话" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +msgid "Close the onboarding panel" +msgstr "关闭正在进行的面板" + +#. modules: mail, account #: model:ir.model.fields.selection,name:account.selection__res_company__account_dashboard_onboarding_state__closed #: model:ir.model.fields.selection,name:account.selection__res_company__account_invoice_onboarding_state__closed +#: model:ir.model.fields.selection,name:mail.selection__mail_channel_member__fold_state__closed msgid "Closed" msgstr "已关闭" @@ -7890,7 +24173,17 @@ msgstr "已关闭" msgid "Cnc" msgstr "" -#. modules: account, mrp +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_cobalt +msgid "Cobalt Theme" +msgstr "" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "科科斯(基林)群岛" + +#. modules: mrp, base, account #: model:ir.model.fields,field_description:account.field_account_account__code #: model:ir.model.fields,field_description:account.field_account_account_template__code #: model:ir.model.fields,field_description:account.field_account_analytic_line__code @@ -7901,10 +24194,21 @@ msgstr "" #: model:ir.model.fields,field_description:account.field_account_report_line__code #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__code #: model_terms:ir.ui.view,arch_db:account.view_account_form +#: model_terms:ir.ui.view,arch_db:base.view_base_import_language #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view_kanban msgid "Code" msgstr "代号" +#. module: base +#: model:ir.module.module,shortdesc:base.module_code_backend_theme +msgid "Code Backend Theme V16" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_code_backend_theme +msgid "Code Backend Theme V16 is an attractive theme for backend" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_group_form msgid "Code Prefix" @@ -7922,6 +24226,30 @@ msgstr "代码前缀结束" msgid "Code Prefix Start" msgstr "代码前缀开始" +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__compute +msgid "" +"Code to compute the value of the field.\n" +"Iterate on the recordset 'self' and assign the field's value:\n" +"\n" +" for record in self:\n" +" record['size'] = len(record.name)\n" +"\n" +"Modules time, datetime, dateutil are available." +msgstr "" +"用于计算字段值的代码.\n" +"在记录集「self」中迭代并配置字段的值:\n" +"\n" +" for record in selffor record in self:\n" +" record['size'] = len(record.name)\n" +"\n" +"模块 time, datetime, dateutil 可用." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_web_cohort +msgid "Cohort View" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Collect customer payments in one-click using Euro SEPA Service" @@ -7934,7 +24262,49 @@ msgid "" "with intrastat" msgstr "通过Intrastat收集信息并生成欧洲货物贸易统计数据" -#. modules: quality, mrp_workorder, stock, mrp +#. module: base +#: model:ir.module.module,summary:base.module_account_sepa_direct_debit +msgid "Collect payments from your customers through SEPA direct debit." +msgstr "" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_compose_message__reply_to_mode__new +msgid "Collect replies on a specific email address" +msgstr "收集对特定电子邮件地址的回复" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "哥伦比亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_co +msgid "Colombia - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_co_reports +msgid "Colombian - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_co_pos +#: model:ir.module.module,shortdesc:base.module_l10n_co_pos +msgid "Colombian - Point of Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_co +msgid "Colombian Accounting and Tax Preconfiguration" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_co_edi +msgid "Colombian Localization for EDI documents" +msgstr "" + +#. modules: quality, base, stock, mrp, mrp_workorder +#: model:ir.model.fields,field_description:base.field_res_partner_category__color #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__color #: model:ir.model.fields,field_description:quality.field_quality_alert_team__color #: model:ir.model.fields,field_description:stock.field_stock_picking_type__color @@ -7942,9 +24312,12 @@ msgstr "通过Intrastat收集信息并生成欧洲货物贸易统计数据" msgid "Color" msgstr "颜色" -#. modules: quality, maintenance, account, mrp +#. modules: mrp, account, quality, base, maintenance #: model:ir.model.fields,field_description:account.field_account_account_tag__color #: model:ir.model.fields,field_description:account.field_account_journal__color +#: model:ir.model.fields,field_description:base.field_res_groups__color +#: model:ir.model.fields,field_description:base.field_res_partner__color +#: model:ir.model.fields,field_description:base.field_res_users__color #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__color #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__color #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__color @@ -7954,11 +24327,89 @@ msgstr "颜色" msgid "Color Index" msgstr "颜色索引" +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Column %s contains incorrect values (value: %s)" +msgstr "栏位 %s 包含非法数据(值: %s)" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Column %s contains incorrect values. Error in line %d: %s" +msgstr "栏位 %s 包含不正确的值。 出错行 %d: %s" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__column1 +msgid "Column 1" +msgstr "列 1" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__column2 +msgid "Column 2" +msgstr "列 2" + +#. module: base_import +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__column_name +msgid "Column Name" +msgstr "栏位名称" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__column2 +msgid "Column referring to the record in the comodel table" +msgstr "字段指向在comodel表中的记录" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__column1 +msgid "Column referring to the record in the model table" +msgstr "字段指向在model表中的记录" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report__column_ids msgid "Columns" msgstr "列" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__comm10e +msgid "Comm10E 25 105 x 241 mm, U.S. Common 10 Envelope" +msgstr "Comm10E25105 x 241毫米,10个美国一般信封" + +#. modules: base, base_import +#. odoo-python +#. odoo-javascript +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Comma" +msgstr "逗号" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "Comma-separated carbon copy recipients addresses" +msgstr "逗号分隔抄送收件人邮件地址" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "Comma-separated ids of recipient partners" +msgstr "逗号分隔的收件人合作伙伴的邮件地址" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__partner_to +msgid "" +"Comma-separated ids of recipient partners (placeholders may be used here)" +msgstr "逗号分隔的收件人合作伙伴的邮件地址(可以使用占位符)" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__view_mode +msgid "" +"Comma-separated list of allowed view modes, such as 'form', 'tree', " +"'calendar', etc. (Default: tree,form)" +msgstr "逗号分隔的视图模式列表,如:'form', 'tree', 'calendar', 等(默认: tree,form)" + #. module: account #: model:ir.model.fields,help:account.field_account_report_line__groupby msgid "" @@ -7966,24 +24417,49 @@ msgid "" "set, this line will generate sublines grouped by those keys." msgstr "以逗号分隔的字段列表,来自account.move.line (Journal Item)。设置后,此行将生成按这些键分组的子行。" -#. module: mrp_workorder +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template_preview__email_to +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "Comma-separated recipient addresses" +msgstr "逗号分隔的收件人邮件地址" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__email_to +msgid "Comma-separated recipient addresses (placeholders may be used here)" +msgstr "逗号分隔的收件人邮件地址(可以在这里使用占位符)" + +#. modules: mail, base, mrp_workorder +#: model:ir.model.fields,field_description:base.field_res_groups__comment #: model:ir.model.fields,field_description:mrp_workorder.field_propose_change__comment +#: model:ir.model.fields.selection,name:mail.selection__mail_compose_message__message_type__comment +#: model:ir.model.fields.selection,name:mail.selection__mail_message__message_type__comment +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search msgid "Comment" msgstr "备注" -#. module: maintenance +#. modules: maintenance, base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__note +#, python-format msgid "Comments" msgstr "注释" -#. modules: account, purchase +#. modules: purchase, base, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__commercial_partner_id #: model:ir.model.fields,field_description:account.field_account_move__commercial_partner_id #: model:ir.model.fields,field_description:account.field_account_payment__commercial_partner_id +#: model:ir.model.fields,field_description:base.field_res_partner__commercial_partner_id +#: model:ir.model.fields,field_description:base.field_res_users__commercial_partner_id #: model:ir.model.fields,field_description:purchase.field_purchase_report__commercial_partner_id msgid "Commercial Entity" msgstr "商业实体" +#. module: base +#: model:ir.module.category,name:base.module_category_sales_commissions +msgid "Commissions" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__invoice_reference_model msgid "Communication Standard" @@ -7994,19 +24470,44 @@ msgstr "通信标准" msgid "Communication Type" msgstr "讯息类型" -#. module: stock +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "科摩罗群岛" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_action_view.js:0 +#, python-format +msgid "Compact" +msgstr "条约" + +#. modules: stock, base +#: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.model,name:stock.model_res_company +#: model:ir.model.fields,field_description:base.field_res_users__company_ids +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: model_terms:ir.ui.view,arch_db:base.view_company_tree +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter msgid "Companies" msgstr "公司" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Companies count" +msgstr "公司计数" + #. module: account #: model:ir.model.fields,field_description:account.field_res_partner__ref_company_ids #: model:ir.model.fields,field_description:account.field_res_users__ref_company_ids msgid "Companies that refers to partner" msgstr "公司是指业务伙伴" -#. modules: sf_manufacturing, maintenance, mrp_workorder, purchase, mrp, -#. sale_management, stock, stock_account, quality, account +#. modules: sf_manufacturing, purchase, mrp, account, sale_management, +#. quality, base, stock, maintenance, mrp_workorder +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:account.field_account_account__company_id #: model:ir.model.fields,field_description:account.field_account_accrued_orders_wizard__company_id #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__company_id @@ -8036,6 +24537,14 @@ msgstr "公司是指业务伙伴" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__company_id #: model:ir.model.fields,field_description:account.field_account_tax__company_id #: model:ir.model.fields,field_description:account.field_account_tax_repartition_line__company_id +#: model:ir.model.fields,field_description:base.field_ir_attachment__company_id +#: model:ir.model.fields,field_description:base.field_ir_default__company_id +#: model:ir.model.fields,field_description:base.field_ir_property__company_id +#: model:ir.model.fields,field_description:base.field_ir_sequence__company_id +#: model:ir.model.fields,field_description:base.field_res_currency_rate__company_id +#: model:ir.model.fields,field_description:base.field_res_partner__company_id +#: model:ir.model.fields,field_description:base.field_res_partner_bank__company_id +#: model:ir.model.fields,field_description:base.field_res_users__company_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__company_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__company_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_team__company_id @@ -8083,19 +24592,34 @@ msgstr "公司是指业务伙伴" #: model:ir.model.fields,field_description:stock.field_stock_storage_category_capacity__company_id #: model:ir.model.fields,field_description:stock.field_stock_warehouse__company_id #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__company_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +#: model:ir.model.fields.selection,name:base.selection__res_partner__company_type__company #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_report_search #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter #: model_terms:ir.ui.view,arch_db:account.view_account_payment_search #: model_terms:ir.ui.view,arch_db:account.view_account_tax_search +#: model_terms:ir.ui.view,arch_db:base.ir_default_search_view +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +#: model_terms:ir.ui.view,arch_db:base.view_company_form +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter +#: model_terms:ir.ui.view,arch_db:base.view_users_search #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_workcenter_search #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_search #: model_terms:ir.ui.view,arch_db:stock.quant_search_view +#, python-format msgid "Company" msgstr "客户名称" +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "" +"Company %(company_name)s is not in the allowed companies for user " +"%(user_name)s (%(company_allowed)s)." +msgstr "公司 %(company_name)s 不在用户 %(user_name)s (%(company_allowed)s) 允许的公司中." + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form msgid "Company Bank Account" @@ -8106,7 +24630,7 @@ msgstr "公司银行账户" msgid "Company Country" msgstr "公司国别" -#. modules: account, purchase +#. modules: purchase, account #: model:ir.model.fields,field_description:account.field_account_accrued_orders_wizard__currency_id #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__company_currency_id #: model:ir.model.fields,field_description:account.field_account_invoice_report__company_currency_id @@ -8119,16 +24643,89 @@ msgstr "公司国别" msgid "Company Currency" msgstr "公司币种" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_company_step +msgid "Company Data" +msgstr "公司数据" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__company_details +msgid "Company Details" +msgstr "公司详情" + #. module: account #: model:ir.model,name:account.model_base_document_layout msgid "Company Document Layout" msgstr "公司文档布局" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__favicon +msgid "Company Favicon" +msgstr "公司图标" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__company_registry +#: model:ir.model.fields,field_description:base.field_res_partner__company_registry +#: model:ir.model.fields,field_description:base.field_res_users__company_registry +msgid "Company ID" +msgstr "公司 ID" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__logo +msgid "Company Logo" +msgstr "公司 Logo" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__name +#: model:ir.model.fields,field_description:base.field_res_partner__company_name +#: model:ir.model.fields,field_description:base.field_res_users__company_name +msgid "Company Name" +msgstr "公司名称" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__commercial_company_name +#: model:ir.model.fields,field_description:base.field_res_users__commercial_company_name +msgid "Company Name Entity" +msgstr "公司名称实体" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_simple_form +msgid "Company Name..." +msgstr "公司名称..." + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "Company Properties" +msgstr "公司属性" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "Company Property" +msgstr "公司属性" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency_rate__company_rate +msgid "Company Rate" +msgstr "公司费率" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__is_storno msgid "Company Storno Accounting" msgstr "公司 Storno 会计" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__report_header +msgid "Company Tagline" +msgstr "公司标语" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__company_type +#: model:ir.model.fields,field_description:base.field_res_users__company_type +msgid "Company Type" +msgstr "公司类别" + #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__has_chart_of_accounts msgid "Company has a chart of accounts" @@ -8141,8 +24738,54 @@ msgstr "公司有科目表" msgid "Company related to this journal" msgstr "日记账相关的公司" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "" +"Company used for the original currency (only used for t-esc). By default use" +" the user company" +msgstr "公司用于原始货币(仅用于T-ESC). 默认情况下使用用户公司" + +#. module: base +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__compare_view_id +msgid "Compare To View" +msgstr "比较视图" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_project_timesheet_forecast_sale +msgid "Compare timesheets and forecast for your projects" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_timesheet_forecast +msgid "Compare timesheets and plannings" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.reset_view_arch_wizard_action +msgid "Compare/Reset" +msgstr "比较/重置" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__contact_address +#: model:ir.model.fields,field_description:base.field_res_users__contact_address +msgid "Complete Address" +msgstr "完整地址" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_data__complete_name +msgid "Complete ID" +msgstr "完整 ID" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__complete_name +msgid "Complete Name" +msgstr "完整名称" + #. module: mrp_workorder -#. openerp-web +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #, python-format @@ -8154,7 +24797,7 @@ msgstr "" msgid "Completion date of the first receipt order." msgstr "第一张收货单的完成日期。" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model:ir.model.fields,field_description:mrp.field_mrp_bom_line__product_id #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__component_id #: model:ir.model.fields,field_description:mrp_workorder.field_quality_point__component_ids @@ -8165,11 +24808,6 @@ msgstr "第一张收货单的完成日期。" msgid "Component" msgstr "组件" -#. module: quality_mrp_workorder -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_form_inherit_mrp_workorder -msgid "Component Lot/Serial" -msgstr "组件批次/序列号" - #. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__component_qty_to_do msgid "Component Qty To Do" @@ -8181,11 +24819,11 @@ msgid "Component Status" msgstr "组件状态" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/mrp_forecasted/forecasted_details.xml:0 #, python-format msgid "Component of Draft MO" -msgstr "" +msgstr "草稿状态MO的组件" #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_production__move_raw_ids @@ -8211,9 +24849,16 @@ msgid "" "Components will be reserved first for the MO with the highest priorities." msgstr "将首先为具有最高优先级的MO预留组件。" -#. module: purchase +#. modules: mail, purchase +#. odoo-python +#. odoo-javascript +#: code:addons/mail/static/src/js/activity.js:0 +#: code:addons/mail/static/src/models/composer_view.js:0 +#: code:addons/mail/static/src/models/mail_template.js:0 #: code:addons/purchase/models/purchase.py:0 #: code:addons/purchase/models/purchase.py:0 +#: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form #, python-format msgid "Compose Email" msgstr "撰写邮件" @@ -8223,8 +24868,9 @@ msgstr "撰写邮件" msgid "Composer" msgstr "生成器" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__composition_mode +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__composition_mode msgid "Composition mode" msgstr "写作模式" @@ -8233,6 +24879,11 @@ msgstr "写作模式" msgid "Computation Engine" msgstr "计算引擎" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__compute +msgid "Compute" +msgstr "计算" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__compute_all_tax msgid "Compute All Tax" @@ -8253,6 +24904,13 @@ msgstr "根据跟踪时间进行计算" msgid "Compute from BoM" msgstr "从BOM计算" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Compute method cannot depend on field 'id'" +msgstr "" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Compute shipping costs" @@ -8298,6 +24956,16 @@ msgstr "计算运输成本并用bpost装运" msgid "Compute tax rates based on U.S. ZIP codes" msgstr "基于美国的邮编代码计算税率" +#. module: base +#: model:ir.module.module,summary:base.module_sale_subscription_taxcloud +msgid "Compute taxes with TaxCloud after automatic invoice creation." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_taxcloud_delivery +msgid "Compute taxes with TaxCloud after online delivery computation." +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_product_template_form_inherited msgid "" @@ -8322,6 +24990,24 @@ msgid "" "it applies to each of them." msgstr "计算字段,列出受此行影响的Tax Grids,以及它应用于每个Tax Grids的金额。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "" +"Computed fields are defined with the fields\n" +" Dependencies and Compute." +msgstr "" +"使用字段\n" +" 相关性计算 定义计算字段." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +msgid "" +"Computed fields are defined with the fields\n" +" Dependencies and Compute." +msgstr "" +"使用字段\n" +" 相关性计算定义计算字段." + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_routing_workcenter__time_computed_on msgid "Computed on last" @@ -8330,26 +25016,57 @@ msgstr "最后计算" #. module: maintenance #: model:maintenance.equipment.category,name:maintenance.equipment_computer msgid "Computers" -msgstr "电脑" +msgstr "钻攻一体机" #. module: stock #: model:ir.model.fields,help:stock.field_stock_move__reservation_date msgid "Computes when a move should be reserved" msgstr "判断何时产品移动会被预留" -#. module: stock_account -#: model:ir.model,name:stock_account.model_res_config_settings -msgid "Config Settings" -msgstr "配置设置" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_default__condition +msgid "Condition" +msgstr "条件" -#. modules: maintenance, purchase, mrp, stock, quality_control, account +#. module: base +#: model:ir.model,name:base.model_res_config +msgid "Config" +msgstr "配置" + +#. module: base +#: model:ir.model,name:base.model_res_config_installer +msgid "Config Installer" +msgstr "配置安装器" + +#. module: stock_barcode +#: model:ir.model,name:stock_barcode.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.config_wizard_step_view_form +#: model_terms:ir.ui.view,arch_db:base.ir_actions_todo_tree +msgid "Config Wizard Steps" +msgstr "配置向导步骤" + +#. module: base +#: model:ir.actions.server,name:base.action_run_ir_action_todo +msgid "Config: Run Remaining Action Todo" +msgstr "配置: 运行剩余的待办动作" + +#. modules: purchase, quality_control, mrp, account, mail, base, stock, +#. maintenance +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__configuration #: model:ir.ui.menu,name:account.menu_finance_configuration +#: model:ir.ui.menu,name:base.menu_reporting_config #: model:ir.ui.menu,name:maintenance.menu_maintenance_configuration #: model:ir.ui.menu,name:mrp.menu_mrp_configuration #: model:ir.ui.menu,name:purchase.menu_purchase_config #: model:ir.ui.menu,name:quality_control.menu_quality_configuration #: model:ir.ui.menu,name:stock.menu_stock_config_settings #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view +#: model_terms:ir.ui.view,arch_db:base.res_config_view_base +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form #: model_terms:ir.ui.view,arch_db:maintenance.maintenance_team_kanban #: model_terms:ir.ui.view,arch_db:mrp.stock_production_type_kanban #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_team_dashboard_view_kanban @@ -8357,13 +25074,17 @@ msgstr "配置设置" msgid "Configuration" msgstr "配置" -#. module: stock_account -#: code:addons/stock_account/models/stock_move.py:0 -#, python-format -msgid "" -"Configuration error. Please configure the price difference account on the " -"product or its category to process this operation." -msgstr "配置错误。 请在产品或其类别上配置价格差异科目来处理此作业。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_config_installer +msgid "Configuration Installer" +msgstr "配置安装程序" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.model,name:base.model_ir_actions_todo +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Configuration Wizards" +msgstr "配置向导" #. module: account #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity @@ -8375,13 +25096,56 @@ msgstr "检查配置" msgid "Configure" msgstr "配置" -#. modules: purchase, account, stock, mrp +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.res_config_settings_view_form +msgid "Configure Product Barcodes" +msgstr "配置产品的条码" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_twitter_wall +msgid "Configure a Twitter Wall on your Event" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_partner_commission +msgid "Configure resellers commissions on subscription sale" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_timesheet_enterprise +msgid "Configure timesheet invoicing" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Configure your ICE server list for webRTC" +msgstr "为 webRTC 配置 ICE 服务器列表" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Configure your activity types" +msgstr "配置您的活动类型" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Configure your own email servers" +msgstr "配置您的邮件服务器参数" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_product_configurator +msgid "Configure your products" +msgstr "设置您的产品" + +#. modules: purchase, account, mail, base, stock, mrp, stock_barcode +#. odoo-python #: code:addons/account/wizard/account_tour_upload_bill.py:0 #: code:addons/purchase/models/purchase.py:0 #: model_terms:ir.ui.view,arch_db:account.account_resequence_view #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form #: model_terms:ir.ui.view,arch_db:account.view_account_payment_tree #: model_terms:ir.ui.view,arch_db:account.view_move_form +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_remove_view_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_consumption_warning_form #: model_terms:ir.ui.view,arch_db:stock.lot_label_layout_form_picking @@ -8393,6 +25157,9 @@ msgstr "配置" #: model_terms:ir.ui.view,arch_db:stock.view_product_replenish #: model_terms:ir.ui.view,arch_db:stock.view_stock_move_operations #: model_terms:ir.ui.view,arch_db:stock.view_stock_quantity_history +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_picking_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode #, python-format msgid "Confirm" msgstr "确认" @@ -8412,6 +25179,11 @@ msgstr "确认测量" msgid "Confirm Order" msgstr "确认订单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.identity_check_wizard +msgid "Confirm Password" +msgstr "确认密码" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Confirm Receipt Date" @@ -8423,11 +25195,20 @@ msgid "Confirm purchase orders in one step" msgstr "直接确认订单" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "Confirm your purchase." -msgstr "" +msgstr "确定您的采购" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_delete_confirm/attachment_delete_confirm.xml:0 +#: code:addons/mail/static/src/components/delete_message_confirm/delete_message_confirm.xml:0 +#: code:addons/mail/static/src/components/link_preview_delete_confirm_view/link_preview_delete_confirm_view.xml:0 +#, python-format +msgid "Confirmation" +msgstr "确认" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_approve @@ -8447,7 +25228,8 @@ msgstr "去年的确定日期" msgid "Confirmation Mail" msgstr "确认邮件" -#. modules: quality, stock, mrp +#. modules: stock, mail, mrp, quality +#: model:ir.model.fields.selection,name:mail.selection__fetchmail_server__state__done #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__state__confirmed #: model:ir.model.fields.selection,name:stock.selection__stock_package_level__state__confirmed #: model:quality.alert.stage,name:quality.quality_alert_stage_1 @@ -8466,6 +25248,7 @@ msgid "Conflict in Inventory" msgstr "库存的冲突" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "Conflict in Inventory Adjustment" @@ -8476,21 +25259,119 @@ msgstr "库存调整中的冲突" msgid "Conflicts" msgstr "冲突" +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "刚果" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_invoice_onboarding_panel msgid "Congratulations! You are all set." msgstr "恭喜恭喜!大吉大利,今晚吃鸡。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#, python-format +msgid "Congratulations, you're done with your activities." +msgstr "恭喜,您已完成您的活动。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "Congratulations, your inbox is empty" +msgstr "恭喜,您的收件箱已清空" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/mailbox.js:0 +#, python-format +msgid "Congratulations, your inbox is empty!" +msgstr "恭喜,您的收件箱是空的!" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "Connect" msgstr "连接" +#. module: base +#: model:ir.module.module,summary:base.module_pos_restaurant_iot +msgid "Connect kitchen printers to your PoS" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hw_drivers +msgid "Connect the Web Client to Hardware Peripherals" +msgstr "连接网站客户端到并行硬件" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"Connect to your server through your usual username and password. \n" +"This is the most basic SMTP authentication process and may not be accepted by all providers. \n" +msgstr "" +"通过常用用户名和密码连接至服务器。\n" +"这是最基本的SMTP身份验证过程,可能并非所有供应商均会接受。\n" + #. module: account #: model_terms:ir.ui.view,arch_db:account.onboarding_bank_account_step msgid "Connect your financial accounts in seconds." msgstr "在几秒钟内连接您的财务账户。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_mail_server_form +msgid "Connection" +msgstr "连接" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__smtp_encryption +msgid "Connection Encryption" +msgstr "连接加密" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"Connection Test Failed! Here is what we got instead:\n" +" %s" +msgstr "" +"连接测试失败!这是我们得到的结果:\n" +"%s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "Connection Test Successful!" +msgstr "连接测试成功!" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__failure_type__mail_smtp +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__failure_type__mail_smtp +msgid "Connection failed (outgoing mail server problem)" +msgstr "连接失败(发信服务器问题)" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/fetchmail.py:0 +#, python-format +msgid "Connection test failed: %s" +msgstr "连接测试失败:%s" + +#. module: mail +#: model:ir.model.fields,help:mail.field_fetchmail_server__is_ssl +msgid "" +"Connections are encrypted with SSL/TLS through a dedicated port (default: " +"IMAPS=993, POP3S=995)" +msgstr "专用端口链接将通过SSL/TLS加密(默认为:IMAP=993,POP3S=995)" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_warehouse_orderpoint__visibility_days msgid "" @@ -8498,8 +25379,9 @@ msgid "" "The value depends on the type of the route (Buy or Manufacture)" msgstr "判断产品补货后未来几天的数量预测,数值为0表示即时生效。该值取决于路线类型(购买或制造)。" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__reply_to_force_new +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__reply_to_force_new msgid "Considers answers as new thread" msgstr "将答案视为新行程" @@ -8508,6 +25390,51 @@ msgstr "将答案视为新行程" msgid "Consignment" msgstr "寄售" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_consolidation +msgid "Consolidation" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__name +msgid "Constraint" +msgstr "约束" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__type +msgid "Constraint Type" +msgstr "约束类型" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_search +msgid "Constraint type" +msgstr "约束类型" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_search +msgid "Constraints" +msgstr "限制" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_model_constraint_module_name_uniq +msgid "Constraints with the same name are unique per module." +msgstr "具有相同名称的约束是每个模块唯一." + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_F +msgid "Construction" +msgstr "建筑" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_paptic +msgid "Consultancy, Design, Tech, Computers, IT, Blogs" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Consulting Services" +msgstr "谘询服务" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_tax_template__tax_scope__consu msgid "Consumable" @@ -8554,7 +25481,7 @@ msgstr "消耗的拆解单" msgid "Consumed in Operation" msgstr "消耗在作业" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model:ir.model.fields,field_description:mrp.field_mrp_consumption_warning__consumption #: model:ir.model.fields,field_description:mrp.field_mrp_consumption_warning_line__consumption #: model:ir.model.fields,field_description:mrp.field_mrp_production__consumption @@ -8569,16 +25496,93 @@ msgstr "消耗" msgid "Consumption Warning" msgstr "消耗警告" -#. modules: purchase, stock, account -#: model:ir.model,name:stock.model_res_partner +#. modules: purchase, account, base, stock, stock_barcode +#: model:ir.model,name:stock_barcode.model_res_partner +#: model:ir.model.fields,field_description:base.field_res_partner__child_ids +#: model:ir.model.fields,field_description:base.field_res_users__child_ids #: model:ir.model.fields,field_description:stock.field_stock_move_line__picking_partner_id #: model:ir.model.fields,field_description:stock.field_stock_picking__partner_id +#: model:ir.model.fields.selection,name:base.selection__res_partner__type__contact #: model_terms:ir.ui.view,arch_db:account.portal_invoice_page +#: model_terms:ir.ui.view,arch_db:base.view_company_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_simple_form #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "Contact" msgstr "联系人" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Contact / Address" +msgstr "联系人/地址" + +#. module: base +#: model:res.groups,name:base.group_partner_manager +msgid "Contact Creation" +msgstr "联系人创建" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_crm +msgid "Contact Form" +msgstr "联系表单" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Contact Name" +msgstr "联系人姓名" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_category_form +msgid "Contact Tag" +msgstr "联系人标签" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_category_list +msgid "Contact Tags" +msgstr "联系人标签" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +msgid "Contact Titles" +msgstr "联系人称谓" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Contact image" +msgstr "联系人图像" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#: code:addons/base/models/ir_rule.py:0 code:addons/base/models/ir_rule.py:0 +#, python-format +msgid "Contact your administrator to request access if necessary." +msgstr "如有必要,请联系您的管理员以请求访问." + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__partner_ids +#: model:ir.module.module,shortdesc:base.module_contacts +#: model_terms:ir.ui.view,arch_db:base.view_partner_tree +#: model_terms:ir.ui.view,arch_db:mail.res_partner_view_activity +msgid "Contacts" +msgstr "联系人" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Contacts & Addresses" +msgstr "联系人 & 地址" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_contacts_enterprise +msgid "Contacts Enterprise" +msgstr "" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_res_partner_check_name +msgid "Contacts require a name" +msgstr "联系人必须有姓名" + #. modules: stock, account #: model:ir.model.fields,field_description:stock.field_stock_location__child_ids #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_label__contains @@ -8590,17 +25594,63 @@ msgstr "联系人" msgid "Contains" msgstr "包含" -#. module: stock +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Contains In-App Purchases" +msgstr "包含应用内购买" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_channel_member__last_interest_dt +msgid "" +"Contains the date and time of the last interesting event that happened in " +"this channel for this partner. This includes: creating, joining, pinning, " +"and new message posted." +msgstr "包含此合作伙伴在此频道中发生的最后一个有趣事件的日期和时间。这包括:创建、加入、固定和发布新消息。" + +#. modules: mail, stock +#: model:ir.model.fields,field_description:mail.field_mail_message_reaction__content +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +#: model_terms:ir.ui.view,arch_db:mail.view_message_search #: model_terms:ir.ui.view,arch_db:stock.view_quant_package_form msgid "Content" msgstr "内容" -#. module: account +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_shortcode__substitution +msgid "" +"Content that will automatically replace the shortcut of your choosing. This " +"content can still be adapted before sending your message." +msgstr "将自动替换您选择的快捷方式的内容。 此内容仍然可以在发送您的消息之前进行调整。" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__body +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__body +#: model:ir.model.fields,field_description:mail.field_mail_composer_mixin__body +#: model:ir.model.fields,field_description:mail.field_mail_mail__body +#: model:ir.model.fields,field_description:mail.field_mail_message__body msgid "Contents" msgstr "内容" -#. modules: account, stock +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_filters__context +msgid "Context" +msgstr "上下文" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__context +#: model:ir.model.fields,field_description:base.field_ir_actions_client__context +msgid "Context Value" +msgstr "上下文值" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__context +#: model:ir.model.fields,help:base.field_ir_actions_client__context +msgid "" +"Context dictionary as Python expression, empty by default (Default: {})" +msgstr "上下文字典作为 Python表达式, 默认为空白 (默认:: {})" + +#. modules: stock, account #: model_terms:ir.ui.view,arch_db:account.account_tour_upload_bill #: model_terms:ir.ui.view,arch_db:account.account_tour_upload_bill_email_confirm #: model_terms:ir.ui.view,arch_db:stock.inventory_warning_reset_view @@ -8608,6 +25658,21 @@ msgstr "内容" msgid "Continue" msgstr "继续" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_contract_sign +msgid "Contract - Signature" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_contracts +msgid "Contracts" +msgstr "合同" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__contributors +msgid "Contributors" +msgstr "贡献者" + #. module: quality #: model:ir.model.fields,field_description:quality.field_quality_check__control_date msgid "Control Date" @@ -8624,7 +25689,7 @@ msgstr "控制频率" msgid "Control Person" msgstr "控制人" -#. modules: quality, quality_control +#. modules: quality_control, quality #: model:ir.model.fields,field_description:quality.field_quality_check__point_id #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_search #: model_terms:ir.ui.view,arch_db:quality_control.quality_point_view_search @@ -8643,11 +25708,11 @@ msgid "Control Policy" msgstr "控制策略" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/components/reception_report_main/stock_reception_report_main.xml:0 #, python-format msgid "Control panel buttons" -msgstr "" +msgstr "控制面板按钮" #. module: quality_control #: model:ir.model.fields,field_description:quality_control.field_quality_check__measure_on @@ -8656,12 +25721,39 @@ msgstr "" msgid "Control per" msgstr "每次控制" +#. module: base +#: model:ir.module.module,summary:base.module_quality_control +msgid "Control the quality of your products" +msgstr "控制产品质量" + +#. module: base +#: model:ir.module.module,summary:base.module_quality_control_iot +msgid "Control the quality of your products with IoT devices" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Control-Access" msgstr "控制-访问" -#. modules: mrp_workorder, purchase, mrp, sale_management, stock, account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__fold_state +msgid "Conversation Fold State" +msgstr "对话收拢状态" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__is_minimized +msgid "Conversation is minimized" +msgstr "对话已最小化" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/messaging_menu/messaging_menu.xml:0 +#, python-format +msgid "Conversations" +msgstr "对话" + +#. modules: purchase, sale_management, account, stock, mrp, mrp_workorder #: model:ir.model.fields,help:account.field_account_move_line__product_uom_category_id #: model:ir.model.fields,help:mrp.field_mrp_bom__product_uom_category_id #: model:ir.model.fields,help:mrp.field_mrp_bom_byproduct__product_uom_category_id @@ -8681,6 +25773,31 @@ msgid "" "same category. The conversion will be made based on the ratios." msgstr "计量单位转换只能基于转换比例对同一个类别进行转换。" +#. module: base +#: model:ir.module.module,summary:base.module_crm_helpdesk +msgid "Convert Tickets from/to Leads" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_helpdesk_mail_plugin +msgid "Convert emails to Helpdesk Tickets." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_edi_40 +msgid "Converts the Mexican EDI CFDI documents to version 4.0" +msgstr "" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "库克群岛" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__copied +msgid "Copied" +msgstr "已复制" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_routing_workcenter_bom_tree_view msgid "Copy Existing Operations" @@ -8691,6 +25808,16 @@ msgstr "复制现有的作业" msgid "Copy selected operations" msgstr "复制选定的作业" +#. module: base +#: model:ir.module.category,name:base.module_category_theme_corporate +msgid "Corporate" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_buzzy +msgid "Corporate, Services, Technology, Shapes, Illustrations" +msgstr "" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_wizard_form_failure msgid "Correct Measure" @@ -8712,6 +25839,7 @@ msgid "Corrective Actions" msgstr "纠正动作" #. module: purchase_stock +#. odoo-python #: code:addons/purchase_stock/models/purchase.py:0 #, python-format msgid "Corresponding receipt not found." @@ -8723,6 +25851,7 @@ msgid "Corridor (X)" msgstr "通道(X)" #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #, python-format msgid "Corrupted data on journal entry with id %s." @@ -8756,33 +25885,30 @@ msgstr "收入成本" msgid "Cost per hour" msgstr "每小时成本" +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "哥斯达黎加" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cr +msgid "Costa Rica - Accounting" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view msgid "Costing Information" msgstr "成本信息" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method -#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method -#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method -#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method -msgid "Costing Method" -msgstr "成本方法" - -#. module: stock_account -#: code:addons/stock_account/models/product.py:0 -#, python-format -msgid "Costing method change for product category %s: from %s to %s." -msgstr "产品类别%s的成本定价核算方法更改:从%s 到%s。" - #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_display_filter/mrp_bom_overview_display_filter.js:0 #, python-format msgid "Costs" -msgstr "" +msgstr "成本" #. module: account +#. odoo-python #: code:addons/account/models/account_journal.py:0 #, python-format msgid "" @@ -8791,19 +25917,21 @@ msgid "" msgstr "无法自动计算副本的任何代码。请手动创建。" #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "Could not determine carryover target automatically for expression %s." msgstr "无法自动确定表达式 %s 的残留目标。" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/views/fields/google_slides_viewer.js:0 #, python-format msgid "Could not display the selected spreadsheet" -msgstr "" +msgstr "无法显示选择的电子表格" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "" @@ -8811,7 +25939,22 @@ msgid "" "entries existing." msgstr "无法安装新的账户图表,因为已经存在会计项目。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"Could not load your certificate / private key. \n" +"%s" +msgstr "" +"无法加载您的证书/私钥。y. \n" +"%s" + #. module: stock +#. odoo-python #: code:addons/stock/wizard/stock_immediate_transfer.py:0 #, python-format msgid "" @@ -8819,18 +25962,40 @@ msgid "" "button to handle the reservation manually." msgstr "不能预留全部需要的产品。请使用‘标记为待做’按钮手工预留。" +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "" +"Could not retrieve URL: %(url)s [%(field_name)s: L%(line_number)d]: " +"%(error)s" +msgstr "无法检索 URL: %(url)s [%(field_name)s: L%(line_number)d]: %(error)s" + #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/bills_upload/bills_upload.js:0 #, python-format msgid "Could not upload files" -msgstr "" +msgstr "不能上传文件" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "Couldn't create contact without email address!" +msgstr "不能创建没有电子邮件地址的联系人!" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_request_count__set_count msgid "Count" msgstr "计数" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model__count +msgid "Count (Incl. Archived)" +msgstr "计数(包括归档)" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking_type__count_picking msgid "Count Picking" @@ -8862,7 +26027,10 @@ msgid "Count Picking Waiting" msgstr "等待拣货个数" #. module: stock +#. odoo-javascript +#: code:addons/stock/static/src/views/list/inventory_report_list_controller.js:0 #: model:ir.actions.report,name:stock.action_report_inventory +#, python-format msgid "Count Sheet" msgstr "计数表" @@ -8871,16 +26039,19 @@ msgstr "计数表" msgid "Count of linked backorder" msgstr "连接的欠单计数" -#. module: stock +#. modules: stock, stock_barcode #: model:ir.model.fields,field_description:stock.field_stock_quant__inventory_quantity #: model_terms:ir.ui.view,arch_db:stock.stock_inventory_conflict_form_view +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode msgid "Counted Quantity" msgstr "计数的数量" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id -msgid "Counterpart Account" -msgstr "对方科目" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__message_bounce +#: model:ir.model.fields,help:mail.field_res_partner__message_bounce +#: model:ir.model.fields,help:mail.field_res_users__message_bounce +msgid "Counter of the number of bounced emails for this contact" +msgstr "此联系人退回邮件计数计数器" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_form @@ -8892,16 +26063,14 @@ msgstr "对应分录" msgid "Counterpart Locations" msgstr "对方位置" -#. module: stock_account -#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id -msgid "" -"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" -" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." -msgstr "" -"所有传入库存变动的对应会计分录将过帐在此帐户中,除非有特定的估值科目\n" -" 设置在源库位。这是此类别中所有产品的默认值。也可以直接设置每个产品。" +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.model.fields,field_description:base.field_res_country_group__country_ids +msgid "Countries" +msgstr "国家" -#. module: account +#. modules: mail, base, account +#: model:ir.model,name:base.model_res_country #: model:ir.model.fields,field_description:account.field_account_account_tag__country_id #: model:ir.model.fields,field_description:account.field_account_chart_template__country_id #: model:ir.model.fields,field_description:account.field_account_fiscal_position__country_id @@ -8911,11 +26080,30 @@ msgstr "" #: model:ir.model.fields,field_description:account.field_account_report_external_value__report_country_id #: model:ir.model.fields,field_description:account.field_account_tax__country_id #: model:ir.model.fields,field_description:account.field_account_tax_group__country_id +#: model:ir.model.fields,field_description:base.field_res_bank__country +#: model:ir.model.fields,field_description:base.field_res_company__country_id +#: model:ir.model.fields,field_description:base.field_res_country_state__country_id +#: model:ir.model.fields,field_description:base.field_res_partner__country_id +#: model:ir.model.fields,field_description:base.field_res_users__country_id +#: model:ir.model.fields,field_description:mail.field_mail_guest__country_id #: model_terms:ir.ui.view,arch_db:account.account_tax_group_view_search +#: model_terms:ir.ui.view,arch_db:base.res_partner_view_form_private +#: model_terms:ir.ui.view,arch_db:base.view_company_form +#: model_terms:ir.ui.view,arch_db:base.view_country_state_search +#: model_terms:ir.ui.view,arch_db:base.view_country_tree +#: model_terms:ir.ui.view,arch_db:base.view_partner_address_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +#: model_terms:ir.ui.view,arch_db:base.view_res_bank_form +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter msgid "Country" msgstr "国家" -#. modules: account, stock_account +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__phone_code +msgid "Country Calling Code" +msgstr "国家长途区号" + +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__country_code #: model:ir.model.fields,field_description:account.field_account_journal__country_code #: model:ir.model.fields,field_description:account.field_account_move__country_code @@ -8926,42 +26114,104 @@ msgstr "国家" #: model:ir.model.fields,field_description:account.field_account_tax_group__country_code #: model:ir.model.fields,field_description:account.field_res_company__country_code #: model:ir.model.fields,field_description:account.field_res_config_settings__country_code -#: model:ir.model.fields,field_description:stock_account.field_stock_picking__country_code +#: model:ir.model.fields,field_description:base.field_res_country__code +#: model:ir.model.fields,field_description:base.field_res_partner__country_code +#: model:ir.model.fields,field_description:base.field_res_users__country_code msgid "Country Code" msgstr "国家代码" -#. module: account +#. modules: base, account +#: model:ir.actions.act_window,name:base.action_country_group +#: model:ir.model,name:base.model_res_country_group #: model:ir.model.fields,field_description:account.field_account_fiscal_position__country_group_id #: model:ir.model.fields,field_description:account.field_account_fiscal_position_template__country_group_id +#: model_terms:ir.ui.view,arch_db:base.view_country_group_form +#: model_terms:ir.ui.view,arch_db:base.view_country_group_tree msgid "Country Group" msgstr "国家/地区组" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__country_group_ids +msgid "Country Groups" +msgstr "国家/地区组" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report__availability_condition__country msgid "Country Matches" msgstr "国家比赛" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__name +msgid "Country Name" +msgstr "国家名称" + #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order__country_code msgid "Country code" msgstr "国家/地区代码" +#. module: base +#. odoo-python +#: code:addons/base/models/res_country.py:0 +#: code:addons/base/models/res_country.py:0 +#, python-format +msgid "Country code cannot be empty" +msgstr "国家代码不能为空" + #. module: account #: model:ir.model.fields,help:account.field_account_account_tag__country_id msgid "Country for which this tag is available, when applied on taxes." msgstr "适用于此税标的国家/地区。" +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "国家州/省" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_loyalty +msgid "Coupons & Loyalty" +msgstr "优惠券 & 会员" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_loyalty_delivery +msgid "Coupons & Loyalty - Delivery" +msgstr "优惠券和会员—交货" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_loyalty +msgid "Coupons, Promotions, Gift Card and Loyalty for eCommerce" +msgstr "电子商务优惠券、促销、礼品卡和会员" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_slides_survey +msgid "Course Certifications" +msgstr "课程认证" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity msgid "Coverage" msgstr "覆盖范围" -#. module: account +#. modules: mail, account +#. odoo-javascript +#: code:addons/mail/static/src/xml/activity_view.xml:0 #: model_terms:ir.ui.view,arch_db:account.onboarding_create_invoice_step #: model_terms:ir.ui.view,arch_db:account.setup_bank_account_wizard +#, python-format msgid "Create" msgstr "创建" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_access__perm_create +msgid "Create Access" +msgstr "创建访问" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +msgid "Create Access Right" +msgstr "创建访问权限" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form msgid "Create Alert" @@ -8985,6 +26235,7 @@ msgid "Create Backorder" msgstr "创建欠单" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Create Backorder?" @@ -9001,6 +26252,18 @@ msgstr "创建账单" msgid "Create Bills" msgstr "创建账单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "Create Contextual Action" +msgstr "创建上下文动作" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__create_date +#: model:ir.model.fields,field_description:base.field_ir_model_relation__create_date +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__create_date +msgid "Create Date" +msgstr "创建日期" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_accrued_orders_wizard msgid "Create Entry" @@ -9016,6 +26279,12 @@ msgstr "创建结算单" msgid "Create Invoices upon Emails" msgstr "在电邮中创建结算单" +#. module: base +#: model:ir.module.module,description:base.module_website_jitsi +#: model:ir.module.module,summary:base.module_website_jitsi +msgid "Create Jitsi room on website." +msgstr "在网站上创建 Jitsi 房间." + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_automatic_entry_wizard_form msgid "Create Journal Entries" @@ -9026,6 +26295,17 @@ msgstr "创建会计凭证" msgid "Create Manually" msgstr "手动创建" +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: model_terms:ir.ui.view,arch_db:base.view_model_menu_create +msgid "Create Menu" +msgstr "创建菜单" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "创建菜单向导" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_type_form msgid "Create New" @@ -9044,11 +26324,27 @@ msgstr "创建新批次/序列号" msgid "Create New Lots/Serial Numbers for Components" msgstr "创建组件的新批号/序列号" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__state__next_activity +msgid "Create Next Activity" +msgstr "创建下一活动" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_payment_register_form msgid "Create Payment" msgstr "创建付款" +#. module: base +#: model:ir.module.module,summary:base.module_industry_fsm_report +#: model:ir.module.module,summary:base.module_industry_fsm_sale_report +msgid "Create Reports for Field service workers" +msgstr "" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__create_uid +msgid "Create Uid" +msgstr "创建Uid" + #. module: purchase #: model:ir.actions.server,name:purchase.action_purchase_batch_bills msgid "Create Vendor Bills" @@ -9059,12 +26355,54 @@ msgstr "创建供应商账单" msgid "Create a Backorder" msgstr "创建一个欠单" -#. module: account +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_bank_form +msgid "Create a Bank" +msgstr "创建银行" + +#. modules: base, account +#. odoo-python #: code:addons/account/models/company.py:0 +#: model_terms:ir.actions.act_window,help:base.action_res_partner_bank_account_form #, python-format msgid "Create a Bank Account" msgstr "创建银行账户" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_category_form +msgid "Create a Contact Tag" +msgstr "创建联系人标签" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_form +msgid "Create a Contact in your address book" +msgstr "在通讯簿中创建联系人" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_country_group +msgid "Create a Country Group" +msgstr "创建国家组" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "Create a Menu" +msgstr "创建菜单" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__object_id +msgid "Create a New Record" +msgstr "创建新记录" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_country_state +msgid "Create a State" +msgstr "创建状态" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_title_contact +msgid "Create a Title" +msgstr "创建标题" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_backorder_confirmation msgid "" @@ -9092,18 +26430,34 @@ msgstr "创建退款通知" msgid "Create a customer invoice" msgstr "创建一个客户结算单" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_ui_view_custom +msgid "Create a customized view" +msgstr "创建自定视图" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_move_journal_line msgid "Create a journal entry" msgstr "创建会计凭证" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__object_create +msgid "Create a new Record" +msgstr "创建一条新记录" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_view_bank_statement_tree msgid "Create a new cash log" msgstr "创建新的现金记录." -#. module: account +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_company_form +msgid "Create a new company" +msgstr "创建一个新公司" + +#. modules: base, account #: model_terms:ir.actions.act_window,help:account.res_partner_action_customer +#: model_terms:ir.actions.act_window,help:base.action_partner_customer_form msgid "Create a new customer in your address book" msgstr "在您的地址簿中创建一个联系人" @@ -9187,6 +26541,21 @@ msgstr "创建一个新的税项" msgid "Create a new tax group" msgstr "创建一个新的税务组" +#. module: stock_barcode +#: model_terms:ir.actions.act_window,help:stock_barcode.stock_picking_action_kanban +msgid "Create a new transfer" +msgstr "创建新调拨" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_supplier_form +msgid "Create a new vendor in your address book" +msgstr "在您的地址簿中新建供应商" + +#. module: base +#: model:ir.module.module,summary:base.module_test_themes +msgid "Create a new website for each Odoo theme for an easy preview." +msgstr "" + #. module: mrp #: model_terms:ir.actions.act_window,help:mrp.mrp_workcenter_action #: model_terms:ir.actions.act_window,help:mrp.mrp_workcenter_kanban_action @@ -9209,21 +26578,67 @@ msgstr "创建一个供应商账单" msgid "Create a vendor credit note" msgstr "创建供应商退款通知" +#. module: base +#: model_terms:ir.actions.act_window,help:base.res_partner_industry_action +msgid "Create an Industry" +msgstr "创建行业" + #. module: mrp #: model:ir.model.fields,help:mrp.field_product_product__days_to_prepare_mo #: model:ir.model.fields,help:mrp.field_product_template__days_to_prepare_mo msgid "" -"Create and confirm Manufacturing Orders these many days in advance, to have enough time to replenish components or manufacture semi-finished products.\n" -"Note that this does not affect the MO scheduled date, which still respects the just-in-time mechanism." +"Create and confirm Manufacturing Orders this many days in advance, to have enough time to replenish components or manufacture semi-finished products.\n" +"Note that security lead times will also be considered when appropriate." msgstr "" "提前很多天创建和确认制造订单,以便有足够的时间来补充组件或制造半成品。\n" "请注意,这不会影响 MO 计划日期,该日期仍遵循实时机制。" +#. module: base +#: model:ir.module.module,summary:base.module_web_studio +msgid "Create and customize your Odoo apps" +msgstr "创建和自定您的Odoo应用" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_company_form +msgid "" +"Create and manage the companies that will be managed by Odoo from here. " +"Shops or subsidiaries can be created and maintained from here." +msgstr "在此处创建与管理系统中的公司机构信息. 门市与下属机构也可以在这里进行创建与维护." + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_users +msgid "" +"Create and manage users that will connect to the system. Users can be " +"deactivated should there be a period of time during which they will/should " +"not connect to the system. You can assign them groups in order to give them " +"specific access to the applications they need to use in the system." +msgstr "为系统创建和管理用户。在一段时间内使用该系统的用户可以暂不启用。您还可以给用户分配某一个组,以便他们能用到系统的指定功能." + +#. module: base +#: model:ir.module.module,summary:base.module_approvals +msgid "Create and validate approvals requests" +msgstr "" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_backorder_form msgid "Create backorder" msgstr "创建欠单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Create company" +msgstr "创建公司" + +#. module: base +#: model:ir.module.module,summary:base.module_quality_control_worksheet +msgid "Create custom worksheet for quality control" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_worksheet +msgid "Create customizable worksheet" +msgstr "" + #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form @@ -9235,7 +26650,15 @@ msgstr "为您的质量检查创建可定制的工作表" msgid "Create first invoice" msgstr "创建第一个结算单" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_invitation_form.js:0 +#, python-format +msgid "Create group chat" +msgstr "创建群聊" + #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Create invoice/bill" @@ -9255,6 +26678,35 @@ msgid "" "your vendors." msgstr "创建结算单,登记付款并跟踪与供应商的讨论。" +#. module: base +#: model:ir.module.module,summary:base.module_crm_livechat +msgid "Create lead from livechat conversation" +msgstr "从联机客服对话中创建销售线索" + +#. module: base +#: model:ir.module.module,description:base.module_event_crm +msgid "Create leads from event registrations." +msgstr "从活动报名创建潜在客户." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Create new %(document)s" +msgstr "新建 %(document)s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Create new %(document)s by sending an email to %(email_link)s" +msgstr "通过向%(document)s发送电子邮件来创建新的%(email_link)s" + +#. module: base +#: model:ir.module.module,description:base.module_crm_livechat +msgid "Create new lead with using /lead command in the channel" +msgstr "在渠道中使用 /lead 命令创建新销售线索" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_putaway_tree msgid "" @@ -9262,6 +26714,13 @@ msgid "" "their appropriate destination location upon receptions." msgstr "创建新的上架规则,以便在收到货后自动将特定产品发送到其适当的目的地。" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Create new values" +msgstr "创建新值" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_bom__allow_operation_dependencies #: model:ir.model.fields,help:mrp.field_mrp_routing_workcenter__allow_operation_dependencies @@ -9272,6 +26731,13 @@ msgid "" "started simultaneously." msgstr "创建作业级依赖项,该依赖项将在MO确认时影响计划和工单状态。如果勾选此功能,且未指定任何内容,Odoo将假定所有作业都可以同时启动" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/discuss.js:0 +#, python-format +msgid "Create or search channel..." +msgstr "创建或搜索频道..." + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_product_stock_view msgid "Create some storable products to see their stock info in this view." @@ -9287,6 +26753,16 @@ msgstr "使用默认产品创建标准化优惠" msgid "Create the first cash rounding" msgstr "创建第一个现金舍入" +#. module: base +#: model:ir.module.module,summary:base.module_hr_work_entry_contract_attendance +msgid "Create work entries from the employee's attendances" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_work_entry_contract_planning +msgid "Create work entries from the employee's planning" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.onboarding_create_invoice_step msgid "Create your first invoice." @@ -9297,11 +26773,24 @@ msgstr "创建您的第一张结算单。" msgid "Create your quotation template" msgstr "创建您的报价模板" -#. module: maintenance +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#, python-format +msgid "Created" +msgstr "已创建" + +#. modules: mail, maintenance +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search msgid "Created By" msgstr "创建人" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Created Menus" +msgstr "创建的菜单" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_stock_move__created_production_id msgid "Created Production Order" @@ -9312,9 +26801,15 @@ msgstr "创建生产订单" msgid "Created Purchase Order Line" msgstr "创建采购订单行" -#. modules: sf_manufacturing, maintenance, sf_plan_management, mrp_workorder, -#. purchase, mrp, sale_management, stock, stock_account, quality, -#. quality_control, sf_base, account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Created Views" +msgstr "创建的视图" + +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. stock, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_account__create_uid #: model:ir.model.fields,field_description:account.field_account_account_tag__create_uid #: model:ir.model.fields,field_description:account.field_account_account_template__create_uid @@ -9369,6 +26864,130 @@ msgstr "创建采购订单行" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__create_uid #: model:ir.model.fields,field_description:account.field_account_unreconcile__create_uid #: model:ir.model.fields,field_description:account.field_validate_account_move__create_uid +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__create_uid +#: model:ir.model.fields,field_description:base.field_base_language_export__create_uid +#: model:ir.model.fields,field_description:base.field_base_language_import__create_uid +#: model:ir.model.fields,field_description:base.field_base_language_install__create_uid +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__create_uid +#: model:ir.model.fields,field_description:base.field_base_module_update__create_uid +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__create_uid +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__create_uid +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__create_uid +#: model:ir.model.fields,field_description:base.field_change_password_own__create_uid +#: model:ir.model.fields,field_description:base.field_change_password_user__create_uid +#: model:ir.model.fields,field_description:base.field_change_password_wizard__create_uid +#: model:ir.model.fields,field_description:base.field_decimal_precision__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_client__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_report__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_server__create_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__create_uid +#: model:ir.model.fields,field_description:base.field_ir_asset__create_uid +#: model:ir.model.fields,field_description:base.field_ir_attachment__create_uid +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__create_uid +#: model:ir.model.fields,field_description:base.field_ir_cron__create_uid +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__create_uid +#: model:ir.model.fields,field_description:base.field_ir_default__create_uid +#: model:ir.model.fields,field_description:base.field_ir_demo__create_uid +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__create_uid +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__create_uid +#: model:ir.model.fields,field_description:base.field_ir_exports__create_uid +#: model:ir.model.fields,field_description:base.field_ir_exports_line__create_uid +#: model:ir.model.fields,field_description:base.field_ir_filters__create_uid +#: model:ir.model.fields,field_description:base.field_ir_logging__create_uid +#: model:ir.model.fields,field_description:base.field_ir_mail_server__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_access__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_data__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_fields__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__create_uid +#: model:ir.model.fields,field_description:base.field_ir_model_relation__create_uid +#: model:ir.model.fields,field_description:base.field_ir_module_category__create_uid +#: model:ir.model.fields,field_description:base.field_ir_module_module__create_uid +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__create_uid +#: model:ir.model.fields,field_description:base.field_ir_property__create_uid +#: model:ir.model.fields,field_description:base.field_ir_rule__create_uid +#: model:ir.model.fields,field_description:base.field_ir_sequence__create_uid +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__create_uid +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__create_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__create_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_view__create_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__create_uid +#: model:ir.model.fields,field_description:base.field_report_layout__create_uid +#: model:ir.model.fields,field_description:base.field_report_paperformat__create_uid +#: model:ir.model.fields,field_description:base.field_res_bank__create_uid +#: model:ir.model.fields,field_description:base.field_res_company__create_uid +#: model:ir.model.fields,field_description:base.field_res_config__create_uid +#: model:ir.model.fields,field_description:base.field_res_config_installer__create_uid +#: model:ir.model.fields,field_description:base.field_res_config_settings__create_uid +#: model:ir.model.fields,field_description:base.field_res_country__create_uid +#: model:ir.model.fields,field_description:base.field_res_country_group__create_uid +#: model:ir.model.fields,field_description:base.field_res_country_state__create_uid +#: model:ir.model.fields,field_description:base.field_res_currency__create_uid +#: model:ir.model.fields,field_description:base.field_res_currency_rate__create_uid +#: model:ir.model.fields,field_description:base.field_res_groups__create_uid +#: model:ir.model.fields,field_description:base.field_res_lang__create_uid +#: model:ir.model.fields,field_description:base.field_res_partner__create_uid +#: model:ir.model.fields,field_description:base.field_res_partner_bank__create_uid +#: model:ir.model.fields,field_description:base.field_res_partner_category__create_uid +#: model:ir.model.fields,field_description:base.field_res_partner_industry__create_uid +#: model:ir.model.fields,field_description:base.field_res_partner_title__create_uid +#: model:ir.model.fields,field_description:base.field_res_users__create_uid +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__create_uid +#: model:ir.model.fields,field_description:base.field_res_users_deletion__create_uid +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__create_uid +#: model:ir.model.fields,field_description:base.field_res_users_log__create_uid +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__create_uid +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_import__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__create_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__create_uid +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_activity__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_alias__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_guest__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_mail__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_message__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_template__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_template_reset__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__create_uid +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__create_uid +#: model:ir.model.fields,field_description:mail.field_res_users_settings__create_uid +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__create_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__create_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__create_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__create_uid @@ -9441,18 +27060,43 @@ msgstr "创建采购订单行" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter__create_uid #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort__create_uid #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common__create_uid -#: model:ir.model.fields,field_description:sf_base.field_sf_tray__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant__create_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method__create_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort__create_uid +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration__create_uid +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule__create_uid +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan__create_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off__create_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting__create_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting__create_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar__create_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift__create_uid +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order__create_uid +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__create_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__create_uid #: model:ir.model.fields,field_description:stock.field_lot_label_layout__create_uid #: model:ir.model.fields,field_description:stock.field_picking_label_type__create_uid #: model:ir.model.fields,field_description:stock.field_procurement_group__create_uid @@ -9499,8 +27143,8 @@ msgstr "创建采购订单行" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__create_uid #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__create_uid #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap__create_uid -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation__create_uid +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search msgid "Created by" msgstr "创建人" @@ -9509,9 +27153,10 @@ msgstr "创建人" msgid "Created by User" msgstr "创建人" -#. modules: sf_manufacturing, maintenance, sf_plan_management, mrp_workorder, -#. purchase, mrp, sale_management, stock, stock_account, quality, -#. quality_control, sf_base, account +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. stock, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_account__create_date #: model:ir.model.fields,field_description:account.field_account_account_tag__create_date #: model:ir.model.fields,field_description:account.field_account_account_template__create_date @@ -9566,6 +27211,128 @@ msgstr "创建人" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__create_date #: model:ir.model.fields,field_description:account.field_account_unreconcile__create_date #: model:ir.model.fields,field_description:account.field_validate_account_move__create_date +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__create_date +#: model:ir.model.fields,field_description:base.field_base_language_export__create_date +#: model:ir.model.fields,field_description:base.field_base_language_import__create_date +#: model:ir.model.fields,field_description:base.field_base_language_install__create_date +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__create_date +#: model:ir.model.fields,field_description:base.field_base_module_update__create_date +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__create_date +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__create_date +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__create_date +#: model:ir.model.fields,field_description:base.field_change_password_own__create_date +#: model:ir.model.fields,field_description:base.field_change_password_user__create_date +#: model:ir.model.fields,field_description:base.field_change_password_wizard__create_date +#: model:ir.model.fields,field_description:base.field_decimal_precision__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_client__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_report__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_server__create_date +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__create_date +#: model:ir.model.fields,field_description:base.field_ir_asset__create_date +#: model:ir.model.fields,field_description:base.field_ir_attachment__create_date +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__create_date +#: model:ir.model.fields,field_description:base.field_ir_cron__create_date +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__create_date +#: model:ir.model.fields,field_description:base.field_ir_default__create_date +#: model:ir.model.fields,field_description:base.field_ir_demo__create_date +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__create_date +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__create_date +#: model:ir.model.fields,field_description:base.field_ir_exports__create_date +#: model:ir.model.fields,field_description:base.field_ir_exports_line__create_date +#: model:ir.model.fields,field_description:base.field_ir_filters__create_date +#: model:ir.model.fields,field_description:base.field_ir_logging__create_date +#: model:ir.model.fields,field_description:base.field_ir_mail_server__create_date +#: model:ir.model.fields,field_description:base.field_ir_model__create_date +#: model:ir.model.fields,field_description:base.field_ir_model_access__create_date +#: model:ir.model.fields,field_description:base.field_ir_model_data__create_date +#: model:ir.model.fields,field_description:base.field_ir_model_fields__create_date +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__create_date +#: model:ir.model.fields,field_description:base.field_ir_module_category__create_date +#: model:ir.model.fields,field_description:base.field_ir_module_module__create_date +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__create_date +#: model:ir.model.fields,field_description:base.field_ir_property__create_date +#: model:ir.model.fields,field_description:base.field_ir_rule__create_date +#: model:ir.model.fields,field_description:base.field_ir_sequence__create_date +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__create_date +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__create_date +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__create_date +#: model:ir.model.fields,field_description:base.field_ir_ui_view__create_date +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__create_date +#: model:ir.model.fields,field_description:base.field_report_layout__create_date +#: model:ir.model.fields,field_description:base.field_report_paperformat__create_date +#: model:ir.model.fields,field_description:base.field_res_bank__create_date +#: model:ir.model.fields,field_description:base.field_res_company__create_date +#: model:ir.model.fields,field_description:base.field_res_config__create_date +#: model:ir.model.fields,field_description:base.field_res_config_installer__create_date +#: model:ir.model.fields,field_description:base.field_res_config_settings__create_date +#: model:ir.model.fields,field_description:base.field_res_country__create_date +#: model:ir.model.fields,field_description:base.field_res_country_group__create_date +#: model:ir.model.fields,field_description:base.field_res_country_state__create_date +#: model:ir.model.fields,field_description:base.field_res_currency__create_date +#: model:ir.model.fields,field_description:base.field_res_currency_rate__create_date +#: model:ir.model.fields,field_description:base.field_res_groups__create_date +#: model:ir.model.fields,field_description:base.field_res_lang__create_date +#: model:ir.model.fields,field_description:base.field_res_partner__create_date +#: model:ir.model.fields,field_description:base.field_res_partner_bank__create_date +#: model:ir.model.fields,field_description:base.field_res_partner_category__create_date +#: model:ir.model.fields,field_description:base.field_res_partner_industry__create_date +#: model:ir.model.fields,field_description:base.field_res_partner_title__create_date +#: model:ir.model.fields,field_description:base.field_res_users__create_date +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__create_date +#: model:ir.model.fields,field_description:base.field_res_users_deletion__create_date +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__create_date +#: model:ir.model.fields,field_description:base.field_res_users_log__create_date +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__create_date +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_import__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__create_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__create_date +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__create_date +#: model:ir.model.fields,field_description:mail.field_mail_activity__create_date +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__create_date +#: model:ir.model.fields,field_description:mail.field_mail_alias__create_date +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__create_date +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__create_date +#: model:ir.model.fields,field_description:mail.field_mail_channel__create_date +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__create_date +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__create_date +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__create_date +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__create_date +#: model:ir.model.fields,field_description:mail.field_mail_guest__create_date +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__create_date +#: model:ir.model.fields,field_description:mail.field_mail_mail__create_date +#: model:ir.model.fields,field_description:mail.field_mail_message__create_date +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__create_date +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__create_date +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__create_date +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__create_date +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__create_date +#: model:ir.model.fields,field_description:mail.field_mail_template__create_date +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__create_date +#: model:ir.model.fields,field_description:mail.field_mail_template_reset__create_date +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__create_date +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__create_date +#: model:ir.model.fields,field_description:mail.field_res_users_settings__create_date +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__create_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__create_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__create_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__create_date @@ -9638,18 +27405,43 @@ msgstr "创建人" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter__create_date #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort__create_date #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common__create_date -#: model:ir.model.fields,field_description:sf_base.field_sf_tray__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant__create_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method__create_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort__create_date +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration__create_date +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule__create_date +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan__create_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off__create_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting__create_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting__create_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar__create_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift__create_date +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order__create_date +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__create_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__create_date #: model:ir.model.fields,field_description:stock.field_lot_label_layout__create_date #: model:ir.model.fields,field_description:stock.field_picking_label_type__create_date #: model:ir.model.fields,field_description:stock.field_procurement_group__create_date @@ -9696,18 +27488,25 @@ msgstr "创建人" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__create_date #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__create_date #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap__create_date -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation__create_date msgid "Created on" msgstr "创建时间" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_workorder_view_form_tablet msgid "Creates a new serial/lot number" msgstr "创建新序列号/批次号码" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/chatter.js:0 +#, python-format +msgid "Creating a new record..." +msgstr "创建新纪录…" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "" @@ -9715,13 +27514,19 @@ msgid "" "setting" msgstr "创建新仓库会自动激活库存地址设置" -#. module: mrp +#. modules: base, mrp +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_document_form msgid "Creation" msgstr "创建日期" -#. modules: quality, stock +#. modules: stock, quality, base, mail +#: model:ir.model.fields,field_description:base.field_ir_profile__create_date +#: model:ir.model.fields,field_description:base.field_res_users_apikeys__create_date #: model:ir.model.fields,field_description:stock.field_stock_picking__date +#: model_terms:ir.ui.view,arch_db:base.ir_logging_search_view +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search #: model_terms:ir.ui.view,arch_db:quality.quality_alert_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_search msgid "Creation Date" @@ -9732,7 +27537,23 @@ msgstr "创建时间" msgid "Creation Date, usually the time of the order" msgstr "创建日期,通常是订单的时间" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_logging_form_view +msgid "Creation details" +msgstr "创建详情" + +#. module: base +#: model:ir.module.category,name:base.module_category_theme_creative +msgid "Creative" +msgstr "" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__credential +msgid "Credential" +msgstr "凭据" + #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #: code:addons/account/wizard/accrued_orders.py:0 #: model:ir.model.fields,field_description:account.field_account_move_line__credit @@ -9773,6 +27594,7 @@ msgid "Credit Move" msgstr "贷方凭证" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: code:addons/account/models/account_move.py:0 #: model:ir.model.fields.selection,name:account.selection__account_payment__reconciled_invoices_type__credit_note @@ -9783,6 +27605,7 @@ msgid "Credit Note" msgstr "退款通知" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Credit Note Created" @@ -9796,7 +27619,7 @@ msgstr "信用证货币" #. module: account #: model:mail.template,name:account.email_template_edi_credit_note msgid "Credit Note: Sending" -msgstr "退款单发送中" +msgstr "退款:发送中" #. module: account #: model:ir.actions.act_window,name:account.action_move_out_refund_type @@ -9806,6 +27629,11 @@ msgstr "退款单发送中" msgid "Credit Notes" msgstr "退款通知" +#. module: base +#: model:ir.module.module,summary:base.module_pos_mercury +msgid "Credit card support for Point Of Sale" +msgstr "POS信用卡支持" + #. module: account #: model:ir.model.fields,help:account.field_account_move_line__matched_credit_ids msgid "Credit journal items that are matched with this journal item." @@ -9826,7 +27654,44 @@ msgstr "" "信用证_{{ (object.name or '').replace('/','_') }}{{ object.state == 'draft' and" " '_draft' or '' }}" +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "克罗地亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hr_euro +msgid "Croatia - Accounting (EURO)" +msgstr "克罗地亚-会计(欧元)" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hr +msgid "Croatia - Accounting (RRIF 2012)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hr_reports +msgid "Croatia - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__cron_id +msgid "Cron" +msgstr "定时任务" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_cron_trigger_view_form +msgid "Cron Trigger" +msgstr "定时任务触发器" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_cron_trigger_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_cron_trigger_view_tree +msgid "Cron Triggers" +msgstr "定时任务触发器" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Cross-Dock" @@ -9837,6 +27702,11 @@ msgstr "越库" msgid "Crossdock Route" msgstr "越库路线" +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "古巴" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__cumulated_balance msgid "Cumulated Balance" @@ -9848,14 +27718,22 @@ msgid "" "Cumulated balance depending on the domain and the order chosen in the view." msgstr "累积余额取决于域和视图中选择的顺序" -#. module: account +#. module: base +#: model:res.country,name:base.cw +msgid "Curaçao" +msgstr "古拉索" + +#. modules: base, account +#: model:ir.actions.act_window,name:base.action_currency_form #: model:ir.ui.menu,name:account.menu_action_currency_form #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:base.view_currency_search +#: model_terms:ir.ui.view,arch_db:base.view_currency_tree msgid "Currencies" msgstr "币种" -#. modules: stock_account, account, purchase, mrp -#: model:ir.model,name:account.model_res_currency +#. modules: purchase, account, base_import, mail, base, mrp +#: model:ir.model,name:base.model_res_currency #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__company_currency_id #: model:ir.model.fields,field_description:account.field_account_bank_statement__currency_id #: model:ir.model.fields,field_description:account.field_account_chart_template__currency_id @@ -9868,22 +27746,33 @@ msgstr "币种" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__currency_id #: model:ir.model.fields,field_description:account.field_res_config_settings__currency_id #: model:ir.model.fields,field_description:account.field_res_partner__currency_id -#: model:ir.model.fields,field_description:account.field_res_partner_bank__currency_id #: model:ir.model.fields,field_description:account.field_res_users__currency_id +#: model:ir.model.fields,field_description:base.field_res_company__currency_id +#: model:ir.model.fields,field_description:base.field_res_country__currency_id +#: model:ir.model.fields,field_description:base.field_res_currency__name +#: model:ir.model.fields,field_description:base.field_res_currency_rate__currency_id +#: model:ir.model.fields,field_description:base.field_res_partner_bank__currency_id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__currency_id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__currency_id +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__currency_id #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__currency_id #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__currency_id #: model:ir.model.fields,field_description:purchase.field_purchase_order__currency_id #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__currency_id #: model:ir.model.fields,field_description:purchase.field_purchase_report__currency_id -#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id #: model_terms:ir.ui.view,arch_db:account.view_account_payment_search #: model_terms:ir.ui.view,arch_db:account.view_move_line_form #: model_terms:ir.ui.view,arch_db:account.view_move_line_tree +#: model_terms:ir.ui.view,arch_db:base.view_currency_form +#: model_terms:ir.ui.view,arch_db:base.view_currency_search msgid "Currency" msgstr "币种" +#. module: base +#: model:ir.model.fields,help:base.field_res_currency__name +msgid "Currency Code (ISO 4217)" +msgstr "货币代码(ISO 4217)" + #. module: account #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__display_currency_helper msgid "Currency Conversion Helper" @@ -9894,13 +27783,32 @@ msgstr "货币兑换助手" msgid "Currency Exchange Journal" msgstr "货币兑换日记帐" -#. modules: account, purchase +#. modules: purchase, base, account +#: model:ir.model,name:base.model_res_currency_rate #: model:ir.model.fields,field_description:account.field_account_move_line__currency_rate #: model:ir.model.fields,field_description:purchase.field_purchase_order__currency_rate +#: model_terms:ir.ui.view,arch_db:base.view_currency_rate_form msgid "Currency Rate" msgstr "汇率" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_currency_rate_search +#: model_terms:ir.ui.view,arch_db:base.view_currency_rate_tree +msgid "Currency Rates" +msgstr "货币比率" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__currency_subunit_label +msgid "Currency Subunit" +msgstr "货币子单位" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__currency_unit_label +msgid "Currency Unit" +msgstr "货币单位" + #. modules: purchase_stock, account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #: code:addons/account/models/account_move_line.py:0 #: code:addons/purchase_stock/models/stock_move.py:0 @@ -9910,15 +27818,7 @@ msgid "Currency exchange rate difference" msgstr "货币汇率差异" #. module: account -#: code:addons/account/models/account_move_line.py:0 -#: code:addons/account/models/account_move_line.py:0 -#: code:addons/account/models/account_move_line.py:0 -#: code:addons/account/models/account_move_line.py:0 -#, python-format -msgid "Currency exchange rate difference (cash basis)" -msgstr "货币汇率差额(收付实现制)" - -#. module: account +#. odoo-python #: code:addons/account/models/res_partner_bank.py:0 #, python-format msgid "Currency must always be provided in order to generate a QR-code" @@ -9939,6 +27839,19 @@ msgstr "借方会计分录的货币。" msgid "Currency rate from company currency to document currency." msgstr "从公司货币到凭证货币的汇率。" +#. module: base +#: model:ir.model.fields,help:base.field_res_currency__symbol +msgid "Currency sign, to be used when printing amounts." +msgstr "货币符号,打印金额时使用." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Current Arch" +msgstr "当前视图类型" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__asset_current #: model:ir.model.fields.selection,name:account.selection__account_account_template__account_type__asset_current @@ -9961,6 +27874,11 @@ msgstr "当前检查" msgid "Current Liabilities" msgstr "流动负债" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__current_line_id +msgid "Current Line" +msgstr "当前行" + #. module: maintenance #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__maintenance_open_count msgid "Current Maintenance" @@ -9971,10 +27889,10 @@ msgstr "当前维护" msgid "Current Quality Check" msgstr "当前的质量检查" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl -msgid "Current Quantity" -msgstr "当前数量" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__rate +msgid "Current Rate" +msgstr "当前比率" #. module: stock #: model:ir.actions.act_window,name:stock.location_open_quants @@ -9982,11 +27900,11 @@ msgstr "当前数量" msgid "Current Stock" msgstr "当前库存" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view -msgid "Current Value" -msgstr "当前值" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__current +#: model:ir.model.fields.selection,name:base.selection__ir_actions_client__target__current +msgid "Current Window" +msgstr "当前窗口" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__equity_unaffected @@ -10009,6 +27927,12 @@ msgstr "" "对单一库存来说,包括了此仓位置置或其任何子位置所存储的产品。 \n" "另外,这包括了所有'内部'类型的任何库存位置所存储的产品。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__starred +#: model:ir.model.fields,help:mail.field_mail_message__starred +msgid "Current user has a starred notification linked to this message" +msgstr "当前用户有一个打星号的提醒与此消息连接" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__qty_producing msgid "Currently Produced Quantity" @@ -10024,10 +27948,14 @@ msgstr "Cust. 付款" msgid "Cust. Payments" msgstr "Cust. 付款" -#. modules: mrp_workorder, stock +#. modules: stock, base, mrp_workorder +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__custom +#: model:ir.model.fields.selection,name:base.selection__res_company__layout_background__custom #: model:ir.model.fields.selection,name:mrp_workorder.selection__quality_point__source_document__step #: model:ir.model.fields.selection,name:stock.selection__product_label_layout__picking_quantity__custom #: model:ir.model.fields.selection,name:stock.selection__stock_orderpoint_snooze__predefined_date__custom +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_model_search msgid "Custom" msgstr "自定义" @@ -10036,24 +27964,72 @@ msgstr "自定义" msgid "Custom Audit Action" msgstr "自定义审核操作" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_bounced_content #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_bounced_content #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_bounced_content msgid "Custom Bounced Message" msgstr "自定义退回消息" -#. modules: purchase_stock, mrp +#. modules: mrp, purchase_stock #: model:ir.model.fields,field_description:mrp.field_mrp_production__product_description_variants #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order_line__product_description_variants msgid "Custom Description" msgstr "自定义说明" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_model_fields__state__manual +msgid "Custom Field" +msgstr "自定字段" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_model__state__manual +msgid "Custom Object" +msgstr "自定对像" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_expression__engine__custom msgid "Custom Python Function" msgstr "自定义 Python 函数" -#. modules: account, stock +#. module: base +#: model:ir.ui.menu,name:base.menu_administration_shortcut +msgid "Custom Shortcuts" +msgstr "自定快捷方式" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_template__template_category__custom_template +msgid "Custom Template" +msgstr "自定义模板" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_template_search +msgid "Custom Templates" +msgstr "自定义模板" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_test_custo +msgid "Custom Theme (Testing suite)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "Custom View" +msgstr "自定视图" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__custom_channel_name +msgid "Custom channel name" +msgstr "自定义频道名称" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "自定的字段名称必须以「x_」开始!" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__account_payment__partner_type__customer #: model:ir.model.fields.selection,name:account.selection__account_payment_register__partner_type__customer #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form @@ -10088,6 +28064,8 @@ msgid "Customer Invoice" msgstr "客户结算单" #. module: account +#. odoo-python +#: code:addons/account/models/account_analytic_account.py:0 #: code:addons/account/models/chart_template.py:0 #: model:ir.model.fields.selection,name:account.selection__res_company__quick_edit_mode__out_invoices #: model_terms:ir.ui.view,arch_db:account.account_analytic_account_view_form_inherit @@ -10120,11 +28098,17 @@ msgstr "客户位置" msgid "Customer Locations" msgstr "客户位置" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__name_position +msgid "Customer Name Position" +msgstr "客户姓名位置" + #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "Customer Payment" -msgstr "客户付款" +msgstr "客户支付" #. module: account #: model:ir.model.fields,field_description:account.field_res_partner__property_payment_term_id @@ -10138,7 +28122,13 @@ msgstr "客户付款条件" msgid "Customer Payments" msgstr "客户付款" -#. modules: account, purchase +#. module: base +#: model:ir.module.module,shortdesc:base.module_portal +#: model:ir.module.module,summary:base.module_portal +msgid "Customer Portal" +msgstr "客户门户" + +#. modules: purchase, account #: model:ir.model.fields,help:account.field_account_bank_statement_line__access_url #: model:ir.model.fields,help:account.field_account_move__access_url #: model:ir.model.fields,help:account.field_account_payment__access_url @@ -10152,12 +28142,23 @@ msgstr "客户门户网址" msgid "Customer Rank" msgstr "客户等级" +#. module: base +#: model:ir.module.module,shortdesc:base.module_rating +msgid "Customer Rating" +msgstr "客户点评" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Customer Reference" msgstr "客户订单号" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_customer +msgid "Customer References" +msgstr "客户引用" + #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "Customer Reimbursement" @@ -10169,6 +28170,11 @@ msgstr "客户报销" msgid "Customer Taxes" msgstr "销项税" +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_notification_notification_partner_required +msgid "Customer is required for inbox / email notification" +msgstr "客户需要收件箱/电子邮件通知" + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment__partner_id #: model:ir.model.fields,field_description:account.field_account_payment_register__partner_id @@ -10181,51 +28187,99 @@ msgstr "客户/供应商" msgid "Customer:" msgstr "客户:" -#. module: account +#. modules: base, account #: model:ir.actions.act_window,name:account.res_partner_action_customer +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.actions.act_window,name:base.action_partner_form #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_report_search msgid "Customers" msgstr "客户" +#. module: base +#: model:ir.module.category,name:base.module_category_customizations +msgid "Customizations" +msgstr "定制化" + #. module: account #: model_terms:ir.ui.view,arch_db:account.onboarding_invoice_layout_step msgid "Customize" msgstr "定制" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Customize the look and feel of automated emails" +msgstr "定制自动化电子邮件的外观和感觉" + #. module: account #: model_terms:ir.ui.view,arch_db:account.onboarding_invoice_layout_step msgid "Customize the look of your invoices." msgstr "自定义结算单外观" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Customize your layout." -msgstr "" +msgstr "自定义布局。" + +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view_custom +#: model:ir.ui.menu,name:base.menu_action_ui_view_custom +#: model_terms:ir.ui.view,arch_db:base.view_view_custom_form +#: model_terms:ir.ui.view,arch_db:base.view_view_custom_search +#: model_terms:ir.ui.view,arch_db:base.view_view_custom_tree +msgid "Customized Views" +msgstr "自定的视图" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_ui_view_custom +msgid "" +"Customized views are used when users reorganize the content of their " +"dashboard views (via web client)" +msgstr "如果用户重新组织过他的控制面板视图,则使用其自定的视图." #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Cut-Off" msgstr "" +#. modules: sf_manufacturing, sf_tool_management +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_direction_ids +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_direction_ids +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__cutting_direction_ids +msgid "Cutting Direction" +msgstr "" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_location_form msgid "Cyclic Counting" msgstr "循环计数" -#. module: sf_base -#: model:ir.model.fields,field_description:sf_base.field_sf_cutting_tool_model__bar_c_diameter -#: model:ir.model.fields,field_description:sf_base.field_sf_cutting_tool_model__pad_c_diameter -msgid "C柄径(mm)" +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "塞浦路斯" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cz +msgid "Czech - Accounting" msgstr "" -#. module: sf_manufacturing -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_tool_c_diameter -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_tool_c_diameter -msgid "C柄径[mm]" +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "捷克共和国" + +#. module: base +#: model:res.country,name:base.ci +msgid "Côte d'Ivoire" +msgstr "科特迪瓦" + +#. module: sf_tool_management +#: model_terms:ir.ui.view,arch_db:sf_tool_management.view_sf_tool_material_search_form +msgid "C柄径(mm)" msgstr "" #. module: sf_base @@ -10234,11 +28288,10 @@ msgstr "" msgid "C轴" msgstr "" -#. module: sf_manufacturing -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_tool_diameter1 -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_tool_diameter1 -msgid "D1[mm]" -msgstr "" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_D +msgid "D - ELECTRICITY, GAS, STEAM AND AIR CONDITIONING SUPPLY" +msgstr "D - 电力、燃气、蒸汽和空调供应" #. module: account #: model:account.incoterms,name:account.incoterm_DAP @@ -10260,42 +28313,174 @@ msgstr "" msgid "DHL Express Connector" msgstr "DHL 快递连接器" +#. module: base +#: model:ir.module.module,shortdesc:base.module_delivery_dhl +msgid "DHL Express Shipping" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_din5008 +msgid "DIN 5008" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_din5008_purchase +msgid "DIN 5008 - Purchase" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_din5008_repair +msgid "DIN 5008 - Repair" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_din5008_sale +msgid "DIN 5008 - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_din5008_stock +msgid "DIN 5008 - Stock" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__dle +msgid "DLE 26 110 x 220 mm" +msgstr "DLE 26 110 x 220 毫米" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "DNA" +msgstr "" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_cash_rounding__rounding_method__down msgid "DOWN" msgstr "向下" -#. module: mrp_workorder -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_1 -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_1_radio -msgid "Dark Blue" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "DVD" msgstr "" +#. module: base +#: model:ir.module.module,summary:base.module_pos_daily_sales_reports +msgid "Daily X and Z sales reports of a Point of Sale session" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Dash" +msgstr "破折号" + #. modules: maintenance, account #: model:ir.ui.menu,name:account.menu_board_journal_1 #: model:ir.ui.menu,name:maintenance.menu_m_dashboard msgid "Dashboard" msgstr "驾驶舱" +#. module: base +#: model:ir.module.module,shortdesc:base.module_board +#: model:ir.ui.menu,name:base.menu_board_root +#: model:ir.ui.menu,name:base.menu_reporting_dashboard +msgid "Dashboards" +msgstr "仪表板" + +#. module: base +#: model:ir.module.category,name:base.module_category_productivity_data_cleaning +#: model:ir.module.module,shortdesc:base.module_data_cleaning +msgid "Data Cleaning" +msgstr "数据清除" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_data_merge +msgid "Data Cleaning (merge)" +msgstr "" + #. module: account #: model:ir.actions.server,name:account.action_check_hash_integrity msgid "Data Inalterability Check" msgstr "数据不变形检查" +#. module: base +#: model:ir.module.module,shortdesc:base.module_data_recycle +msgid "Data Recycle" +msgstr "数据回收" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity msgid "Data consistency check" msgstr "数据一致性检查" -#. module: mrp +#. module: base +#: model:ir.module.module,description:base.module_test_convert +msgid "Data for xml conversion tests" +msgstr "测试xml数据转换" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "Data to Write" +msgstr "写入数据" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_logging_search_view +msgid "Database" +msgstr "数据库" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__db_datas #: model:ir.model.fields,field_description:mrp.field_mrp_document__db_datas msgid "Database Data" msgstr "数据库数据" -#. modules: mrp_workorder, purchase, mrp, stock, stock_account, account -#. openerp-web +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Database ID" +msgstr "数据库 ID" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__res_id +msgid "" +"Database ID of record to open in form view, when ``view_mode`` is set to " +"'form' only" +msgstr "当「视图模式」是「表单」,此数据库 ID的记录将会以视图模式打开" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_logging__dbname +msgid "Database Name" +msgstr "数据库名称" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "数据库结构" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"Database fetch misses ids (%(missing)s) and has extra ids (%(extra)s), may " +"be caused by a type incoherence in a previous request" +msgstr "数据库读入不到 ids(%(missing)s),且有extra ids(%(extra)s),可能是因为上个请求的类型不一致所造成的" + +#. modules: purchase, account, mail, base, stock, mrp, mrp_workorder +#. odoo-python +#. odoo-javascript #: code:addons/account/controllers/portal.py:0 #: code:addons/account/static/src/components/account_resequence/account_resequence.xml:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:account.field_account_accrued_orders_wizard__date #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__date #: model:ir.model.fields,field_description:account.field_account_bank_statement__date @@ -10304,25 +28489,32 @@ msgstr "数据库数据" #: model:ir.model.fields,field_description:account.field_account_move_line__date #: model:ir.model.fields,field_description:account.field_account_payment__date #: model:ir.model.fields,field_description:account.field_account_report_external_value__date +#: model:ir.model.fields,field_description:base.field_res_currency__date +#: model:ir.model.fields,field_description:base.field_res_currency_rate__name +#: model:ir.model.fields,field_description:base.field_res_partner__date +#: model:ir.model.fields,field_description:base.field_res_users__date +#: model:ir.model.fields,field_description:mail.field_mail_mail__date +#: model:ir.model.fields,field_description:mail.field_mail_message__date #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__date #: model:ir.model.fields,field_description:stock.field_report_stock_quantity__date #: model:ir.model.fields,field_description:stock.field_stock_move_line__date #: model:ir.model.fields,field_description:stock.field_stock_scrap__date_done #: model:ir.model.fields.selection,name:account.selection__account_report_column__figure_type__date #: model:ir.model.fields.selection,name:account.selection__account_report_expression__figure_type__date +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__date #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_report_search #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter #: model_terms:ir.ui.view,arch_db:account.view_bank_statement_search #: model_terms:ir.ui.view,arch_db:account.view_move_form +#: model_terms:ir.ui.view,arch_db:base.view_currency_rate_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search #: model_terms:ir.ui.view,arch_db:mrp.oee_search_view #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_workorder_view_form_inherit_workorder #: model_terms:ir.ui.view,arch_db:stock.report_stock_body_print #: model_terms:ir.ui.view,arch_db:stock.report_stock_inventory #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_search -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree #, python-format msgid "Date" msgstr "日期" @@ -10354,6 +28546,18 @@ msgstr "开始日历日期" msgid "Date Closed" msgstr "关闭日期" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_lang__date_format +msgid "Date Format" +msgstr "日期格式" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Date Format:" +msgstr "数据格式:" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_reversal__date_mode msgid "Date Mode" @@ -10387,18 +28591,12 @@ msgid "Date Scope" msgstr "日期范围" #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "Date Updated" -msgstr "更新日期" - -#. module: stock_account -#: model:ir.model.fields,help:stock_account.field_stock_quant__accounting_date -msgid "" -"Date at which the accounting entries will be created in case of automated " -"inventory valuation. If empty, the inventory date will be used." -msgstr "在自动库存评估的情况下创建会计凭证的日期。 如果为空,将使用库存日期。" +msgstr "日期已更新" #. module: maintenance #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__effective_date @@ -10438,6 +28636,14 @@ msgstr "日期示例" msgid "Date for next planned inventory based on cyclic schedule." msgstr "基于周期性时间表的下一次计划库存日期。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Date format" +msgstr "日期格式" + #. module: account #: model:ir.model.fields,help:account.field_account_financial_year_op__opening_date msgid "" @@ -10482,8 +28688,52 @@ msgstr "维护完成日期。" msgid "Date to Reserve" msgstr "预约日期" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Date to compare with the field value, by default use the current date." +msgstr "与字段值进行比较的日期,默认情况下使用当前日期." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Date unit" +msgstr "日期单位" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Date unit used for comparison and formatting" +msgstr "日期单位用于比较和格式化" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "" +"Date unit used for the rounding. The value must be smaller than 'hour' if " +"you use the digital formatting." +msgstr "用于四舍五入的日期单位. 如果您使用数字格式,该值必须小于\"小时\"." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "" +"Date used for the original currency (only used for t-esc). by default use " +"the current date." +msgstr "用于原始货币的日期(仅用于t-esc). 默认情况下使用当前日期." + #. modules: purchase, account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content @@ -10491,6 +28741,11 @@ msgstr "预约日期" msgid "Date:" msgstr "日期:" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__datetime +msgid "DateTime" +msgstr "日期时间" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_line_form msgid "Dates" @@ -10502,6 +28757,25 @@ msgstr "日期" msgid "Datetime" msgstr "日期时间" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Datetime Format:" +msgstr "日期时间格式:" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_schedule__scheduled_datetime +msgid "Datetime at which notification should be sent." +msgstr "应该发送通知的日期" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "David" +msgstr "" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Day and month that annual inventory counts should occur." @@ -10523,12 +28797,14 @@ msgstr "" "年度盘点应该发生在哪个月的哪一天。如果是零或负数,那么将选择该月的第一天来代替。\n" " 如果大于一个月的最后一天,那么将选择该月的最后一天来代替。" -#. modules: purchase, mrp, stock, quality_control, account -#. openerp-web +#. modules: purchase, quality_control, account, mail, base, stock, mrp +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_line/mrp_bom_overview_line.xml:0 #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #: model:ir.model.fields,field_description:account.field_account_payment_term_line__days #: model:ir.model.fields,field_description:stock.field_stock_picking_type__reservation_days_before +#: model:ir.model.fields.selection,name:base.selection__ir_cron__interval_type__days +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__activity_date_deadline_range_type__days #: model:ir.model.fields.selection,name:quality_control.selection__quality_point__measure_frequency_unit__day #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom_pdf_line @@ -10561,7 +28837,7 @@ msgstr "预防维护间隔天数" #. module: purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.res_config_settings_view_form_stock msgid "Days needed to confirm a PO" -msgstr "" +msgstr "确认采购订单所需的天数" #. module: purchase_stock #: model:ir.model.fields,help:purchase_stock.field_res_company__days_to_purchase @@ -10575,6 +28851,7 @@ msgid "Days to Confirm" msgstr "确认天数" #. module: purchase_stock +#. odoo-python #: code:addons/purchase_stock/models/stock_rule.py:0 #: model:ir.model.fields,field_description:purchase_stock.field_res_company__days_to_purchase #: model:ir.model.fields,field_description:purchase_stock.field_res_config_settings__days_to_purchase @@ -10588,10 +28865,11 @@ msgid "Days to Receive" msgstr "接收天数" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_rule.py:0 #, python-format msgid "Days to Supply Components" -msgstr "供应组件天数" +msgstr "供应组件的天数" #. module: account #: model:ir.model.fields,help:account.field_account_payment_term_line__days_after @@ -10609,10 +28887,25 @@ msgstr "生产订单准备天数" msgid "Days when starred" msgstr "担任主演的日子" -#. modules: stock, mrp +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#, python-format +msgid "Deactivate Full Screen" +msgstr "停用全屏幕" + +#. modules: stock, mrp, mail +#. odoo-javascript +#: code:addons/mail/static/src/backend_components/activity_list_view_item/activity_list_view_item.xml:0 +#: code:addons/mail/static/src/backend_components/activity_list_view_item/activity_list_view_item.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 #: model:ir.model.fields,field_description:mrp.field_mrp_production__date_deadline #: model:ir.model.fields,field_description:stock.field_stock_move__date_deadline #: model:ir.model.fields,field_description:stock.field_stock_picking__date_deadline +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +#, python-format msgid "Deadline" msgstr "计划结束时间" @@ -10622,12 +28915,44 @@ msgid "Deadline exceed or/and by the scheduled" msgstr "超过或/和按计划的截止日期" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "Deadline updated due to delay on %s" msgstr "截止日期%s因延迟而更新" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_activity_assigned +msgid "Deadline:" +msgstr "截止日期:" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_activity.py:0 +#, python-format +msgid "Deadline: %s" +msgstr "截止日期:%s" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_action_list_view.js:0 +#, python-format +msgid "Deafen" +msgstr "关闭扬声器" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_activity_assigned +#: model_terms:ir.ui.view,arch_db:mail.message_user_assigned +msgid "Dear" +msgstr "尊敬的" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_notification_limit_email +msgid "Dear Sender," +msgstr "亲爱的发件人," + #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #: code:addons/account/wizard/accrued_orders.py:0 #: model:ir.model.fields,field_description:account.field_account_move_line__debit @@ -10645,23 +28970,81 @@ msgstr "借方金额货币" msgid "Debit Move" msgstr "借方凭证" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_debit_note +#: model:ir.module.module,summary:base.module_account_debit_note +msgid "Debit Notes" +msgstr "借记单" + #. module: account #: model:ir.model.fields,help:account.field_account_move_line__matched_debit_ids msgid "Debit journal items that are matched with this journal item." msgstr "和这个会计分录匹配的借方会计分录" -#. modules: account, stock +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__smtp_debug +msgid "Debugging" +msgstr "调试" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__12 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__12 msgid "December" msgstr "十二月" -#. module: account +#. module: base +#: model:ir.actions.act_window,name:base.action_decimal_precision_form +#: model:ir.ui.menu,name:base.menu_decimal_precision_form +msgid "Decimal Accuracy" +msgstr "小数准确性" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__decimal_places +msgid "Decimal Places" +msgstr "小数点位置" + +#. module: base +#: model:ir.model,name:base.model_decimal_precision +#: model_terms:ir.ui.view,arch_db:base.view_decimal_precision_form +#: model_terms:ir.ui.view,arch_db:base.view_decimal_precision_tree +msgid "Decimal Precision" +msgstr "小数精度" + +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_reconcile_model__decimal_separator #: model:ir.model.fields,field_description:account.field_account_reconcile_model_template__decimal_separator +#: model:ir.model.fields,field_description:base.field_res_lang__decimal_point msgid "Decimal Separator" msgstr "小数分割符" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Decimal Separator:" +msgstr "十进制分隔符:" + +#. module: base +#: model:ir.model.fields,help:base.field_res_currency__decimal_places +msgid "" +"Decimal places taken into account for operations on amounts in this " +"currency. It is determined by the rounding factor." +msgstr "计算此货币金额的操作时考虑的小数位. 它由舍入系数决定." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Decimalized number" +msgstr "小数" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__activity_decoration +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__decoration_type +msgid "Decoration Type" +msgstr "排版类型" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__refund_sequence msgid "Dedicated Credit Note Sequence" @@ -10672,8 +29055,24 @@ msgstr "专用的退款通知序列" msgid "Dedicated Payment Sequence" msgstr "专用支付顺序" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_deduplicate +msgid "Deduplicate Contacts" +msgstr "删除重复联系人" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Deduplicate the other Contacts" +msgstr "删除重复其它联系人" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__default +msgid "Default" +msgstr "默认" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__default_account_id +#: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Default Account" msgstr "默认帐号" @@ -10687,6 +29086,11 @@ msgstr "默认帐户类型" msgid "Default Accounts" msgstr "默认科目" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Default Company" +msgstr "默认公司" + #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__account_default_credit_limit msgid "Default Credit Limit" @@ -10697,6 +29101,11 @@ msgstr "默认信用额度" msgid "Default Destination Location" msgstr "默认目的位置" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__default_display_mode +msgid "Default Display Mode" +msgstr "默认显示模式" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_routing_workcenter_form_view msgid "Default Duration" @@ -10707,6 +29116,11 @@ msgstr "默认时长" msgid "Default Expense Account" msgstr "默认费用科目" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_filters__is_default +msgid "Default Filter" +msgstr "默认筛选" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Default Income Account" @@ -10722,6 +29136,11 @@ msgstr "贵司的默认的国际贸易术语" msgid "Default Manufacturing Lead Time" msgstr "默认制造提前期" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__default_note +msgid "Default Note" +msgstr "默认备注" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report__default_opening_date_filter msgid "Default Opening" @@ -10754,6 +29173,11 @@ msgstr "默认销售模板" msgid "Default Source Location" msgstr "默认源位置" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__summary +msgid "Default Summary" +msgstr "默认摘要" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__tax_ids #: model:ir.model.fields,field_description:account.field_account_account_template__tax_ids @@ -10780,7 +29204,24 @@ msgstr "默认期限和条件" msgid "Default Terms and Conditions as a Web page" msgstr "作为网页的默认期限和条件" -#. modules: quality, maintenance +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_default +msgid "Default Theme" +msgstr "默认主题" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__default_user_id +msgid "Default User" +msgstr "默认用户" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_default__json_value +msgid "Default Value (JSON format)" +msgstr "默认值 (JSON格式)" + +#. modules: mail, maintenance, base, quality +#: model:ir.model,name:base.model_ir_default +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_defaults #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_defaults #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_defaults msgid "Default Values" @@ -10797,6 +29238,11 @@ msgstr "默认入向路线" msgid "Default incoterm" msgstr "默认国际贸易术语" +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__limit +msgid "Default limit for the list view" +msgstr "列表视图的默认限制" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_workcenter__default_capacity msgid "" @@ -10814,6 +29260,27 @@ msgstr "" msgid "Default outgoing route to follow" msgstr "默认出向路线" +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__default +msgid "Default paper format ?" +msgstr "默认纸张格式?" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template__use_default_to +msgid "Default recipients" +msgstr "默认收件人" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__use_default_to +msgid "" +"Default recipients of the record:\n" +"- partner (using id on a partner or the partner_id field) OR\n" +"- email (using email_from or email field)" +msgstr "" +"记录的默认收件人: \n" +"- 合作伙伴(使用合作伙伴的Id或partner_id字段)或\n" +"- EMail(使用发件人或email字段)" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Default taxes applied to local transactions" @@ -10831,7 +29298,7 @@ msgstr "购买产品时使用的默认税。" msgid "Default taxes used when selling the product." msgstr "销售产品时使用的默认税。" -#. modules: quality_control, stock, stock_account, mrp +#. modules: stock, quality_control, mrp #: model:ir.model.fields,help:mrp.field_mrp_consumption_warning_line__product_uom_id #: model:ir.model.fields,help:mrp.field_mrp_workcenter_capacity__product_uom_id #: model:ir.model.fields,help:quality_control.field_quality_check__uom_id @@ -10841,10 +29308,14 @@ msgstr "销售产品时使用的默认税。" #: model:ir.model.fields,help:stock.field_stock_return_picking_line__uom_id #: model:ir.model.fields,help:stock.field_stock_storage_category_capacity__product_uom_id #: model:ir.model.fields,help:stock.field_stock_warehouse_orderpoint__product_uom -#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id msgid "Default unit of measure used for all stock operations." msgstr "所有库存作业的默认单位。" +#. module: base +#: model:ir.module.module,description:base.module_theme_default +msgid "Default website theme" +msgstr "默认网站主题" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_move__procure_method__make_to_stock msgid "Default: Take From Stock" @@ -10865,6 +29336,11 @@ msgstr "" "定义质量控制点,以便自动生成\n" " 在正确的物流操作中产生质量检查:转移、制造订单。" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_tax_python +msgid "Define Taxes as Python Code" +msgstr "用python代码定义税" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_orderpoint msgid "" @@ -10872,11 +29348,25 @@ msgid "" "quotations or confirmed manufacturing orders to resupply your stock." msgstr "设置一个最小库存规则,odoo会依据规则自动创建报价单或确认生产单,以满足最小库存量。" +#. module: mail +#: model_terms:ir.actions.act_window,help:mail.mail_shortcode_action +msgid "Define a new chat shortcode" +msgstr "定义新的聊天简码" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_warehouse_form msgid "Define a new warehouse" msgstr "定义新仓库" +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__from_filter +msgid "" +"Define for which email address or domain this server can be used.\n" +"e.g.: \"notification@odoo.com\" or \"odoo.com\"" +msgstr "" +"定义此服务器可用于哪个电子邮件地址或 domain.\n" +"例如: \"notification@odoo.com\"或\"odoo.com\"" + #. module: account #: model:ir.model.fields,help:account.field_account_account__allowed_journal_ids msgid "" @@ -10925,6 +29415,11 @@ msgstr "" msgid "Define your terms and conditions ..." msgstr "定义您的期限和条件…" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Defined Reports" +msgstr "定义的报告" + #. module: account #: model:ir.model.fields,help:account.field_account_journal__bank_statements_source msgid "Defines how the bank statements will be registered" @@ -10962,6 +29457,16 @@ msgstr "" "壁橱位置:最接近目标位置的产品/批次将被首先移出。\n" "FEFO:最接近移出日期的产品/批次将被首先移出(这种方法的可用性取决于 \"到期日 \"的设置)。" +#. module: base +#: model:ir.module.module,summary:base.module_web_map +msgid "Defines the map view for odoo enterprise" +msgstr "定义 odoo 企业板的地图视图" + +#. module: mail +#: model:ir.model.fields,help:mail.field_fetchmail_server__priority +msgid "Defines the order of processing, lower values mean higher priority" +msgstr "定义处理的顺序,值越小意味着优先级越高。" + #. module: quality_control #: model:ir.model.fields,help:quality_control.field_quality_check__testing_percentage_within_lot #: model:ir.model.fields,help:quality_control.field_quality_check_wizard__testing_percentage_within_lot @@ -10983,7 +29488,8 @@ msgstr "定义使用现金支付的最小货币单位。" msgid "Defines the type of the quality control point." msgstr "定义质量管理点类型" -#. module: account +#. modules: base, account +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__definition #: model_terms:ir.ui.view,arch_db:account.view_account_tax_template_form #: model_terms:ir.ui.view,arch_db:account.view_tax_form msgid "Definition" @@ -11002,31 +29508,82 @@ msgstr "对此债务人的信任度" msgid "Delay Alert Date" msgstr "延迟警报日期" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__delay_label +msgid "Delay Label" +msgstr "延迟标签" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__delay_from +msgid "Delay Type" +msgstr "延迟类型" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Delay after releasing push-to-talk" +msgstr "释放一键通话后延迟" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "Delay on %s" msgstr "延迟 %s" -#. modules: maintenance, mrp +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__delay_unit +msgid "Delay units" +msgstr "延迟单位" + +#. modules: mail, maintenance, mrp, stock_barcode +#. odoo-javascript +#: code:addons/mail/static/src/components/delete_message_confirm/delete_message_confirm.xml:0 +#: code:addons/mail/static/src/models/message_action_view.js:0 +#: code:addons/mail/static/src/views/fields/many2many_tags_email/many2many_tags_email.xml:0 +#: code:addons/mail/static/src/views/fields/many2many_tags_email/many2many_tags_email.xml:0 +#: model_terms:ir.ui.view,arch_db:mail.view_document_file_kanban #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_kanban #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_kanban #: model_terms:ir.ui.view,arch_db:mrp.view_document_file_kanban_mrp +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +#, python-format msgid "Delete" msgstr "删除" -#. module: account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_apikeys +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "Delete API key." +msgstr "删除API 密钥" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_access__perm_unlink +msgid "Delete Access" +msgstr "删除访问" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +msgid "Delete Access Right" +msgstr "删除访问权限" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__auto_delete +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__auto_delete msgid "Delete Emails" msgstr "删除邮件" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__auto_delete_message +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__auto_delete_message msgid "Delete Message Copy" msgstr "删除消息副本" #. module: mrp_workorder -#. openerp-web +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #: code:addons/mrp_workorder/static/src/components/menuPopup.xml:0 #, python-format @@ -11049,53 +29606,70 @@ msgid "Deliver goods directly (1 step)" msgstr "直接出货(1步)" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Deliver in 1 step (ship)" msgstr "1步出货(发货)" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Deliver in 2 steps (pick + ship)" msgstr "2步出货(拣货+发货)" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Deliver in 3 steps (pick + pack + ship)" msgstr "3步出货(拣货+包装+发货)" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Delivered Qty" msgstr "已交货数量" -#. module: stock -#. openerp-web +#. modules: stock, base +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__code__outgoing +#: model:ir.module.category,name:base.module_category_inventory_delivery #: model:ir.ui.menu,name:stock.menu_delivery #, python-format msgid "Delivery" msgstr "交货" -#. modules: account, stock +#. modules: stock, base, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__partner_shipping_id #: model:ir.model.fields,field_description:account.field_account_move__partner_shipping_id #: model:ir.model.fields,field_description:account.field_account_payment__partner_shipping_id +#: model:ir.model.fields.selection,name:base.selection__res_partner__type__delivery #: model:res.groups,name:account.group_delivery_invoice_address #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "Delivery Address" msgstr "送货地址" +#. module: base +#: model:ir.module.module,shortdesc:base.module_delivery +msgid "Delivery Costs" +msgstr "交货成本" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__state__exception +msgid "Delivery Failed" +msgstr "投递失败" + #. module: stock #: model:ir.model.fields,field_description:stock.field_res_config_settings__module_delivery msgid "Delivery Methods" msgstr "交货方式" #. modules: stock, mrp +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #: model:ir.model.fields,field_description:mrp.field_mrp_production__delivery_count #: model:stock.picking.type,name:stock.chi_picking_type_out @@ -11114,6 +29688,11 @@ msgstr "交货路线" msgid "Delivery Slip" msgstr "交货条" +#. module: base +#: model:ir.module.module,shortdesc:base.module_delivery_stock_picking_batch +msgid "Delivery Stock Picking Batch" +msgstr "发货库存拣货批量" + #. module: stock #: model:ir.model.fields,field_description:stock.field_procurement_group__move_type msgid "Delivery Type" @@ -11140,6 +29719,13 @@ msgid "" "arrival of products." msgstr "供应商承诺的交货日期。 该日期用于确定产品的预计到货时间。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message/message.xml:0 +#, python-format +msgid "Delivery failure" +msgstr "传递失败" + #. module: stock #: model:ir.model.fields,help:stock.field_product_product__sale_delay #: model:ir.model.fields,help:stock.field_product_template__sale_delay @@ -11154,6 +29740,7 @@ msgid "Delivery order count" msgstr "交货单数" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_lot.py:0 #, python-format msgid "Delivery orders of %s" @@ -11166,6 +29753,88 @@ msgstr "交货单为%s。" msgid "Demand" msgstr "需求" +#. module: base +#: model:ir.model,name:base.model_ir_demo +msgid "Demo" +msgstr "样例" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__demo +msgid "Demo Data" +msgstr "演示数据" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_res_config_settings__stock_barcode_demo_active +msgid "Demo Data Active" +msgstr "演示数据启用" + +#. module: base +#: model:ir.model,name:base.model_ir_demo_failure_wizard +msgid "Demo Failure wizard" +msgstr "演示失败向导" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__failure_ids +msgid "Demo Installation Failures" +msgstr "演示安装失败" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.demo_force_install_form +msgid "" +"Demo data should only be used on test databases!\n" +" Once they are loaded, they cannot be removed!" +msgstr "" +"展示用数据只能用于测试数据库!\n" +" 一旦装入,就不能删除!" + +#. module: base +#: model:ir.model,name:base.model_ir_demo_failure +msgid "Demo failure" +msgstr "样例失败" + +#. module: base +#: model:res.country,name:base.cd +msgid "Democratic Republic of the Congo" +msgstr "刚果民主共和国" + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "丹麦" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_dk +msgid "Denmark - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_dk_reports +msgid "Denmark - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__depends +#: model:ir.model.fields,field_description:base.field_ir_module_module__dependencies_id +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Dependencies" +msgstr "依赖" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__depends +msgid "" +"Dependencies of compute method; a list of comma-separated field names, like\n" +"\n" +" name, partner_id.name" +msgstr "" +"计算方法的相关性;一列以逗号分隔的字段名称,例如\n" +"\n" +" name, partner_id.name" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency__depend_id +msgid "Dependency" +msgstr "依赖" + #. module: stock #: model:ir.model.fields,help:stock.field_product_packaging__route_ids msgid "" @@ -11222,8 +29891,18 @@ msgstr "描述要做的质量检查..." msgid "Describe why you need to perform this quality check..." msgstr "描述为什么你需要执行此质量检查..." -#. modules: maintenance, purchase, mrp, sale_management, stock, stock_account, -#. quality, quality_control, account +#. modules: purchase, quality_control, mrp, sale_management, account, quality, +#. mail, base, stock, maintenance +#: model:ir.model.fields,field_description:base.field_ir_attachment__description +#: model:ir.model.fields,field_description:base.field_ir_module_category__description +#: model:ir.model.fields,field_description:base.field_ir_module_module__description +#: model:ir.model.fields,field_description:base.field_ir_profile__name +#: model:ir.model.fields,field_description:base.field_res_users_apikeys__name +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__name +#: model:ir.model.fields,field_description:mail.field_mail_channel__description +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__og_description +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__description +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__description #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__description #: model:ir.model.fields,field_description:mrp.field_mrp_document__description #: model:ir.model.fields,field_description:mrp.field_mrp_routing_workcenter__note @@ -11237,8 +29916,9 @@ msgstr "描述为什么你需要执行此质量检查..." #: model:ir.model.fields,field_description:sale_management.field_sale_order_template_option__name #: model:ir.model.fields,field_description:stock.field_stock_lot__note #: model:ir.model.fields,field_description:stock.field_stock_move__name -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description #: model_terms:ir.ui.view,arch_db:account.view_move_form +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_message_subtype_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_view_form @@ -11249,17 +29929,25 @@ msgstr "描述为什么你需要执行此质量检查..." msgid "Description" msgstr "说明" -#. module: stock +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__description_html +msgid "Description HTML" +msgstr "说明HTML" + +#. modules: stock, sf_dlm +#: model_terms:ir.ui.view,arch_db:sf_dlm.view_template_property_form #: model_terms:ir.ui.view,arch_db:stock.view_template_property_form msgid "Description for Delivery Orders" msgstr "出库单的说明" -#. module: stock +#. modules: stock, sf_dlm +#: model_terms:ir.ui.view,arch_db:sf_dlm.view_template_property_form #: model_terms:ir.ui.view,arch_db:stock.view_template_property_form msgid "Description for Internal Transfers" msgstr "内部调拨的说明" -#. module: stock +#. modules: stock, sf_dlm +#: model_terms:ir.ui.view,arch_db:sf_dlm.view_template_property_form #: model_terms:ir.ui.view,arch_db:stock.view_template_property_form msgid "Description for Receipts" msgstr "收货说明" @@ -11307,6 +29995,25 @@ msgstr "结算单描述" msgid "Description picking" msgstr "拣货说明" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__description +msgid "" +"Description that will be added in the message posted for this subtype. If " +"void, the name will be added instead." +msgstr "将为该子模型的消息添加注解。如为空,则添加名称。" + +#. module: base +#: model:ir.module.module,summary:base.module_mass_mailing_themes +msgid "Design gorgeous mails" +msgstr "设计美观的邮件" + +#. module: base +#: model:ir.module.module,description:base.module_sale_quotation_builder +msgid "" +"Design great quotation templates with building blocks to significantly boost" +" your success rate." +msgstr "使用构建块设计出色的报价模板,以显著提高您的成功率." + #. module: sale_management #: model_terms:ir.ui.view,arch_db:sale_management.res_config_settings_view_form msgid "" @@ -11316,7 +30023,30 @@ msgstr "" "使用构建块设计报价模板
    \n" " (Planner/Auditor)\n" +"* Luis Torres (Developer)\n" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_pe_edi_stock +msgid "Electronic Delivery Note for Peru (OSE method) and UBL 2.1" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_pe_edi_stock_20 +msgid "Electronic Delivery Note for Peru (REST API method)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_cl_edi_exports +msgid "Electronic Exports of Goods for Chile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_pe_edi +msgid "Electronic Invoicing for Peru (OSE method) and UBL 2.1" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_co_edi +msgid "Electronic invoicing for Colombia with Carvajal" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/template_inheritance.py:0 +#, python-format +msgid "Element %r cannot be located in parent view" +msgstr "不能在上级视图中定位元素 %r" + +#. module: base +#. odoo-python +#: code:addons/template_inheritance.py:0 +#, python-format +msgid "Element '%s' cannot be located in parent view" +msgstr "元素 '%s' 在上级视图中没有找到" + +#. modules: mail, base, account +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:account.field_account_invoice_send__is_email +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__group_by_email +#: model:ir.model.fields,field_description:base.field_res_bank__email +#: model:ir.model.fields,field_description:base.field_res_company__email +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__email +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__partner_email +#: model:ir.model.fields,field_description:mail.field_mail_followers__email +#: model:ir.model.fields,field_description:mail.field_res_partner__email +#: model:ir.model.fields,field_description:mail.field_res_users__email +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__mail_post_method__email +#: model:ir.model.fields.selection,name:mail.selection__mail_message__message_type__email +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__notification_type__email +#: model:ir.ui.menu,name:base.menu_email +#: model:mail.activity.type,name:mail.mail_activity_data_email +#: model_terms:ir.ui.view,arch_db:base.contact +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search +#, python-format msgid "Email" msgstr "" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__email_add_signature +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__email_add_signature +#: model:ir.model.fields,field_description:mail.field_mail_mail__email_add_signature +#: model:ir.model.fields,field_description:mail.field_mail_message__email_add_signature msgid "Email Add Signature" msgstr "电子邮件添加签名" +#. modules: mail, base +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__email +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__email +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__email +#: model_terms:ir.ui.view,arch_db:base.view_users_form +#: model_terms:ir.ui.view,arch_db:base.view_users_simple_form +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_remove_view_form +msgid "Email Address" +msgstr "Email地址" + #. modules: quality_control, maintenance, account #: model:ir.model.fields,field_description:account.field_account_journal__alias_id #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__email_alias @@ -12462,6 +32419,32 @@ msgstr "电子邮件添加签名" msgid "Email Alias" msgstr "电子邮箱别名" +#. module: mail +#: model:ir.model,name:mail.model_mail_alias +msgid "Email Aliases" +msgstr "EMail别名" + +#. module: mail +#: model:ir.model,name:mail.model_mail_alias_mixin +msgid "Email Aliases Mixin" +msgstr "EMail别名 Mixin" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_blacklist_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_blacklist_view_tree +msgid "Email Blacklist" +msgstr "EMail黑名单" + +#. module: mail +#: model:ir.model,name:mail.model_mail_thread_cc +msgid "Email CC management" +msgstr "电子邮件副本管理" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "Email Configuration" +msgstr "EMail配置" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Email Confirmation" @@ -12473,28 +32456,111 @@ msgstr "邮件确认" msgid "Email Confirmation picking" msgstr "邮件确认拣货" -#. module: account +#. module: base +#: model:ir.module.category,name:base.module_category_marketing_email_marketing +#: model:ir.module.module,shortdesc:base.module_mass_mailing +msgid "Email Marketing" +msgstr "邮件营销" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_compose_message__composition_mode__mass_mail +msgid "Email Mass Mailing" +msgstr "邮件群发" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__email_layout_xmlid +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__email_layout_xmlid msgid "Email Notification Layout" msgstr "电子邮件通知布局" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_template_preview_view_form +msgid "Email Preview" +msgstr "EMail预览" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search +msgid "Email Search" +msgstr "EMail搜索" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__signature +msgid "Email Signature" +msgstr "电子邮件签字" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__template_id +#: model:ir.model.fields,field_description:mail.field_ir_cron__template_id +msgid "Email Template" +msgstr "EMail模板" + +#. module: mail +#: model:ir.model,name:mail.model_mail_template_preview +msgid "Email Template Preview" +msgstr "EMail模板预览" + #. module: stock #: model:ir.model.fields,field_description:stock.field_res_company__stock_mail_confirmation_template_id msgid "Email Template confirmation picking" msgstr "确认拣货邮件模版" -#. module: account -#: model:ir.model,name:account.model_mail_thread -msgid "Email Thread" -msgstr "邮件主题" +#. module: mail +#: model:ir.actions.act_window,name:mail.action_email_template_tree_all +#: model:ir.model,name:mail.model_mail_template +#: model:ir.ui.menu,name:mail.menu_email_templates +msgid "Email Templates" +msgstr "EMail模板" -#. module: account +#. module: mail +#: model:ir.model,name:mail.model_mail_thread +msgid "Email Thread" +msgstr "邮件会话" + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_blacklist_unique_email +msgid "Email address already exists!" +msgstr "EMail地址已存在!" + +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__email_from +#: model:ir.model.fields,help:mail.field_mail_compose_message__email_from +#: model:ir.model.fields,help:mail.field_mail_mail__email_from +#: model:ir.model.fields,help:mail.field_mail_message__email_from msgid "" "Email address of the sender. This field is set when no matching partner is " "found and replaces the author_id field in the chatter." msgstr "发送者的EMail地址。当找不到业务伙伴的匹配的邮件时候,这个字段就被设置。并且Chatter中的作者id被替换掉." +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "" +"Email address to which replies will be redirected when sending emails in " +"mass" +msgstr "批量发送电子邮件时将回复重定向到的电子邮件地址" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__reply_to +msgid "" +"Email address to which replies will be redirected when sending emails in " +"mass; only used when the reply is not logged in the original discussion " +"thread." +msgstr "当群发邮件时,回复将被重定向的电子邮件地址;仅当回复没有被记录在原始讨论线程中时使用。" + +#. module: mail +#: model_terms:ir.actions.act_window,help:mail.mail_blacklist_action +msgid "" +"Email addresses that are blacklisted won't receive Email mailings anymore." +msgstr "被列入黑名单的电子邮件地址将不再接收电子邮件。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_alias.py:0 +#, python-format +msgid "" +"Email alias %(alias_name)s cannot be used on %(count)d records at the same " +"time. Please update records one by one." +msgstr "电子邮件别名%(alias_name)s 不能同时用于 %(count)d条记录。请一一更新记录。" + #. module: maintenance #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_id msgid "" @@ -12507,7 +32573,8 @@ msgstr "此设备类别的电子邮件别名。新邮件将自动在此类别下 msgid "Email by default" msgstr "默认邮件" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__email_cc #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__email_cc #: model:ir.model.fields,field_description:quality.field_quality_alert__email_cc #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_form @@ -12519,21 +32586,205 @@ msgstr "邮件抄送" msgid "Email composition wizard" msgstr "EMail撰写向导" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_message_subtype_form +msgid "Email message" +msgstr "EMail消息" + +#. module: mail +#: model:ir.model,name:mail.model_mail_resend_message +msgid "Email resend wizard" +msgstr "EMail重发向导" + #. module: stock #: model:ir.model.fields,help:stock.field_res_company__stock_mail_confirmation_template_id msgid "Email sent to the customer once the order is done." msgstr "订单完成后发送给客户电子邮件" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__mail_template_ids +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__mail_template_ids +msgid "Email templates" +msgstr "电子邮件模板" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_mail_mail +#: model:ir.ui.menu,name:mail.menu_mail_mail +#: model_terms:ir.ui.view,arch_db:mail.mail_message_schedule_view_tree +#: model_terms:ir.ui.view,arch_db:mail.view_mail_tree +msgid "Emails" +msgstr "EMail" + #. module: sf_manufacturing #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__embryo_model_type_id msgid "Embryo Model Type" msgstr "" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Emojis" +msgstr "表情符号" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__employee +#: model:ir.model.fields,field_description:base.field_res_users__employee +msgid "Employee" +msgstr "员工" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_contract +msgid "Employee Contracts" +msgstr "员工合同" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_contract_reports +msgid "Employee Contracts Reporting" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_services_employee_hourly_cost +msgid "Employee Hourly Cost" +msgstr "员工小时成本" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_hourly_cost +#: model:ir.module.module,summary:base.module_hr_hourly_cost +msgid "Employee Hourly Wage" +msgstr "员工小时工资" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__is_internal +#: model:ir.model.fields,field_description:mail.field_mail_message__is_internal +msgid "Employee Only" +msgstr "仅限员工" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_presence +msgid "Employee Presence Control" +msgstr "员工出勤控制" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_referral +msgid "Employee Referral" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_employees +#: model:ir.module.module,shortdesc:base.module_hr +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Employees" +msgstr "员工" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_hr +msgid "Employees - Mexico" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder_hr_account +msgid "Employees cost registration on production" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_gantt +#: model:ir.module.module,summary:base.module_hr_gantt +msgid "Employees in Gantt" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_mobile +#: model:ir.module.module,summary:base.module_hr_mobile +msgid "Employees in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_appointment_hr +msgid "Employees on Appointments" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder_hr +msgid "Employees time registration on Work Orders" +msgstr "" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_bank_statement_search msgid "Empty" msgstr "空白" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_backorder_confirmation__empty_move_count +msgid "Empty Move Count" +msgstr "空的移动计数" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Empty dependency in %r" +msgstr "空白依赖在 %r" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_model_fields__tracking +msgid "Enable Ordered Tracking" +msgstr "启用跟踪" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Enable Push-to-talk" +msgstr "启用一键通话功能" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_cache +msgid "Enable a cache on products for a lower POS loading time." +msgstr "允许商品缓存,从而获得较低的POS加载时间." + +#. module: base +#: model:ir.module.module,summary:base.module_account_payment +msgid "" +"Enable customers to pay invoices on the portal and post payments when " +"transactions are processed." +msgstr "允许客户在门户网站上支付结算,并在处理交易时延期支付。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_request/notification_request.xml:0 +#, python-format +msgid "Enable desktop notifications to chat." +msgstr "启用聊天桌面通知." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.enable_profiling_wizard +msgid "Enable profiling" +msgstr "启用性能分析" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__duration +msgid "Enable profiling for" +msgstr "启用分析于" + +#. module: base +#: model:ir.model,name:base.model_base_enable_profiling_wizard +msgid "Enable profiling for some time" +msgstr "启用分析一段时间" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__expiration +msgid "Enable profiling until" +msgstr "启用分析直到" + +#. module: base +#: model:ir.module.module,description:base.module_appointment_sms +msgid "Enable sending appointment reminders via SMS to your clients." +msgstr "" + #. module: account #: model:ir.model.fields,help:account.field_res_company__account_use_credit_limit #: model:ir.model.fields,help:account.field_res_config_settings__account_use_credit_limit @@ -12545,7 +32796,20 @@ msgstr "允许对合作伙伴使用信用额度。" msgid "Enabled by Default" msgstr "默认启用" -#. modules: account, mrp +#. module: base +#: model:ir.module.module,description:base.module_theme_enark +#: model:ir.module.module,shortdesc:base.module_theme_enark +msgid "Enark Theme" +msgstr "" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Encoding:" +msgstr "编码:" + +#. modules: mrp, account #: model:ir.model.fields,field_description:account.field_account_resequence_wizard__end_date #: model:ir.model.fields,field_description:mrp.field_mrp_production__date_finished #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter_productivity__date_end @@ -12568,6 +32832,11 @@ msgstr "月底" msgid "Ending Balance" msgstr "期末余额" +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_D +msgid "Energy supply" +msgstr "能源供应" + #. module: stock #: model_terms:digest.tip,tip_description:stock.digest_tip_stock_0 msgid "" @@ -12579,7 +32848,19 @@ msgstr "" "使用Odoo条码应用程序享受快节奏的体验。 它运行迅速,即使没有稳定的互联网连接也能正常工作。 " "它支持所有流程:库存调整,批次拣配,移动批次或托盘,低库存检查等。转到“应用”菜单以激活条形码界面。" -#. modules: quality_control, mrp_workorder, stock, mrp +#. module: base +#: model:ir.module.module,summary:base.module_crm_iap_enrich +msgid "Enrich Leads/Opportunities using email address domain" +msgstr "使用电子邮件地址域名丰富潜在客户/机会" + +#. module: base +#: model:ir.module.module,summary:base.module_website_appointment_crm +msgid "" +"Enrich lead created automatically through an appointment with gathered " +"website visitor information" +msgstr "" + +#. modules: stock, quality_control, mrp, mrp_workorder #: model:ir.model.fields,help:mrp.field_mrp_bom_line__tracking #: model:ir.model.fields,help:mrp.field_mrp_production__product_tracking #: model:ir.model.fields,help:mrp.field_mrp_unbuild__has_tracking @@ -12598,6 +32879,69 @@ msgstr "" msgid "Ensure the traceability of a storable product in your warehouse." msgstr "确保仓库中的产品可追溯。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "在这里键入Python代码. 关于Python表达式的帮助在这个单据的帮助页卡中找到." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description +msgid "Enter a description of and purpose for the key." +msgstr "输入密钥的描述和用途." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_track_gantt +msgid "Enterprise Event Track" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_enterprise_partner_assign +msgid "Enterprise Resellers" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_crm_enterprise_partner_assign +#: model:ir.module.module,summary:base.module_crm_enterprise_partner_assign +msgid "Enterprise counterpart for Resellers" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_website_crm_iap_reveal_enterprise +#: model:ir.module.module,summary:base.module_website_crm_iap_reveal_enterprise +msgid "Enterprise counterpart of Visits -> Leads" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_mrp_workorder +msgid "" +"Enterprise extension for MRP\n" +"* Work order planning. Check planning by Gantt views grouped by production order / work center\n" +"* Traceability report\n" +"* Cost Structure report (mrp_account)" +msgstr "" +"MRP 的企业版扩展\n" +"\n" +"* 工单计划。通过按生产单/工作中心分组的甘特图,检查计划\n" +"* 跟踪报告\n" +"* 成本结构报告 (mrp_account)" + +#. module: base +#: model:ir.module.module,summary:base.module_contacts_enterprise +msgid "Enterprise features on contacts" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website +msgid "Enterprise website builder" +msgstr "企业版网站创建器" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_R +msgid "Entertainment" +msgstr "娱乐" + #. module: account #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" @@ -12609,24 +32953,28 @@ msgid "Entries Count" msgstr "分录计数" #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #, python-format msgid "Entries are hashed from %s (%s)" msgstr "凭证从%s(%s)被打乱" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "Entries are not from the same account: %s != %s" -msgstr "分录不是来自同一个帐户: %s != %s" +msgstr "分录不是来自同一个科目: %s != %s" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "Entries can only be created for a single company at a time." msgstr "一次只能为单个公司创建分录。" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "Entries doesn't belong to the same company: %s != %s" @@ -12645,11 +32993,29 @@ msgid "Entries to Review" msgstr "待审查的分录" #. module: account +#. odoo-python #: code:addons/account/models/account_analytic_line.py:0 #, python-format msgid "Entries: %(account)s" msgstr "分录: %(account)s" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_profile__entry_count +msgid "Entry count" +msgstr "项目数" + +#. module: base +#: model:ir.module.category,name:base.module_category_theme_environment +msgid "Environment" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_treehouse +msgid "" +"Environment, Nature, Ecology, Sustainable Development, Non Profit, NGO, " +"Travels" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__epd_dirty msgid "Epd Dirty" @@ -12665,6 +33031,21 @@ msgstr "EPD键" msgid "Epd Needed" msgstr "需要环保署" +#. module: base +#: model:ir.module.module,summary:base.module_pos_epson_printer_restaurant +msgid "Epson Printers as Order Printers" +msgstr "Epson打印机作为订单打印机" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_epson_printer +msgid "Epson ePOS Printers in PoS" +msgstr "PoS 中的 Epson ePOS 打印机" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "赤道几内亚" + #. module: maintenance #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__equipment_count #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__equipment_id @@ -12707,8 +33088,13 @@ msgstr "设备管理员" msgid "Equipments" msgstr "设备" +#. module: base +#: model:ir.module.module,summary:base.module_hr_maintenance +msgid "Equipments, Assets, Internal Hardware, Allocation Tracking" +msgstr "设备,资产,内部硬件,配置跟踪" + #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__equity @@ -12719,45 +33105,310 @@ msgstr "设备" msgid "Equity" msgstr "权益" -#. module: stock -#. openerp-web +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "厄立特里亚" + +#. modules: stock, mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models/notification.js:0 #: code:addons/stock/static/src/xml/stock_traceability_report_backend.xml:0 +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__error +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_mixin__activity_exception_decoration__danger +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_type__decoration_type__danger +#: model:ir.model.fields.selection,name:mail.selection__res_partner__activity_exception_decoration__danger #, python-format msgid "Error" -msgstr "" +msgstr "错误" -#. module: account -#: code:addons/account/models/ir_actions_report.py:0 +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__error_msg +msgid "Error Message" +msgstr "错误消息" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Error Parsing Date [%s:L%d]: %s" +msgstr "日期语法错误 [%s:L%d]: %s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/update.py:0 +#, python-format +msgid "Error during communication with the publisher warranty server." +msgstr "当与保障服务器通信时发生错误。" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__message +msgid "Error message" +msgstr "错误消息" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_constraint__message +msgid "Error message returned when the constraint is violated." +msgstr "违反约束时返回的错误消息." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 #, python-format msgid "" -"Error when reading the original PDF for: %r.\n" -"Please make sure the file is valid." +"Error while validating view near:\n" +"\n" +"%(fivelines)s\n" +"%(error)s" msgstr "" -"读取原始 PDF 时出错: %r。\n" -"请确保文件有效。" +"验证附近视图时出错:\n" +"\n" +"%(fivelines)s\n" +"%(error)s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Error while validating view:\n" +"\n" +"%(error)s" +msgstr "" +"验证视图时出错:\n" +"\n" +"%(error)s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_mail.py:0 +#, python-format +msgid "" +"Error without exception. Probably due to concurrent access update of " +"notification records. Please see with an administrator." +msgstr "错误无一例外。可能是由于通知记录的并发访问更新。请与管理员联系。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_mail.py:0 +#, python-format +msgid "" +"Error without exception. Probably due to sending an email without computed " +"recipients." +msgstr "错误无一例外。可能是由于发送没有计算收件人的电子邮件。" #. module: account +#. odoo-python #: code:addons/account/models/res_config_settings.py:0 #, python-format msgid "Error!" msgstr "错误!" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_menu.py:0 +#: code:addons/base/models/ir_ui_menu.py:0 +#, python-format +msgid "Error! You cannot create recursive menus." +msgstr "错误!不能创建循环引用的菜单." + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_followers_mail_followers_res_partner_res_model_id_uniq +msgid "Error, a partner cannot follow twice the same object." +msgstr "错误,用户不能重复创建联系人。" + #. module: mrp +#. odoo-python #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #, python-format msgid "Estimated %s" -msgstr "" +msgstr "预估 %s" #. module: sf_manufacturing #: model:ir.model.fields,field_description:sf_manufacturing.field_maintenance_equipment__estimated_next_failure msgid "Estimated time before next failure (in days)" msgstr "预估下次故障前置时间(按天)" -#. module: account +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Estimated time left:" +msgstr "估计剩余时间。" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "爱沙尼亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ee +msgid "Estonia - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ee_reports +msgid "Estonia - Accounting Reports" +msgstr "" + +#. module: base +#: model:res.country,name:base.sz +msgid "Eswatini" +msgstr "斯威士兰" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "埃塞俄比亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_et +msgid "Ethiopia - Accounting" +msgstr "" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: model:res.country.group,name:base.europe +#, python-format +msgid "Europe" +msgstr "欧洲" + +#. modules: mail, account +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 #: model:ir.model.fields.selection,name:account.selection__account_journal__invoice_reference_model__euro +#, python-format msgid "European" msgstr "欧洲" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__evaluation_type +msgid "Evaluation Type" +msgstr "估算类型" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_jitsi +#: model:ir.module.module,summary:base.module_website_event_jitsi +msgid "Event / Jitsi" +msgstr "活动/Jitsi" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_event_sms +msgid "Event Attendees SMS Marketing" +msgstr "活动参加者短信息行销" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_barcode +msgid "Event Barcode Scanning" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_barcode_mobile +msgid "Event Barcode in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_event_barcode_mobile +msgid "Event Barcode scan in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_booth_exhibitor +msgid "Event Booths, automatically create a sponsor." +msgstr "活动展位,自动创建赞助商." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_crm +msgid "Event CRM" +msgstr "活动客户关系管理" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_crm_sale +msgid "Event CRM Sale" +msgstr "活动 客户关系管理 销售" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_exhibitor +msgid "Event Exhibitors" +msgstr "活动参展商" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_meet +msgid "Event Meeting / Rooms" +msgstr "活动会议/房间" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_social +msgid "Event Social" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_monglia +msgid "" +"Event, Restaurants, Bars, Pubs, Cafes, Catering, Food, Drinks, Concerts, " +"Shows, Musics, Dance, Party" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_exhibitor +msgid "Event: manage sponsors and exhibitors" +msgstr "活动: 管理赞助商和参展商" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_meet +msgid "Event: meeting and chat rooms" +msgstr "活动: 会议室和聊天室" + +#. module: base +#: model:ir.module.category,name:base.module_category_marketing_events +#: model:ir.module.module,shortdesc:base.module_website_event +msgid "Events" +msgstr "活动" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_booth +msgid "Events Booths" +msgstr "活动展位" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_booth_sale +msgid "Events Booths Sales" +msgstr "活动展位销售" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event +msgid "Events Organization" +msgstr "活动" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_enterprise +msgid "Events Organization Add-on" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_sale +msgid "Events Sales" +msgstr "活动销售" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_event_sale_dashboard +msgid "Events Sales Dashboard" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_booth +msgid "Events, display your booths on your website" +msgstr "活动,在您的网站上展示您的展位" + +#. module: base +#: model:ir.module.module,summary:base.module_website_event_booth_sale +msgid "Events, sell your booths online" +msgstr "活动,线上销售您的展位" + #. module: account #: model:ir.model.fields,help:account.field_account_reconcile_model__decimal_separator #: model:ir.model.fields,help:account.field_account_reconcile_model_template__decimal_separator @@ -12780,6 +33431,18 @@ msgstr "" "Odoo将会把产品从供应商位置调拨到仓位置置。每个报告可用在\n" "实体位置、业务伙伴位置或者虚拟位置进行。" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_alias__alias_contact__everyone +msgid "Everyone" +msgstr "所有人" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Everything seems valid." +msgstr "看上去一切正常。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_payment_term_form msgid "Example" @@ -12800,6 +33463,45 @@ msgstr "示例无效" msgid "Example Preview" msgstr "示例预览" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "Example of Python code" +msgstr "Python 代码样例" + +#. module: base +#: model:ir.module.module,description:base.module_gamification_sale_crm +msgid "" +"Example of goal definitions and challenges that can be used related to the " +"usage of the CRM Sale module." +msgstr "可以用来关联到CRM销售模块使用的规定目标与挑战的样例." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "" +"Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 OR " +"GROUP_A_RULE_2) OR (GROUP_B_RULE_1 OR GROUP_B_RULE_2) )" +msgstr "" +"例子: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 OR GROUP_A_RULE_2)" +" OR (GROUP_B_RULE_1 OR GROUP_B_RULE_2) )" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "Examples" +msgstr "例子" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Excel files are recommended as formatting is automatic." +msgstr "建议使用Excel文件,因为格式是自动的。" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__notification_status__exception +#: model:mail.activity.type,name:mail.mail_activity_data_warning +msgid "Exception" +msgstr "异常" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.exception_on_mo msgid "Exception(s) occurred on the manufacturing order(s):" @@ -12815,7 +33517,7 @@ msgstr "拣货作业出现异常" msgid "Exception(s) occurred on the purchase order(s):" msgstr "采购单出现异常:" -#. modules: purchase_stock, stock, mrp +#. modules: stock, mrp, purchase_stock #: model_terms:ir.ui.view,arch_db:mrp.exception_on_mo #: model_terms:ir.ui.view,arch_db:purchase_stock.exception_on_po #: model_terms:ir.ui.view,arch_db:stock.exception_on_picking @@ -12823,13 +33525,14 @@ msgid "Exception(s):" msgstr "异常:" #. module: account -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/account/models/chart_template.py:0 #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #, python-format msgid "Exchange Difference" -msgstr "汇率差异" +msgstr "汇兑差异" #. module: account #: model:ir.model.fields,field_description:account.field_res_company__currency_exchange_journal_id @@ -12842,18 +33545,66 @@ msgstr "汇兑损益" msgid "Exchange Move" msgstr "结汇凭证" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Exclude contacts having" +msgstr "不合并下列联系人" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal_group__excluded_journal_ids msgid "Excluded Journals" msgstr "已排除的日记账" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__exclusion_id +msgid "Exclusion Module" +msgstr "排除模块" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__exclusion_ids +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Exclusions" +msgstr "独立" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_category__exclusive +msgid "Exclusive" +msgstr "独立" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_form +msgid "Execute Every" +msgstr "定时执行" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__code +msgid "Execute Python Code" +msgstr "执行Python 代码" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__multi +msgid "Execute several actions" +msgstr "执行几个动作" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search +msgid "Execution" +msgstr "执行" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__executive +msgid "Executive 4 7.5 x 10 inches, 190.5 x 254 mm" +msgstr "执行 47.5× 10英寸,190.5 x 254毫米" + #. module: mrp +#. odoo-python #: code:addons/mrp/wizard/stock_assign_serial_numbers.py:0 #, python-format msgid "Existing Serial Numbers (%s)" msgstr "现有序列号(%s)" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "" @@ -12861,25 +33612,32 @@ msgid "" msgstr "序列号(%s)已存在。 请更正编码的序列号。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move.py:0 #, python-format msgid "Existing Serial numbers. Please correct the serial numbers encoded:" msgstr "序列号已存在。 请更正序列号。" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/widgets/forecast_widget.xml:0 #, python-format msgid "Exp" -msgstr "" +msgstr "预计" #. modules: stock, mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Exp %s" msgstr "预计%s" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__group_expand +msgid "Expand Groups" +msgstr "展开组" + #. modules: stock, mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__components_availability_state__expected #: model:ir.model.fields.selection,name:stock.selection__stock_picking__products_availability_state__expected @@ -12887,6 +33645,7 @@ msgid "Expected" msgstr "预计" #. module: mrp +#. odoo-python #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #, python-format msgid "Expected %s" @@ -12899,7 +33658,7 @@ msgid "Expected Arrival" msgstr "预计到货时间" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/components/reception_report_table/stock_reception_report_table.xml:0 #: model_terms:ir.ui.view,arch_db:stock.report_reception_body #, python-format @@ -12939,7 +33698,8 @@ msgid "Expects a Chart of Accounts" msgstr "预计会计科目表" #. module: account -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 #: code:addons/account/wizard/accrued_orders.py:0 @@ -12967,33 +33727,202 @@ msgstr "产品模板的费用科目" msgid "Expense Accrual Account" msgstr "费用应计科目" -#. module: account +#. modules: base, account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__expense #: model:ir.model.fields.selection,name:account.selection__account_account_template__account_type__expense +#: model:ir.module.category,name:base.module_category_human_resources_expenses +#: model:ir.module.module,shortdesc:base.module_hr_expense #: model_terms:ir.ui.view,arch_db:account.view_account_search msgid "Expenses" msgstr "费用" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_payroll_expense +msgid "Expenses in Payslips" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_odoo_experts +msgid "Experts Business Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_odoo_experts +msgid "Experts Theme" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_res_config_settings__module_product_expiry msgid "Expiration Dates" msgstr "到期日" +#. module: base +#: model:ir.model.fields,help:base.field_report_paperformat__report_ids +msgid "Explicitly associated reports" +msgstr "明确关联的报告" + +#. module: base +#: model:ir.module.module,description:base.module_web_unsplash +msgid "" +"Explore the free high-resolution image library of Unsplash.com and find " +"images to use in Odoo. An Unsplash search bar is added to the image library " +"modal." +msgstr "浏览Unsplash.com的免费高分辨率图像库,找到要在Odoo中使用的图像. 将Unsplash搜索栏增加到图像库模式中." + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_exports_line__export_id +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "Export" +msgstr "导出" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "Export Complete" +msgstr "导出完成" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_exports__export_fields +msgid "Export ID" +msgstr "导出 ID" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_exports__name +msgid "Export Name" +msgstr "导出名称" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "Export Settings" +msgstr "导出设置" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" +msgstr "导出翻译" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "Export Translations" +msgstr "导出翻译" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_au_aba +msgid "Export payments as ABA Credit Transfer files" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_us_payment_nacha +msgid "Export payments as NACHA files" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_sepa +msgid "Export payments as SEPA Credit Transfer files" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "Exports" +msgstr "导出" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "Exports Line" +msgstr "导出明细" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_column__expression_label msgid "Expression Label" msgstr "表达标签" +#. module: base +#: model:ir.model.fields,help:base.field_ir_server_object_lines__value +msgid "" +"Expression containing a value specification. \n" +"When Formula type is selected, this field may be a Python expression that can use the same values as for the code field on the server action.\n" +"If Value type is selected, the value will be used directly without evaluation." +msgstr "" +"包含值定义的表达式。\n" +"如果选择了公式类型,此字段可以是一个 Python 表达式,它可以使用与服务器动作中的代码字段相同的值。 \n" +"如果选择了值类型,该值将直接使用而无需进行评估。" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_line__expression_ids msgid "Expressions" msgstr "表达式" +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_address_extended +msgid "Extended Addresses" +msgstr "扩展地址" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search msgid "Extended Filters" msgstr "扩展筛选" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search +msgid "Extended Filters..." +msgstr "扩展筛选..." + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__mode__extension +msgid "Extension View" +msgstr "扩展视图" + +#. module: base +#: model:ir.module.module,summary:base.module_snailmail_account_followup +msgid "Extension to send follow-up documents by post" +msgstr "" + +#. modules: base, base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#: code:addons/base_import/models/base_import.py:0 +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_client__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_report__xml_id +#: model:ir.model.fields,field_description:base.field_ir_actions_server__xml_id +#: model:ir.model.fields,field_description:base.field_ir_cron__xml_id +#: model:ir.model.fields,field_description:base.field_ir_module_category__xml_id +#: model:ir.model.fields,field_description:base.field_ir_ui_view__xml_id +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form +#, python-format +msgid "External ID" +msgstr "外部ID" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_model_data_name_nospaces +msgid "External IDs cannot contain spaces" +msgstr "外部 ID 不能包含空格" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_data__name +#: model_terms:ir.ui.view,arch_db:base.view_model_data_search +msgid "External Identifier" +msgstr "外部标识" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_data +#: model:ir.ui.menu,name:base.ir_model_data_menu +#: model_terms:ir.ui.view,arch_db:base.view_model_data_form +#: model_terms:ir.ui.view,arch_db:base.view_model_data_list +#: model_terms:ir.ui.view,arch_db:base.view_model_data_search +msgid "External Identifiers" +msgstr "外部标识" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_data__name +msgid "" +"External Key/Identifier that can be used for data integration with third-" +"party systems" +msgstr "External Key/Identifier 能用来跟第三方系统作数据集成" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement__reference msgid "External Reference" @@ -13009,17 +33938,85 @@ msgstr "外部价值" msgid "External note..." msgstr "外部备注..." +#. module: base +#: model:ir.model.fields,help:base.field_res_users__share +msgid "" +"External user with limited access, created only for the purpose of sharing " +"data." +msgstr "创建您只用来共享数据的有限访问外部用户." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Extra" +msgstr "额外的" + +#. module: base +#: model:ir.module.category,name:base.module_category_usability +#: model_terms:ir.ui.view,arch_db:base.user_groups_view +msgid "Extra Rights" +msgstr "额外的权限" + +#. module: base +#: model:ir.module.category,name:base.module_category_extra_tools +msgid "Extra Tools" +msgstr "额外工具" + #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "Extra line with %s " msgstr "更多明细 %s" +#. module: base +#: model:ir.module.module,summary:base.module_hr_recruitment_extract +msgid "Extract data from CV scans to fill application forms automatically" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_expense_extract +msgid "Extract data from expense scans to fill them automatically" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_invoice_extract +msgid "Extract data from invoice scans to fill them automatically" +msgstr "" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_U +msgid "Extraterritorial" +msgstr "域外管辖权" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_F +msgid "F - CONSTRUCTION" +msgstr "F - 建筑业" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_delivery_fedex +msgid "FEDEX Locations for Website Delivery" +msgstr "" + #. module: stock #: model:ir.model.fields,help:stock.field_product_removal__method msgid "FIFO, LIFO..." msgstr "" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "FM" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "FREE" +msgstr "" + #. module: account #: model:account.incoterms,name:account.incoterm_FAS msgid "FREE ALONGSIDE SHIP" @@ -13035,6 +34032,49 @@ msgstr "" msgid "FREE ON BOARD" msgstr "" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "FREE button" +msgstr "FREE按钮" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__from_filter +msgid "FROM Filtering" +msgstr "发件人筛选" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_sms +msgid "FSM - SMS" +msgstr "" + +#. module: sf_mrs_connect +#: model_terms:ir.ui.view,arch_db:sf_mrs_connect.res_config_settings_view_form_sf_sync +msgid "FTP参数配置" +msgstr "" + +#. module: sf_mrs_connect +#: model:ir.model.fields,field_description:sf_mrs_connect.field_res_config_settings__ftp_password +msgid "FTP密码" +msgstr "" + +#. module: sf_mrs_connect +#: model:ir.model.fields,field_description:sf_mrs_connect.field_res_config_settings__ftp_user +msgid "FTP用户" +msgstr "" + +#. module: sf_mrs_connect +#: model:ir.model.fields,field_description:sf_mrs_connect.field_res_config_settings__ftp_host +msgid "FTP的ip" +msgstr "" + +#. module: sf_mrs_connect +#: model:ir.model.fields,field_description:sf_mrs_connect.field_res_config_settings__ftp_port +msgid "FTP端口" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax_repartition_line__factor msgid "Factor Ratio" @@ -13055,25 +34095,51 @@ msgid "" "line, in percents" msgstr "要应用于从此分发行生成的会计凭证行的系数,以百分比为单位" -#. modules: quality_mrp_workorder, quality_control +#. module: quality_control #: model:ir.model.fields.selection,name:quality_control.selection__quality_check__measure_success__fail #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form #: model_terms:ir.ui.view,arch_db:quality_control.view_quality_check_wizard -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_form_tablet_inherit_quality msgid "Fail" msgstr "失败" -#. modules: quality, quality_control +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_config_settings__fail_counter +msgid "Fail Mail" +msgstr "失败的邮件" + +#. modules: mail, base, quality_control, quality +#: model:ir.model.fields.selection,name:base.selection__res_users_deletion__state__fail #: model:ir.model.fields.selection,name:quality.selection__quality_check__quality_state__fail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_search msgid "Failed" msgstr "失败的" -#. module: quality_mrp_workorder -#: code:addons/quality_mrp_workorder/models/quality.py:0 +#. module: base +#: model:ir.actions.server,name:base.demo_failure_action +msgid "Failed to install demo data for some modules, demo disabled" +msgstr "未能安装某些模块的样例数据,样例停用" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_render_mixin.py:0 #, python-format -msgid "Failure" -msgstr "失败" +msgid "Failed to render QWeb template : %s)" +msgstr "无法渲染 QWeb 模板: %s)" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_render_mixin.py:0 +#, python-format +msgid "Failed to render inline_template template : %s)" +msgstr "无法渲染 inline_template 模板: : %s)" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_render_mixin.py:0 +#, python-format +msgid "Failed to render template : %s" +msgstr "渲染模板失败:%s" #. module: quality_control #: model:ir.model.fields,field_description:quality_control.field_quality_check__failure_message @@ -13082,22 +34148,97 @@ msgstr "失败" msgid "Failure Message" msgstr "失败消息" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__failure_reason +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +msgid "Failure Reason" +msgstr "失败原因" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_notification__failure_reason +msgid "Failure reason" +msgstr "失败原因" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__failure_reason +msgid "" +"Failure reason. This is usually the exception thrown by the email server, " +"stored to ease the debugging of mailing issues." +msgstr "失败原因。通过EMail服务器抛出的异常,存储以缓解邮件问题的调试。" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__failure_type +#: model:ir.model.fields,field_description:mail.field_mail_notification__failure_type +msgid "Failure type" +msgstr "失败类型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__failures_count +msgid "Failures Count" +msgstr "失败计数" + +#. module: base +#: model:ir.module.module,description:base.module_test_data_module +msgid "Fake module to test data module installation without __init__.py" +msgstr "没有 __init__.py 的测试用模块测试数据模块安装" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "福克兰群岛" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "法罗群岛" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Father" +msgstr "父亲" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Father Christmas" +msgstr "圣诞老人" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant__priority msgid "Favorite" msgstr "收藏夹" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__starred_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__starred_partner_ids +msgid "Favorited By" +msgstr "收藏夹" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_search msgid "Favorites" msgstr "收藏" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__2 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__2 msgid "February" msgstr "二月" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_bank__state +#: model:ir.model.fields,field_description:base.field_res_company__state_id +msgid "Fed. State" +msgstr "联邦州" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +msgid "Fed. States" +msgstr "省/州" + #. module: stock #: model:ir.model.fields,field_description:stock.field_res_config_settings__module_delivery_fedex msgid "FedEx Connector" @@ -13109,63 +34250,575 @@ msgstr "FedEx 连接器" msgid "Federal States" msgstr "联邦政府" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_country_state +msgid "" +"Federal States belong to countries and are part of your contacts' addresses." +msgstr "联邦国家属于国家,是您联系人地址的一部分." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_delivery_fedex +msgid "Fedex Shipping" +msgstr "" + +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__feed_per_tooth_ids +msgid "Feed Per Tooth" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/activity.js:0 +#, python-format +msgid "Feedback" +msgstr "反馈" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Ferris" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +msgid "Fetch Now" +msgstr "现在收取" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_fr_fec +msgid "Fichier d'Échange Informatisé (FEC) for France" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fr_fec +msgid "" +"Fichier d'Échange Informatisé (FEC) pour la France\n" +"==================================================\n" +"\n" +"Ce module permet de générer le fichier FEC tel que définit par `l'arrêté du 29\n" +"Juillet 2013 `\n" +"portant modification des dispositions de l'article A. 47 A-1 du\n" +"livre des procédures fiscales.\n" +"\n" +"Cet arrêté prévoit l'obligation pour les sociétés ayant une comptabilité\n" +"informatisée de pouvoir fournir à l'administration fiscale un fichier\n" +"regroupant l'ensemble des écritures comptables de l'exercice. Le format de ce\n" +"fichier, appelé *FEC*, est définit dans l'arrêté.\n" +"\n" +"Le détail du format du FEC est spécifié dans le bulletin officiel des finances publiques `BOI-CF-IOR-60-40-20-20131213 ` du 13 Décembre 2013. Ce module implémente le fichier\n" +"FEC au format texte et non au format XML, car le format texte sera facilement\n" +"lisible et vérifiable par le comptable en utilisant un tableur.\n" +"\n" +"La structure du fichier FEC généré par ce module a été vérifiée avec le logiciel\n" +"*Test Compta Demat* version 1_00_05 disponible sur\n" +"`le site de la direction générale des finances publiques `\n" +"en utilisant une base de donnée Odoo réelle.\n" +"\n" +"Configuration\n" +"=============\n" +"\n" +"Aucune configuration n'est nécessaire.\n" +"\n" +"Utilisation\n" +"===========\n" +"\n" +"Pour générer le *FEC*, allez dans le menu *Accounting > Reporting > French Statements > FEC* qui va démarrer l'assistant de génération du FEC.\n" +"\n" +"Credits\n" +"=======\n" +"\n" +"Contributors\n" +"------------\n" +"\n" +"* Alexis de Lattre \n" +"\n" +msgstr "" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_ir_default__field_id +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__field_id +#: model:ir.model.fields,field_description:base.field_ir_property__fields_id +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__col1 +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__field +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_selection_search +msgid "Field" +msgstr "字段" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Field \"%(field_name)s\" does not exist in model \"%(model_name)s\"" +msgstr "模型\"%(model_name)s\"中不存在字段\"%(field_name)s\"" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_model.py:0 +#, python-format +msgid "Field \"Mail Activity\" cannot be changed to \"False\"." +msgstr "字段“邮件活动”不能更改为“False”。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_model.py:0 +#, python-format +msgid "Field \"Mail Blacklist\" cannot be changed to \"False\"." +msgstr "“邮件黑名单”字段不能更改为“False”。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_model.py:0 +#, python-format +msgid "Field \"Mail Thread\" cannot be changed to \"False\"." +msgstr "字段\"Type\" 不能在模型上更改." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Field \"Model\" cannot be modified on models." +msgstr "字段\"Model\" 不能在模型上更改 ." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Field \"Transient Model\" cannot be modified on models." +msgstr "字段\"Transient Model\" 不能在模型上更改 ." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Field \"Type\" cannot be modified on models." +msgstr "字段\"Type\" 不能在模型上更改 ." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Field %(name)r used in %(use)s is present in view but is in select multi." +msgstr "%(use)s 中使用的字段 %(name)r 存在于视图中,但位于多选中." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Field %(name)r used in %(use)s is restricted to the group(s) %(groups)s." +msgstr "用于%(use)s的字段%(name)r限于小组%(groups)s。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Field %(name)r used in %(use)s must be present in view but is missing." +msgstr "%(use)s 中使用的字段 %(name)r 必须存在于视图中但缺失." + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"Field %s is not a stored field, only stored fields (regular or many2many) " +"are valid for the 'groupby' parameter" +msgstr "字段 %s 不是存储字段,只有存储字段(一般或多对多)对\"groupby\"参数有效" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Field '%(field)s' found in 'groupby' node does not exist in model %(model)s" +msgstr "在\"groupby\"节点中找到的字段\"%(field)s\"在模型 %(model)s 中不存在" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Field '%(name)s' found in 'groupby' node can only be of type many2one, found" +" %(type)s" +msgstr "在\"groupby\"节点中找到的字段\"%(name)s\"只能是 many2one 类型,找到 %(type)s" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__field_desc +msgid "Field Description" +msgstr "字段说明" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__field_groups +msgid "Field Groups" +msgstr "字段组" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__help +msgid "Field Help" +msgstr "字段帮助" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__field_description +msgid "Field Label" +msgstr "字段标签" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "Field Mappings" +msgstr "字段对应" + +#. modules: base, base_import +#: model:ir.model.fields,field_description:base.field_ir_exports_line__name +#: model:ir.model.fields,field_description:base.field_ir_model_fields__name +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__field_name +msgid "Field Name" +msgstr "字段名称" + +#. module: base +#: model:ir.module.category,name:base.module_category_services_field_service +#: model:ir.module.module,shortdesc:base.module_industry_fsm +msgid "Field Service" +msgstr "现场服务" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_forecast +msgid "Field Service - Project Forecast" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_sale +msgid "Field Service - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_report +msgid "Field Service Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_sale_report +msgid "Field Service Reports - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_industry_fsm_stock +msgid "Field Service Stock" +msgstr "" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__ttype +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__field_type +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +msgid "Field Type" +msgstr "字段类型" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Field `%(name)s` does not exist" +msgstr "字段\"%(name)s\"不存在" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_tracking_value_form +msgid "Field details" +msgstr "字段详情" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "" +"Field names can only contain characters, digits and underscores (up to 63)." +msgstr "字段名称只能包含字符、数字和下划线(最多63字符)" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_model_fields_name_unique +msgid "Field names must be unique per model." +msgstr "每个模型的字段名必须唯一." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Field tag must have a \"name\" attribute defined" +msgstr "字段标签必须定义一个\"name\"属性" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__relation_field +msgid "" +"Field used to link the related model to the subtype model when using " +"automatic subscription on a related document. The field is used to compute " +"getattr(related_document.relation_field)." +msgstr "" +"字段用于在使用相关单据的自动订阅时将相关模型链接到子类型模型。该字段用于计算GETAFTR(RelabyDo.DeffixFieldFieldfield)。" + +#. modules: mail, base +#: model:ir.actions.act_window,name:base.action_model_fields +#: model:ir.model,name:mail.model_ir_model_fields +#: model:ir.model.fields,field_description:base.field_ir_model__field_id +#: model:ir.ui.menu,name:base.ir_model_model_fields +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_selection_form +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_selection_search +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_tree +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "Fields" +msgstr "字段" + +#. module: base +#: model:ir.model,name:base.model_ir_fields_converter +msgid "Fields Converter" +msgstr "字段转换" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "Fields Description" +msgstr "字段说明" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields_selection +#: model:ir.model,name:base.model_ir_model_fields_selection +#: model:ir.ui.menu,name:base.ir_model_model_fields_selection +msgid "Fields Selection" +msgstr "字段选择" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Fields: %s" +msgstr "字段: %s" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_column__figure_type #: model:ir.model.fields,field_description:account.field_account_report_expression__figure_type msgid "Figure Type" msgstr "人物类型" -#. module: mrp +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "斐济" + +#. modules: base, base_import +#: model:ir.model.fields,field_description:base.field_base_language_export__data +#: model:ir.model.fields,field_description:base.field_base_language_import__data +#: model:ir.model.fields,field_description:base_import.field_base_import_import__file +#: model:ir.model.fields.selection,name:base.selection__ir_attachment__type__binary +msgid "File" +msgstr "文件" + +#. module: base +#. odoo-python +#: code:addons/base/wizard/base_import_language.py:0 +#: code:addons/base/wizard/base_import_language.py:0 +#, python-format +msgid "" +"File %r not imported due to format mismatch or a malformed file. (Valid formats are .csv, .po, .pot)\n" +"\n" +"Technical Details:\n" +"%s" +msgstr "" +"由于格式不匹配或格式错误的单据,单据 %r 未导入. (有效格式为 .csv、.po、.pot)\n" +"\n" +"技术细节: \n" +"%s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "File Arch" +msgstr "文件 Arch" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "File Column" +msgstr "文件标题字段" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__datas #: model:ir.model.fields,field_description:mrp.field_mrp_document__datas msgid "File Content (base64)" msgstr "文件内容(base64)" -#. module: mrp +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__raw #: model:ir.model.fields,field_description:mrp.field_mrp_document__raw msgid "File Content (raw)" msgstr "文件内容(raw)" -#. module: mrp +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_export__format +msgid "File Format" +msgstr "单据件格式" + +#. modules: base, base_import +#: model:ir.model.fields,field_description:base.field_base_language_export__name +#: model:ir.model.fields,field_description:base.field_base_language_import__filename +#: model:ir.model.fields,field_description:base_import.field_base_import_import__file_name +msgid "File Name" +msgstr "文件名称" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__file_size #: model:ir.model.fields,field_description:mrp.field_mrp_document__file_size msgid "File Size" msgstr "文件大小" +#. module: base_import +#: model:ir.model.fields,field_description:base_import.field_base_import_import__file_type +msgid "File Type" +msgstr "文件类型" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__template_fs +#: model:ir.model.fields,help:mail.field_template_reset_mixin__template_fs +msgid "" +"File from where the template originates. Used to reset broken template." +msgstr "模板来源的文件。 用于重置损坏的模板。" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_view__arch_fs +msgid "" +"File from where the view originates.\n" +" Useful to (hard) reset broken views or to read arch from file in dev-xml mode." +msgstr "" +"视图来源的文件。\n" +" 用于(硬)重置断开的视图或以dev-xml模式从文件读取arch。" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "File size exceeds configured maximum (%s bytes)" +msgstr "文件大小超出配置的最大值 (%s bytes)" + +#. module: base +#: model:ir.model,name:base.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "控制器文件流帮助器模型" + +#. module: base_import +#: model:ir.model.fields,help:base_import.field_base_import_import__file +msgid "File to check and/or import, raw binary (not base64)" +msgstr "文件的检查或导入, 原始二进制编码(不是base64编码)" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_box/attachment_box.xml:0 +#, python-format +msgid "Files" +msgstr "文件" + #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #, python-format msgid "Files attached to the product." -msgstr "" +msgstr "附加到产品的文件" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Fill in the details of the line." -msgstr "" +msgstr "填写该行的详细信息。" -#. module: account -#: model:ir.model.fields,field_description:account.field_account_report__filter_analytic -msgid "Filter Analytic" -msgstr "过滤分析" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__filter +msgid "Filter" +msgstr "筛选" #. module: account #: model:ir.model.fields,field_description:account.field_account_report__filter_fiscal_position msgid "Filter Multivat" msgstr "过滤器多缸" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_filters__name +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +msgid "Filter Name" +msgstr "筛选名称" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_filters_name_model_uid_unique +msgid "Filter names must be unique" +msgstr "筛选名称必须是唯一的" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +msgid "Filter on my documents" +msgstr "筛选我的文件" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_package_destination__filtered_location msgid "Filtered Location" msgstr "筛选的位置" -#. modules: stock, mrp +#. modules: stock, base, mrp +#: model:ir.model,name:base.model_ir_filters +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_form +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_tree +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_unbuild_search_view #: model_terms:ir.ui.view,arch_db:stock.quant_search_view #: model_terms:ir.ui.view,arch_db:stock.view_putaway_search msgid "Filters" msgstr "筛选" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +msgid "Filters created by myself" +msgstr "我自己创建的筛选" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +msgid "Filters shared with all users" +msgstr "与所有用户共享的筛选" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +msgid "Filters visible only for one user" +msgstr "仅单人可见的筛选" + +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_view_picking_type_form +msgid "Final Validation" +msgstr "最终确认" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Finalizing current batch before interrupting..." +msgstr "在中断前完成当前批次的工作..." + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_K +msgid "Finance/Insurance" +msgstr "财务/保险" + #. module: account #: model:ir.model.fields,field_description:account.field_account_analytic_line__general_account_id #: model_terms:ir.ui.view,arch_db:account.view_account_analytic_line_filter_inherit_account @@ -13197,19 +34850,54 @@ msgstr "在标签中查找文本" msgid "Find Text in Notes" msgstr "在备注中查找文本" -#. module: mrp +#. module: base +#: model:ir.module.module,description:base.module_data_merge +#: model:ir.module.module,description:base.module_data_merge_crm +#: model:ir.module.module,description:base.module_data_merge_utm +#: model:ir.module.module,summary:base.module_data_merge +#: model:ir.module.module,summary:base.module_data_merge_crm +#: model:ir.module.module,summary:base.module_data_merge_utm +msgid "Find duplicate records and merge them" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_web_unsplash +msgid "Find free high-resolution images from Unsplash" +msgstr "从Unsplash中查找免费的高分辨率图像" + +#. module: base +#: model:ir.module.module,description:base.module_data_recycle +#: model:ir.module.module,summary:base.module_data_recycle +msgid "Find old records and archive/delete them" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/discuss_sidebar_category.js:0 +#, python-format +msgid "Find or create a channel..." +msgstr "查找或创建一个频道..." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/discuss_sidebar_category.js:0 +#, python-format +msgid "Find or start a conversation..." +msgstr "查找或开始对话..." + +#. modules: base, mrp +#: model:ir.model.fields.selection,name:base.selection__base_partner_merge_automatic_wizard__state__finished #: model:ir.model.fields.selection,name:mrp.selection__mrp_workorder__state__done #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_workorder_form_view_filter msgid "Finished" msgstr "已完工" -#. modules: quality_mrp_workorder, mrp_workorder +#. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__finished_lot_id -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_search_inherit_quality_mrp_workorder msgid "Finished Lot/Serial" msgstr "成品批次/系列" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model:ir.model.fields,field_description:mrp.field_stock_move__order_finished_lot_id #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_workorder_view_form_inherit_workorder msgid "Finished Lot/Serial Number" @@ -13260,11 +34948,41 @@ msgstr "完工产品位置" msgid "Finished Steps" msgstr "完成步骤" +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "芬兰" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fi_reports +msgid "Finland - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fi_sale +msgid "Finland - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_fi_sale +msgid "Finland Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fi +msgid "Finnish Localization" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_resequence_wizard__first_date msgid "First Date" msgstr "首次日期" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_lang__week_start +msgid "First Day of Week" +msgstr "每周开始于" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity msgid "First Entry" @@ -13275,10 +34993,10 @@ msgstr "起始分录" msgid "First Hash" msgstr "第一哈希" -#. module: stock_account -#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo -msgid "First In First Out (FIFO)" -msgstr "先进先出(FIFO)" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_install__first_lang_id +msgid "First Lang" +msgstr "母语" #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement__first_line_index @@ -13338,7 +35056,7 @@ msgstr "财务映射" msgid "Fiscal Periods" msgstr "会计期间" -#. modules: account, purchase +#. modules: purchase, account #: model:ir.model,name:account.model_account_fiscal_position #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__fiscal_position_id #: model:ir.model.fields,field_description:account.field_account_fiscal_position__name @@ -13410,7 +35128,7 @@ msgstr "会计年度的最后一天" msgid "Fiscalyear Last Month" msgstr "会计年度的最后一个月" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_line__amount_type__fixed #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_line_template__amount_type__fixed #: model:ir.model.fields.selection,name:account.selection__account_tax__amount_type__fixed @@ -13430,19 +35148,58 @@ msgstr "固定金额" msgid "Fixed Assets" msgstr "固定资产" +#. module: base +#: model:ir.module.module,shortdesc:base.module_fixed_header_list +msgid "Fixed Header List View" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_fixed_header_list +msgid "" +"Fixed Header List View is very useful for displaying list headers within " +"Odoo." +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_rule__group_id msgid "Fixed Procurement Group" msgstr "固定的补货组" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__image_url +msgid "Flag" +msgstr "标记" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_lang__flag_image_url +msgid "Flag Image Url" +msgstr "标记图像网址" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_fleet +#: model:ir.module.module,shortdesc:base.module_fleet +msgid "Fleet" +msgstr "车队" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_fleet +msgid "Fleet History" +msgstr "车队历程" + +#. module: base +#: model:ir.module.module,summary:base.module_documents_fleet +msgid "Fleet from documents" +msgstr "" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_bom__consumption msgid "Flexible Consumption" msgstr "灵活消耗" -#. module: account +#. modules: base, account #: model:ir.model.fields.selection,name:account.selection__account_report_column__figure_type__float #: model:ir.model.fields.selection,name:account.selection__account_report_expression__figure_type__float +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__float msgid "Float" msgstr "浮动" @@ -13451,21 +35208,27 @@ msgstr "浮动" msgid "Float Amount" msgstr "浮动金额" +#. module: base +#: model:ir.module.module,summary:base.module_theme_orchid +msgid "Florist, Gardens, Flowers, Nature, Green, Beauty, Stores" +msgstr "" + #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/xml/stock_traceability_report_line.xml:0 #: code:addons/stock/static/src/xml/stock_traceability_report_line.xml:0 #, python-format msgid "Fold" -msgstr "" +msgstr "收拢" #. module: account #: model:ir.model.fields,field_description:account.field_account_report_line__foldable msgid "Foldable" msgstr "可折叠的" -#. module: quality +#. modules: mail, quality #: model:ir.model.fields,field_description:quality.field_quality_alert_stage__folded +#: model:ir.model.fields.selection,name:mail.selection__mail_channel_member__fold_state__folded msgid "Folded" msgstr "收起" @@ -13475,6 +35238,18 @@ msgstr "收起" msgid "Folded in Maintenance Pipe" msgstr "在保养管道中折叠" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__folio +msgid "Folio 27 210 x 330 mm" +msgstr "Folio 27 210 x 330 毫米" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/follow_button/follow_button.xml:0 +#, python-format +msgid "Follow" +msgstr "关注" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Follow Customer Payments" @@ -13491,7 +35266,8 @@ msgid "" "Follow the process of the request and communicate with the collaborator." msgstr "跟进请求的处理,并且和合作者沟通。" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance +#: model:ir.actions.act_window,name:mail.action_view_followers #: model:ir.model.fields,field_description:account.field_account_account__message_follower_ids #: model:ir.model.fields,field_description:account.field_account_account_template__message_follower_ids #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_follower_ids @@ -13502,6 +35278,13 @@ msgstr "跟进请求的处理,并且和合作者沟通。" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_follower_ids #: model:ir.model.fields,field_description:account.field_res_company__message_follower_ids #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_res_partner__message_follower_ids +#: model:ir.model.fields,field_description:mail.field_res_users__message_follower_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_follower_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_follower_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_follower_ids @@ -13516,10 +35299,12 @@ msgstr "跟进请求的处理,并且和合作者沟通。" #: model:ir.model.fields,field_description:stock.field_stock_lot__message_follower_ids #: model:ir.model.fields,field_description:stock.field_stock_picking__message_follower_ids #: model:ir.model.fields,field_description:stock.field_stock_scrap__message_follower_ids +#: model:ir.ui.menu,name:mail.menu_email_followers +#: model_terms:ir.ui.view,arch_db:mail.view_followers_tree msgid "Followers" msgstr "关注者" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_partner_ids #: model:ir.model.fields,field_description:account.field_account_account_template__message_partner_ids #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_partner_ids @@ -13530,6 +35315,13 @@ msgstr "关注者" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_partner_ids #: model:ir.model.fields,field_description:account.field_res_company__message_partner_ids #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_res_partner__message_partner_ids +#: model:ir.model.fields,field_description:mail.field_res_users__message_partner_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_partner_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_partner_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_partner_ids @@ -13547,13 +35339,48 @@ msgstr "关注者" msgid "Followers (Partners)" msgstr "关注者(业务伙伴)" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_subscription_form +msgid "Followers Form" +msgstr "关注者表单" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Followers of" +msgstr "关注者" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_alias__alias_contact__followers +msgid "Followers only" +msgstr "仅关注者" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/follow_button_view.js:0 +#, python-format +msgid "Following" +msgstr "正在关注中" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__font +msgid "Font" +msgstr "字体" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,help:account.field_account_bank_statement_line__activity_type_icon #: model:ir.model.fields,help:account.field_account_journal__activity_type_icon #: model:ir.model.fields,help:account.field_account_move__activity_type_icon #: model:ir.model.fields,help:account.field_account_payment__activity_type_icon #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__activity_type_icon #: model:ir.model.fields,help:account.field_res_partner_bank__activity_type_icon +#: model:ir.model.fields,help:mail.field_mail_activity__icon +#: model:ir.model.fields,help:mail.field_mail_activity_mixin__activity_type_icon +#: model:ir.model.fields,help:mail.field_mail_activity_type__icon +#: model:ir.model.fields,help:mail.field_res_partner__activity_type_icon +#: model:ir.model.fields,help:mail.field_res_users__activity_type_icon #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__activity_type_icon #: model:ir.model.fields,help:maintenance.field_maintenance_request__activity_type_icon #: model:ir.model.fields,help:mrp.field_mrp_production__activity_type_icon @@ -13567,6 +35394,44 @@ msgstr "关注者(业务伙伴)" msgid "Font awesome icon e.g. fa-tasks" msgstr "完美的图标,例如FA任务" +#. module: base +#: model:ir.module.category,name:base.module_category_theme_food +msgid "Food" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Food & Drink" +msgstr "食品和饮料" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_I +msgid "Food/Hospitality" +msgstr "食物/招待" + +#. module: base +#: model:ir.model.fields,help:base.field_res_company__report_footer +msgid "Footer text displayed at the bottom of all reports." +msgstr "显示在所有报告下方的页脚文字。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"For %(channels)s, channel_type should be 'channel' to have the group-based " +"authorization or group auto-subscription." +msgstr "对于 %(channels)s,channel_type应为“通道”,以获得基于组的授权或组自动订阅。" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "For CSV files, you may need to select the correct separator." +msgstr "对于 CSV 格式的文件, 您可能需要选择正确的分隔符." + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_payment_term_form msgid "" @@ -13576,12 +35441,42 @@ msgstr "" "对于\n" " 的任何发票" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "" +"For more details about translating Odoo in your language, please refer to " +"the" +msgstr "更多关于翻译Odoo的详细信息,请参见" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__relation_field +msgid "" +"For one2many fields, the field on the target model that implement the " +"opposite many2one relationship" +msgstr "对于一对多的字段,此字段在目标模型是实现了相反的多对一关系" + #. module: account #: model:ir.model.fields,help:account.field_account_payment_term_line__value_amount msgid "For percent enter a ratio between 0-100." msgstr "输入一个从0-100的百分比." +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__relation +msgid "For relationship fields, the technical name of the target model" +msgstr "对于关系字段,目标模型的技术名称" + +#. module: base +#. odoo-python +#: code:addons/base/wizard/base_partner_merge.py:0 +#: code:addons/base/wizard/base_partner_merge.py:0 +#, python-format +msgid "" +"For safety reasons, you cannot merge more than 3 contacts together. You can " +"re-open the wizard several times if needed." +msgstr "出于安全原因,您不能在一起合并超过 3 联系人.如果需要 您可以重新打开该向导几次." + #. module: purchase_stock +#. odoo-python #: code:addons/purchase_stock/models/purchase.py:0 #, python-format msgid "" @@ -13591,6 +35486,7 @@ msgid "" msgstr "对于产品%s,作业类型(%s)的仓库与重新排序规则(%s)的位置(%s)不一致。改变作业类型或取消报价请求。" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "For this entry to be automatically posted, it required a bill date." @@ -13611,17 +35507,57 @@ msgstr "在非负责任的销售报价行中禁止的产品,计数和单位" msgid "Forbidden values on non-accountable purchase order line" msgstr "禁止在不可计算的采购订单行项上有值" -#. modules: account, mrp +#. modules: mrp, account #: model:ir.model.fields,field_description:account.field_validate_account_move__force_post #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_consumption_warning_form msgid "Force" msgstr "强制" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__restrict_scan_dest_location +msgid "Force Destination Location scan?" +msgstr "" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__restrict_scan_tracking_number +msgid "Force Lot/Serial scan?" +msgstr "" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__restrict_scan_product +msgid "Force Product scan?" +msgstr "" + #. module: stock #: model:ir.model.fields,field_description:stock.field_product_category__removal_strategy_id msgid "Force Removal Strategy" msgstr "强制下架策略" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_message_schedule_view_form +msgid "Force Send" +msgstr "强制发送" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__restrict_scan_source_location +msgid "Force Source Location scan?" +msgstr "" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__barcode_validation_after_dest_location +msgid "Force a destination on all products" +msgstr "" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__barcode_validation_all_product_packed +msgid "Force all products to be packed" +msgstr "" + +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_picking_type__restrict_put_in_pack +msgid "Force put in pack?" +msgstr "" + #. module: account #: model:ir.model.fields,help:account.field_account_reconcile_model_line__force_tax_included #: model:ir.model.fields,help:account.field_account_reconcile_model_line_template__force_tax_included @@ -13656,8 +35592,8 @@ msgstr "预测可用性" msgid "Forecast Description" msgstr "预测说明" -#. modules: purchase_stock, stock, mrp -#. openerp-web +#. modules: stock, mrp, purchase_stock +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_line/mrp_bom_overview_line.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:purchase_stock.purchase_order_view_form_inherit @@ -13695,7 +35631,7 @@ msgstr "" "否则,这包括存储在‘内部’类型的任何库存位置的货物。" #. modules: stock, mrp -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_header.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_form_view_inherit #: model_terms:ir.ui.view,arch_db:stock.product_product_stock_tree @@ -13704,11 +35640,11 @@ msgid "Forecasted" msgstr "预测" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/widgets/json_widget.xml:0 #, python-format msgid "Forecasted Date" -msgstr "" +msgstr "预测的日期" #. module: stock #: model:ir.model.fields.selection,name:stock.selection__report_stock_quantity__state__out @@ -13721,19 +35657,20 @@ msgid "Forecasted Expected date" msgstr "预测的预计日期" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Forecasted Inventory" -msgstr "" +msgstr "预测库存" -#. modules: purchase_stock, mrp +#. modules: mrp, purchase_stock #: model:ir.model.fields,field_description:mrp.field_mrp_production__forecasted_issue #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order_line__forecasted_issue msgid "Forecasted Issue" msgstr "预测的问题" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #: model:ir.model.fields,field_description:stock.field_product_product__virtual_available #: model:ir.model.fields,field_description:stock.field_product_template__virtual_available @@ -13749,9 +35686,11 @@ msgid "Forecasted Receipts" msgstr "预测的收货" #. module: stock -#. openerp-web +#. odoo-javascript +#: code:addons/stock/static/src/stock_forecasted/stock_forecasted.js:0 #: code:addons/stock/static/src/widgets/forecast_widget.xml:0 #: model:ir.actions.client,name:stock.stock_replenishment_product_product_action +#: model:ir.actions.client,name:stock.stock_replenishment_product_template_action #, python-format msgid "Forecasted Report" msgstr "预测报告" @@ -13767,11 +35706,11 @@ msgid "Forecasted Weight" msgstr "预测的重量" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Forecasted with Pending" -msgstr "" +msgstr "包含待定的预测" #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__foreign_currency_id @@ -13789,23 +35728,69 @@ msgid "Foreign Vat Header Mode" msgstr "国外增值税表头模式" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Foreign account (%s)" msgstr "国外账户 (%s)" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Foreign tax account (%s)" msgstr "外国税务账户 (%s)" -#. module: stock +#. module: base +#: model_terms:ir.ui.view,arch_db:base.identity_check_wizard +msgid "Forgot password?" +msgstr "忘记密码?" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__form +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__form +#: model_terms:ir.ui.view,arch_db:base.view_view_search +msgid "Form" +msgstr "表单" + +#. modules: stock, base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:stock.field_lot_label_layout__print_format #: model:ir.model.fields,field_description:stock.field_product_label_layout__print_format +#, python-format msgid "Format" msgstr "格式" +#. module: base +#: model:ir.model.fields,help:base.field_res_partner__email_formatted +#: model:ir.model.fields,help:base.field_res_users__email_formatted +msgid "Format email address \"Name \"" +msgstr "邮箱格式“名称”" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_res_partner__email_formatted +#: model:ir.model.fields,field_description:base.field_res_users__email_formatted +#: model:ir.model.fields,field_description:mail.field_res_company__email_formatted +msgid "Formatted Email" +msgstr "格式化的邮件" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Formatting" +msgstr "格式化" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Formatting: long, short, narrow (not used for digital)" +msgstr "格式: 长、短、窄(不适用于数字)" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_expression__formula msgid "Formula" @@ -13823,17 +35808,100 @@ msgstr "" "line_code.expression_label 形式的公式。这允许设置此表达式的结转目标(在带有 _carryover_* " "标记的表达式上),以防它与父行不同。如果结转目的地需要更复杂的逻辑,也允许“自定义”作为值." +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_forum +msgid "Forum" +msgstr "论坛" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_slides_forum +msgid "Forum on Courses" +msgstr "课程论坛" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "" +"Found invalid image data, images should be imported as either URLs or " +"base64-encoded data." +msgstr "发现无效的图像数据,图像应该用URL或 base64编码的数据来导入。" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"Found more than 10 errors and more than one error per 10 records, " +"interrupted to avoid showing too many errors." +msgstr "找到超过10个错误,每10条记录超过1个错误,中断避免显示太多错误." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"Found multiple matches for value '%s' in field '%%(field)s' (%d matches)" +msgstr "在字段\"%%(field)s\"中找到值\"%s\"的多个匹配项(%d 个匹配项)" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "法国" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr +msgid "France - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_reports +msgid "France - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_fec +msgid "France - FEC Export" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_fec_import +msgid "France - FEC Import" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_facturx_chorus_pro +msgid "France - Factur-X integration with Chorus Pro" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_hr_payroll_account +msgid "France - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_pos_cert +msgid "" +"France - VAT Anti-Fraud Certification for Point of Sale (CGI 286 I-3 bis)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_loyalty_delivery +msgid "Free Delivery with Coupon & Loyalty on eCommerce" +msgstr "在电子商务上免费发送优惠券和会员" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_replenishment_option__free_qty msgid "Free Qty" msgstr "可用数量" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Free Stock" -msgstr "" +msgstr "清库存" #. module: stock #: model:ir.model.fields,field_description:stock.field_product_product__free_qty @@ -13841,7 +35909,7 @@ msgid "Free To Use Quantity " msgstr "释放以使用数量" #. modules: stock, mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model_terms:ir.ui.view,arch_db:stock.product_product_stock_tree #, python-format @@ -13849,13 +35917,49 @@ msgid "Free to Use" msgstr "免费使用" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom #, python-format msgid "Free to Use / On Hand" msgstr "自由使用 / 在手" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "French" +msgstr "法国" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guiana" +msgstr "法属圭亚那" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_fr_hr_payroll +msgid "French Payroll" +msgstr "" + +#. module: base +#: model:res.country,name:base.pf +msgid "French Polynesia" +msgstr "法属玻里尼西亚" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "法国南部地区" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "French stick" +msgstr "法棍" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_point_view_form_inherit_quality_control msgid "Frequency" @@ -13866,8 +35970,26 @@ msgstr "频率" msgid "Frequency Unit Value" msgstr "频率单位值" -#. modules: account, stock, mrp +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_lang__week_start__5 +msgid "Friday" +msgstr "周五" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Frisbee" +msgstr "飞盘" + +#. modules: account, mail, base, stock, mrp #: model:ir.model.fields,field_description:account.field_account_invoice_send__email_from +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__date_from +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__email_from +#: model:ir.model.fields,field_description:mail.field_mail_mail__email_from +#: model:ir.model.fields,field_description:mail.field_mail_message__email_from +#: model:ir.model.fields,field_description:mail.field_mail_template__email_from +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__email_from #: model:ir.model.fields,field_description:stock.field_stock_move_line__location_id #: model:ir.model.fields,field_description:stock.field_stock_package_level__location_id #: model_terms:ir.ui.view,arch_db:account.view_account_group_form @@ -13880,6 +36002,27 @@ msgstr "频率单位值" msgid "From" msgstr "从" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_participant_card_popover_content_view.js:0 +#, python-format +msgid "From %(name)s: %(candidateType)s (%(protocol)s)" +msgstr "从%(name)s:%(candidateType)s (%(protocol)s)" + +#. module: purchase +#. odoo-python +#: code:addons/purchase/models/account_invoice.py:0 +#, python-format +msgid "From %s document" +msgstr "从%s文件" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_participant_card_popover_content_view.js:0 +#, python-format +msgid "From %s: no connection" +msgstr "从%s:无连接" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter msgid "From Non Trade Receivable accounts" @@ -13910,6 +36053,12 @@ msgstr "来自贸易应付账款" msgid "From Trade Receivable accounts" msgstr "来自贸易应收账款" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_res_partner_bank_account_form +msgid "" +"From here you can manage all bank accounts linked to you and your contacts." +msgstr "从这里您可以管理与您和您的联系人相关联的所有银行账户." + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_line__amount_type__regex #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_line_template__amount_type__regex @@ -13921,6 +36070,11 @@ msgstr "来自标签" msgid "From previous tax period" msgstr "从上一个纳税期开始" +#. module: base +#: model:ir.module.module,summary:base.module_sale_management +msgid "From quotations to invoices" +msgstr "从报价到结算单" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_expression__date_scope__from_fiscalyear msgid "From the start of the fiscal year" @@ -13947,11 +36101,38 @@ msgid "" "reports and so, match this analysis to your needs." msgstr "从这个报告中,您可以得到一个总的客户的结算单总额。搜索功能也能用来个性化您的结算单报告等,例如根据您的需要匹配分析会计项." +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Fuji" +msgstr "富士" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +msgid "Full Access" +msgstr "完全访问" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +msgid "Full Access Right" +msgstr "完全访问权限" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__complete_name msgid "Full Location Name" msgstr "完整的位置名称" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner_industry__full_name +msgid "Full Name" +msgstr "完整名称" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__complete_name +msgid "Full Path" +msgstr "全路径" + #. module: account #: model:ir.model,name:account.model_account_full_reconcile #: model:ir.model.fields,field_description:account.field_account_partial_reconcile__full_reconcile_id @@ -13963,11 +36144,36 @@ msgstr "完全调节" msgid "Full Refund" msgstr "全部退款" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__fullscreen +#: model:ir.model.fields.selection,name:base.selection__ir_actions_client__target__fullscreen +msgid "Full Screen" +msgstr "全屏" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_purchase_mrp_workorder_quality +#: model:ir.module.module,summary:base.module_purchase_mrp_workorder_quality +msgid "Full Traceability Report Demo Data" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#: code:addons/mail/static/src/components/composer/composer.xml:0 +#, python-format +msgid "Full composer" +msgstr "完全创建者" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_move_reversal__refund_method__modify msgid "Full refund and new draft invoice" msgstr "全部退款并创建新的草稿结算单" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_channel__default_display_mode__video_full_screen +msgid "Full screen video" +msgstr "全屏视频" + #. module: purchase #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__invoiced msgid "Fully Billed" @@ -13983,9 +36189,28 @@ msgstr "全部生产力" msgid "Fully Received" msgstr "完成接收" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_logging__func +msgid "Function" +msgstr "函数" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_loftspace +msgid "Furniture, Toys, Games, Kids, Boys, Girls, Stores" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 +#, python-format +msgid "Future" +msgstr "未来" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter #: model_terms:ir.ui.view,arch_db:account.view_account_payment_search +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +#: model_terms:ir.ui.view,arch_db:mail.res_partner_view_search_inherit_mail #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search #: model_terms:ir.ui.view,arch_db:mrp.mrp_unbuild_search_view @@ -13998,29 +36223,99 @@ msgid "Future Activities" msgstr "未来活动" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Future Deliveries" msgstr "未来交货" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Future P&L" msgstr "未来的损益" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Future Productions" msgstr "未来生产" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Future Receipts" msgstr "未来收货" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_G +msgid "" +"G - WHOLESALE AND RETAIL TRADE; REPAIR OF MOTOR VEHICLES AND MOTORCYCLES" +msgstr "G - 批发和零售业;机动车和摩托车修理" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_gcc_invoice +msgid "G.C.C. - Arabic/English Invoice" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__gpl-2 +msgid "GPL Version 2" +msgstr "GPL版本2" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__gpl-3 +msgid "GPL Version 3" +msgstr "GPL版本3" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__gpl-2_or_any_later_version +msgid "GPL-2 or later version" +msgstr "GPL-2及更新版本" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__gpl-3_or_any_later_version +msgid "GPL-3 or later version" +msgstr "GPL-3及更高版本" + +#. module: base +#: model:res.country,vat_label:base.sg +msgid "GST No." +msgstr "购物交易的商品及服务税(GST)号." + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_pos +msgid "GST Point of Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_purchase +msgid "GST Purchase Report" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_sale +msgid "GST Sale Report" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_in_stock +msgid "GST Stock Report" +msgstr "" + +#. module: base +#: model:res.country,vat_label:base.in +msgid "GSTIN" +msgstr "" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "加彭共和国" + #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__income_currency_exchange_account_id msgid "Gain Account" @@ -14032,6 +36327,27 @@ msgstr "增益账户" msgid "Gain Exchange Rate Account" msgstr "汇率增益科目" +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "甘比亚共和国" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_gamification +msgid "Gamification" +msgstr "游戏化" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__gantt +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__gantt +msgid "Gantt" +msgstr "甘特图" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_holidays_gantt +msgid "Gantt view for Time Off Dashboard" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_reconcile_model__payment_tolerance_param #: model:ir.model.fields,field_description:account.field_account_reconcile_model_line__payment_tolerance_param @@ -14039,29 +36355,97 @@ msgstr "汇率增益科目" msgid "Gap" msgstr "差额" -#. module: mrp +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_message_view_form +msgid "Gateway" +msgstr "网关" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_web_kanban_gauge +msgid "Gauge Widget for Kanban" +msgstr "看板的测量小工具" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Gemini" +msgstr "双子座" + +#. modules: base, stock_barcode +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_view_picking_type_form +msgid "General" +msgstr "通用" + +#. modules: base, mrp +#: model_terms:ir.ui.view,arch_db:base.view_company_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view msgid "General Information" msgstr "基本信息" +#. module: base +#: model:ir.ui.menu,name:base.menu_config +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form +msgid "General Settings" +msgstr "一般设置" + #. module: account #: model:ir.ui.menu,name:account.menu_finance_entries_generate_entries msgid "Generate Entries" msgstr "生成分录" +#. module: base +#: model:ir.module.module,summary:base.module_crm_iap_mine +msgid "Generate Leads/Opportunities based on country, industries, size, etc." +msgstr "根据国家、行业、规模等创建潜在客户/机会." + +#. module: base +#: model:ir.module.module,summary:base.module_website_crm_iap_reveal +msgid "Generate Leads/Opportunities from your website's traffic" +msgstr "从您网站的流量中创建潜在客户/机会" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_assign_serial_numbers_production msgid "Generate Serial Numbers" msgstr "生成序列号" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description +msgid "Generate key" +msgstr "生成密钥" + +#. module: base +#: model:ir.module.module,summary:base.module_website_crm +msgid "Generate leads from a contact form" +msgstr "从联系表单创建线索" + +#. module: base +#: model:ir.module.module,summary:base.module_appointment_crm +msgid "Generate leads when prospects schedule appointments" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_subscription +msgid "Generate recurring invoices and manage renewals" +msgstr "创建周期结算单并管理续订" + #. module: purchase_stock -#. openerp-web +#. odoo-javascript #: code:addons/purchase_stock/static/src/js/tours/purchase_stock.js:0 #, python-format msgid "Generate the draft vendor bill." -msgstr "" +msgstr "生成供应商草稿账单。" + +#. module: base +#: model:ir.module.module,summary:base.module_website_links +msgid "Generate trackable & short URLs" +msgstr "创建可跟踪的 & 短连结URLs" #. module: account +#. odoo-python #: code:addons/account/models/account_journal.py:0 #: code:addons/account/wizard/account_tour_upload_bill.py:0 #, python-format @@ -14069,31 +36453,151 @@ msgid "Generated Documents" msgstr "已生成文档" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "Generated Entries" msgstr "生成的分录" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_property_view_search +msgid "Generic" +msgstr "一般" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_generic_coa +msgid "Generic - Accounting" +msgstr "" + #. module: account #: model:account.report,name:account.generic_tax_report msgid "Generic Tax report" msgstr "一般税务报告" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__activity_user_type__generic +msgid "Generic User From Record" +msgstr "记录显示为一般用户" + +#. module: base +#: model:ir.module.module,description:base.module_account_bank_statement_import +msgid "" +"Generic Wizard to Import Bank Statements.\n" +"\n" +"(This module does not include any type of import format.)\n" +"\n" +"OFX and QIF imports are available in Enterprise version." +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__partner_latitude +#: model:ir.model.fields,field_description:base.field_res_users__partner_latitude +msgid "Geo Latitude" +msgstr "地理纬度" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__partner_longitude +#: model:ir.model.fields,field_description:base.field_res_users__partner_longitude +msgid "Geo Longitude" +msgstr "地理经度" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__layout_background__geometric +msgid "Geometric" +msgstr "几何" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "乔治亚" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "德国" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de +msgid "Germany - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_reports +msgid "Germany - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_pos_cert +msgid "Germany - Certification for Point of Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_pos_res_cert +msgid "Germany - Certification for Point of Sale of type restaurant" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_datev_reports +msgid "Germany - DateV Export" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_skr03 +msgid "Germany SKR03 - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_de_skr04 +msgid "Germany SKR04 - Accounting" +msgstr "" + #. module: purchase #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_double_validation__two_step msgid "Get 2 levels of approvals to confirm a purchase order" msgstr "2级审批确认采购订单" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Get Gmail API credentials" +msgstr "获得Gmail API凭据" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Get Outlook API credentials" +msgstr "获得Outlook API 凭据" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Get a full traceability from vendors to customers" msgstr "从供应商到客户获得全面的追溯性" +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_dashboard +msgid "Get a new dashboard view in the Website App" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_social_demo +msgid "Get demo data for the social module" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_social_demo +msgid "" +"Get demo data for the social module.\n" +" This module creates a social 'sandbox' where you can play around with the social app without publishing anything on actual social media." +msgstr "" + #. module: account #: model:ir.model,name:account.model_report_account_report_hash_integrity msgid "Get hash integrity result as PDF." msgstr "获取哈希完整结果导出为PDF。" +#. module: base +#: model:ir.module.module,summary:base.module_hr_fleet +msgid "Get history of driven cars by employees" +msgstr "获取员工驾驶汽车的历史记录" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Get informative or blocking warnings on partners" @@ -14104,6 +36608,11 @@ msgstr "基于合作伙伴获取信息或者阻塞警告" msgid "Get statistics about the work orders duration related to this routing." msgstr "获取有关与此工艺路线相关的工单工期的统计信息。" +#. module: base +#: model:ir.module.module,summary:base.module_website_enterprise +msgid "Get the enterprise look and feel" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "Get warnings in orders for products or vendors" @@ -14114,6 +36623,16 @@ msgstr "产品限制或供应商限制会在订单中做出提醒" msgid "Get warnings when invoicing specific customers" msgstr "在给特定的客户开开票单时的警告" +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "加纳" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "直布罗陀" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_putaway_rule__sequence msgid "" @@ -14152,32 +36671,94 @@ msgstr "显示工作中心列表时显示顺序。" msgid "Gives the sequence order when displaying." msgstr "在显示时给出顺序." +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_rule__global +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +msgid "Global" +msgstr "全局" + +#. module: stock +#. odoo-python +#: code:addons/stock/models/stock_rule.py:0 +#, python-format +msgid "Global Visibility Days" +msgstr "全局可见天数" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "" +"Global rules (non group-specific) are restrictions, and cannot be bypassed.\n" +" Group-specific rules grant additional permissions, but are constrained within the bounds of global ones.\n" +" The first group rules restrict further the global rules, but can be relaxed by additional group rules." +msgstr "" +"一般规则 (没有指定组)是强制的,不能被略过.\n" +" 群组规则授予额外的许可,但是约束在全局规则的范围内.\n" +" 第一个群组规则进一步限制了全局规则,但是任何附加组规则将增加更多权限." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "" +"Global rules are combined together with a logical AND operator, and with the" +" result of the following steps" +msgstr "一般规则使用逻辑与AND操作符组合在一起,以及下面步骤的结果" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Gmail Credentials" +msgstr "Gmail 凭据" + +#. module: base +#: model:ir.module.module,description:base.module_google_gmail +msgid "Gmail support for incoming / outgoing mail servers" +msgstr "" + #. module: purchase_stock -#. openerp-web +#. odoo-javascript #: code:addons/purchase_stock/static/src/js/tours/purchase_stock.js:0 #, python-format msgid "Go back to the purchase order to generate the vendor bill." -msgstr "" +msgstr "返回采购订单生成供应商账单。" -#. module: account +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Go to Import FAQ" +msgstr "转至导入常见问题" + +#. modules: base, account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: code:addons/account/models/company.py:0 +#: code:addons/base/models/res_config.py:0 +#: code:addons/base/models/res_config.py:0 #, python-format msgid "Go to the configuration panel" msgstr "至配置面板" +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "Go to users" +msgstr "转至用户" + #. module: account #: model:ir.model.fields.selection,name:account.selection__res_partner__trust__good msgid "Good Debtor" msgstr "信用好的债务人" #. module: mrp_workorder -#. openerp-web +#. odoo-javascript #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #: code:addons/mrp_workorder/static/src/components/summary_step.xml:0 #, python-format msgid "Good Job!" -msgstr "" +msgstr "干得好!" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_tax__tax_scope__consu @@ -14185,54 +36766,112 @@ msgstr "" msgid "Goods" msgstr "商品" +#. module: base +#: model:ir.module.module,shortdesc:base.module_google_calendar +msgid "Google Calendar" +msgstr "Google日历" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_google_gmail +msgid "Google Gmail" +msgstr "谷歌Gmail" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_google_map +msgid "Google Maps" +msgstr "Google 地图" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_routing_workcenter__worksheet_google_slide #: model:ir.model.fields.selection,name:mrp.selection__mrp_routing_workcenter__worksheet_type__google_slide msgid "Google Slide" msgstr "谷歌幻灯片" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp.mrp_routing_workcenter_form_view #: model_terms:ir.ui.view,arch_db:mrp_workorder.quality_point_view_form_inherit_mrp msgid "Google Slide Link" msgstr "谷歌幻灯片链接" #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/views/fields/google_slides_viewer.js:0 #, python-format msgid "Google Slides Viewer" -msgstr "" +msgstr "Google幻灯片浏览器" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_google_account +msgid "Google Users" +msgstr "Google用户" #. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_quality_point__worksheet_url msgid "Google doc URL" msgstr "" -#. module: mrp_workorder -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_2 -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_2_radio -msgid "Green" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_autocomplete +msgid "Google places autocompletion" +msgstr "谷歌放置自动完成" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_google_recaptcha +msgid "Google reCAPTCHA integration" +msgstr "Google reCAPTCHA 集成" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__graph +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__graph +msgid "Graph" +msgstr "图形" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_graphene +msgid "Graphene Theme" msgstr "" -#. module: mrp_workorder -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_3 -#: model:product.template.attribute.value,name:mrp_workorder.product_attribute_value_3_radio -msgid "Grey" +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "希腊" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_gr +msgid "Greece - Accounting" msgstr "" +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "格陵兰岛" + +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "格瑞那达" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_web_grid +msgid "Grid View" +msgstr "矩阵视图" + #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_report__weight msgid "Gross Weight" msgstr "毛重" -#. module: account +#. modules: mail, base, account #: model:ir.model.fields,field_description:account.field_account_account__group_id +#: model:ir.model.fields,field_description:base.field_ir_model_access__group_id +#: model:ir.model.fields.selection,name:mail.selection__mail_channel__channel_type__group +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.view_groups_search msgid "Group" msgstr "群组" -#. modules: purchase, mrp, sale_management, stock, quality, quality_control, -#. account +#. modules: purchase, quality_control, sale_management, account, quality, +#. mail, base, stock, mrp #: model:ir.model.fields,field_description:account.field_account_report_line__groupby #: model_terms:ir.ui.view,arch_db:account.account_tax_group_view_search #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter @@ -14242,6 +36881,25 @@ msgstr "群组" #: model_terms:ir.ui.view,arch_db:account.view_account_search #: model_terms:ir.ui.view,arch_db:account.view_account_tax_search #: model_terms:ir.ui.view,arch_db:account.view_bank_statement_search +#: model_terms:ir.ui.view,arch_db:base.act_report_xml_search_view +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_default_search_view +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_logging_search_view +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +#: model_terms:ir.ui.view,arch_db:base.view_country_state_search +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_search +#: model_terms:ir.ui.view,arch_db:base.view_model_data_search +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +#: model_terms:ir.ui.view,arch_db:base.view_server_action_search +#: model_terms:ir.ui.view,arch_db:base.view_view_search +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_workorder_form_view_filter #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search @@ -14272,12 +36930,27 @@ msgstr "分组" msgid "Group By..." msgstr "分组" +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_res_groups__full_name +#: model_terms:ir.ui.view,arch_db:base.view_country_group_form +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_form +msgid "Group Name" +msgstr "群组名称" + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment_register__group_payment msgid "Group Payments" msgstr "团体付款" -#. modules: maintenance, stock, stock_account, mrp +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_mail_channel_group_public_id_check +msgid "" +"Group authorization and group auto-subscription are only supported on " +"channels." +msgstr "仅频道支持群组授权和群组自动订阅。" + +#. modules: stock, mail, maintenance, mrp +#: model_terms:ir.ui.view,arch_db:mail.view_email_template_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_category_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search @@ -14286,7 +36959,6 @@ msgstr "团体付款" #: model_terms:ir.ui.view,arch_db:stock.quant_package_search_view #: model_terms:ir.ui.view,arch_db:stock.quant_search_view #: model_terms:ir.ui.view,arch_db:stock.view_stock_rule_filter -#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search msgid "Group by..." msgstr "分组…" @@ -14300,6 +36972,16 @@ msgstr "分组方式:账户 > 税收 " msgid "Group by: Tax > Account " msgstr "分组方式:税务 > 账户 " +#. module: base +#: model:ir.model.fields,help:base.field_res_groups__share +msgid "Group created to set access rights for sharing data with some users." +msgstr "为设置一些用户的共享数据访问权所创建的用户群组." + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__number_group +msgid "Group of Contacts" +msgstr "联系人组" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_tax__amount_type__group #: model:ir.model.fields.selection,name:account.selection__account_tax_template__amount_type__group @@ -14316,7 +36998,13 @@ msgstr "把付款归为一批以简化对账处理过程" msgid "Group your move operations in wave transfer to process them together" msgstr "将您的调拨作业以波浪式传输分组,以便一起处理它们" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "Group-specific rules are combined together with a logical OR operator" +msgstr "指定了群组的规则使用逻辑操作符或(OR)组合在一起" + #. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "" @@ -14324,26 +37012,224 @@ msgid "" "groupby value on '%s'" msgstr "聚合引擎不支持 Groupby 功能。请删除“%s”上的 groupby 值" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#, python-format +msgid "Grouped Chat" +msgstr "群聊" + +#. modules: mail, base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__groups_id +#: model:ir.model.fields,field_description:base.field_ir_actions_report__groups_id +#: model:ir.model.fields,field_description:base.field_ir_actions_server__groups_id +#: model:ir.model.fields,field_description:base.field_ir_cron__groups_id +#: model:ir.model.fields,field_description:base.field_ir_model_fields__groups +#: model:ir.model.fields,field_description:base.field_ir_rule__groups +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__groups_id +#: model:ir.model.fields,field_description:base.field_ir_ui_view__groups_id +#: model:ir.model.fields,field_description:base.field_res_users__groups_id +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: model_terms:ir.ui.view,arch_db:base.view_groups_form +#: model_terms:ir.ui.view,arch_db:base.view_groups_search +#: model_terms:ir.ui.view,arch_db:base.view_users_form +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_tree +#, python-format +msgid "Groups" +msgstr "用户组" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "Groups (no group = global)" +msgstr "群组 (无群组 = 一般)" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report__filter_growth_comparison msgid "Growth Comparison" msgstr "增长比较" +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe" +msgstr "瓜地洛普" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam" +msgstr "关岛" + +#. module: base +#: model:res.country,name:base.gt +msgid "Guatemala" +msgstr "瓜地马拉" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_gt +msgid "Guatemala - Accounting" +msgstr "" + +#. module: base +#: model:res.country,name:base.gg +msgid "Guernsey" +msgstr "根西岛" + +#. module: mail +#. odoo-python +#: code:addons/mail/controllers/discuss.py:0 +#: model:ir.model,name:mail.model_mail_guest +#: model:ir.model.fields,field_description:mail.field_bus_presence__guest_id +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__guest_id +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__guest_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__author_guest_id +#: model:ir.model.fields,field_description:mail.field_mail_message__author_guest_id +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__guest_id +#, python-format +msgid "Guest" +msgstr "游客" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_guest.py:0 +#, python-format +msgid "Guest's name cannot be empty." +msgstr "游客姓名不能为空." + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_guest.py:0 +#, python-format +msgid "Guest's name is too long." +msgstr "游客姓名太长." + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_guest_action +#: model:ir.ui.menu,name:mail.mail_guest_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_guest_view_tree +msgid "Guests" +msgstr "顾客" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "几内亚" + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea-Bissau" +msgstr "几内亚比绍" + +#. module: base +#: model:res.country.group,name:base.gulf_cooperation_council +msgid "Gulf Cooperation Council (GCC)" +msgstr "海湾合作委员会 (GCC)" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_gcc_pos +msgid "Gulf Cooperation Council - Point of Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_gcc_invoice_stock_account +msgid "Gulf Cooperation Council WMS Accounting" +msgstr "" + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "圭亚那" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_H +msgid "H - TRANSPORTATION AND STORAGE" +msgstr "H - 运输和储存" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_cash_rounding__rounding_method__half-up msgid "HALF-UP" msgstr "一半" -#. module: maintenance -#: model:maintenance.equipment,name:maintenance.equipment_printer1 -msgid "HP Inkjet printer" -msgstr "HP 喷墨打印机" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_holidays_attendance +msgid "HR Attendance Holidays" +msgstr "人力资源出勤休假串联" -#. module: maintenance -#: model:maintenance.equipment,name:maintenance.equipment_computer11 -#: model:maintenance.equipment,name:maintenance.equipment_computer9 -msgid "HP Laptop" -msgstr "HP笔记本电脑" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_gamification +msgid "HR Gamification" +msgstr "HR游戏化" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_org_chart +msgid "HR Org Chart" +msgstr "人力资源组织图" + +#. module: base +#: model:res.country,vat_label:base.ca +msgid "HST" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_report__report_type__qweb-html +msgid "HTML" +msgstr "" + +#. module: sf_bf_connect +#: model:ir.model,name:sf_bf_connect.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "海地" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Halloween" +msgstr "万圣节前夕" + +#. module: base +#: model:ir.module.module,description:base.module_sale_mrp_margin +msgid "Handle BoM prices to compute sale margin." +msgstr "处理物料清单价格,以计算销售保证金。" + +#. modules: sf_manufacturing, sf_tool_management +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__handle_type_ids +#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__handle_type_ids +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__handle_type_ids +msgid "Handle Type" +msgstr "" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__res_users__notification_type__email +msgid "Handle by Emails" +msgstr "用邮件处理" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__res_users__notification_type__inbox +msgid "Handle in Odoo" +msgstr "在Odoo内处理" + +#. module: base +#: model:ir.module.module,summary:base.module_lunch +msgid "Handle lunch orders of your employees" +msgstr "处理员工的工作餐订单" + +#. module: base +#: model:ir.module.module,summary:base.module_hw_escpos +msgid "Hardware Driver for ESC/POS Printers and Cashdrawers" +msgstr "硬件驱动ESC/POS打印机和收银机" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hw_drivers +msgid "Hardware Proxy" +msgstr "硬件代理" #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__has_accounting_entries @@ -14355,12 +37241,42 @@ msgstr "有会计分录" msgid "Has Been Produced" msgstr "已生产" +#. module: base +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__has_diff +msgid "Has Diff" +msgstr "有差异" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__has_iap +msgid "Has Iap" +msgstr "有 Iap" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_stock_picking__has_kits msgid "Has Kits" msgstr "有套件" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_model__is_mail_activity +msgid "Has Mail Activity" +msgstr "有邮件活动" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_model__is_mail_blacklist +msgid "Has Mail Blacklist" +msgstr "有邮件黑名单" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_model__is_mail_thread +msgid "Has Mail Thread" +msgstr "有邮件会话" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_message_search +msgid "Has Mentions" +msgstr "提及" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__has_message #: model:ir.model.fields,field_description:account.field_account_account_template__has_message #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__has_message @@ -14371,6 +37287,13 @@ msgstr "有套件" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__has_message #: model:ir.model.fields,field_description:account.field_res_company__has_message #: model:ir.model.fields,field_description:account.field_res_partner_bank__has_message +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__has_message +#: model:ir.model.fields,field_description:mail.field_mail_channel__has_message +#: model:ir.model.fields,field_description:mail.field_mail_thread__has_message +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__has_message +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__has_message +#: model:ir.model.fields,field_description:mail.field_res_partner__has_message +#: model:ir.model.fields,field_description:mail.field_res_users__has_message #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__has_message #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__has_message #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__has_message @@ -14405,11 +37328,6 @@ msgstr "有包裹" msgid "Has Reconciled Entries" msgstr "有已调节分录" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search -msgid "Has Remaining Qty" -msgstr "" - #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking__has_scrap_move msgid "Has Scrap Moves" @@ -14431,6 +37349,17 @@ msgstr "有追溯" msgid "Has Unreconciled Entries" msgstr "有未调节分录" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__is_deaf +msgid "Has disabled incoming sound" +msgstr "禁用来电声音" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__has_error +#: model:ir.model.fields,field_description:mail.field_mail_message__has_error +msgid "Has error" +msgstr "有错误" + #. module: stock #: model:ir.model.fields,field_description:stock.field_product_replenish__product_has_variants #: model:ir.model.fields,field_description:stock.field_stock_rules_report__product_has_variants @@ -14452,9 +37381,44 @@ msgstr "哈希完整结果PDF报表" msgid "Having Category" msgstr "拥有类别" -#. module: stock +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_config_settings__primary_color +msgid "Header Color" +msgstr "标题颜色" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__header_spacing +msgid "Header spacing" +msgstr "页首边距" + +#. module: base +#: model:ir.model.fields,help:base.field_res_company__company_details +msgid "Header text displayed at the top of all reports." +msgstr "标题文本显示在所有报告的顶部。" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__headers +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +msgid "Headers" +msgstr "标题" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_Q +msgid "Health/Social" +msgstr "健康/社会" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard Island and McDonald Islands" +msgstr "赫德岛和麦克唐纳群岛" + +#. modules: stock, base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 #: model:ir.model.fields,field_description:stock.field_stock_package_type__height #: model_terms:ir.ui.view,arch_db:stock.stock_package_type_form +#, python-format msgid "Height" msgstr "高度" @@ -14468,11 +37432,244 @@ msgstr "高度(Z)" msgid "Height must be positive" msgstr "高度必须是正数" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_bounce_catchall +msgid "Hello" +msgstr "您好" + +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_wizard_invite.py:0 +#, python-format +msgid "Hello," +msgstr "你好," + +#. modules: base, base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form +#, python-format +msgid "Help" +msgstr "帮助" + +#. module: base +#: model:ir.module.module,summary:base.module_website_helpdesk_forum +msgid "Help Center for helpdesk based on Odoo Forum" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "Help with Python expressions" +msgstr "用 Python 表达式帮助" + +#. module: base +#: model:ir.module.category,name:base.module_category_services_helpdesk +#: model:ir.module.module,shortdesc:base.module_helpdesk +msgid "Helpdesk" +msgstr "服务台" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_helpdesk +msgid "Helpdesk - CRM" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_sms +msgid "Helpdesk - SMS" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_account +msgid "Helpdesk Account" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_sale +msgid "Helpdesk After Sales" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_fsm +msgid "Helpdesk FSM" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_fsm_sale +msgid "Helpdesk FSM - Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_fsm_report +msgid "Helpdesk FSM Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_helpdesk_knowledge +msgid "Helpdesk Knowledge" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_mail_plugin +msgid "Helpdesk Mail Plugin" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_data_merge_helpdesk +msgid "Helpdesk Merge action" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_repair +msgid "Helpdesk Repair" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_sale_loyalty +msgid "Helpdesk Sale Loyalty" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_stock +msgid "Helpdesk Stock" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_stock_account +msgid "Helpdesk Stock Account" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_holidays +msgid "Helpdesk Time Off" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_helpdesk_timesheet +msgid "Helpdesk Timesheet" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_helpdesk_holidays +msgid "Helpdesk integration with holidays" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_website_helpdesk_knowledge +msgid "Helpdesk integration with knowledge" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_helpdesk_stock_account +msgid "Helpdesk, Stock, Account" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_helpdesk_forum +msgid "Helpdesk: Help Center" +msgstr "" + +#. module: base +#: model:ir.module.category,description:base.module_category_accounting_accounting +msgid "" +"Helps you handle your accounting needs, if you are not an accountant, we " +"suggest you to install only the Invoicing." +msgstr "帮您处理记帐需要,如果您不是会计人员,我们推荐您只安装会计应收付管理模块." + +#. module: base +#: model:ir.module.category,description:base.module_category_sales_sales +msgid "Helps you handle your quotations, sale orders and invoicing." +msgstr "帮您处理报价,销售订单以及开立凭单." + +#. module: base +#: model:ir.module.category,description:base.module_category_user_type +msgid "Helps you manage users." +msgstr "帮助您管理用户." + +#. module: base +#: model:ir.module.category,description:base.module_category_inventory_inventory +msgid "" +"Helps you manage your inventory and main stock operations: delivery orders, " +"receptions, etc." +msgstr "帮助您管理您的库存以及主要的仓库作业:发货单、收货单等." + +#. module: base +#: model:ir.module.category,description:base.module_category_manufacturing_manufacturing +msgid "" +"Helps you manage your manufacturing processes and generate reports on those " +"processes." +msgstr "帮助您管理您的制造过程并根据这些过程创建报告." + +#. module: base +#: model:ir.module.category,description:base.module_category_inventory_purchase +msgid "" +"Helps you manage your purchase-related processes such as requests for " +"quotations, supplier bills, etc..." +msgstr "帮助您管理与采购相关的流程,如报价请求,供应商帐单等." + +#. module: base +#: model:ir.module.category,description:base.module_category_manufacturing_quality +msgid "Helps you manage your quality alerts and quality checks." +msgstr "帮助您管理质量警报和质量检查." + +#. module: base +#: model:ir.module.category,description:base.module_category_sales_sign +msgid "Helps you sign and complete your documents easily." +msgstr "帮助您轻松签署和完成文件." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "Here is the exported translation file:" +msgstr "这是已经导出的翻译单据:" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "下面是我们无法导入的起始文件:" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_show +msgid "" +"Here is your new API key, use it instead of a password for RPC access.\n" +" Your login is still necessary for interactive usage." +msgstr "" +"这是您的新 API 密钥,使用它代替密码进行 RPC 访问.\n" +" 您的登录仍然是交互式使用所必需的." + +#. modules: mail, base +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__hidden +#: model:ir.module.category,name:base.module_category_theme_hidden +msgid "Hidden" +msgstr "隐藏" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_template__template_category__hidden_template +msgid "Hidden Template" +msgstr "已隐藏的模板" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_warehouse_orderpoint__snoozed_until msgid "Hidden until next scheduler." msgstr "下一次调度前隐藏。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#, python-format +msgid "Hide Call Settings" +msgstr "隐藏呼叫设置" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#, python-format +msgid "Hide Member List" +msgstr "隐藏成员列表" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking__hide_picking_type msgid "Hide Picking Type" @@ -14500,6 +37697,14 @@ msgstr "隐藏收付实现制选项" msgid "Hide Writeoff Section" msgstr "隐藏核销部分" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Hide badges" +msgstr "隐藏徽标" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search msgid "Hide cancelled lines" @@ -14510,7 +37715,34 @@ msgstr "隐藏已取消明细行" msgid "Hide if Zero" msgstr "如果为零则隐藏" -#. modules: quality, maintenance, mrp +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Hide seconds" +msgstr "隐藏秒数" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_main_view/call_main_view.xml:0 +#, python-format +msgid "Hide sidebar" +msgstr "隐藏侧边栏" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__hidden +msgid "Hide the subtype in the follower options" +msgstr "隐藏关注者选项的子类型" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__is_internal +#: model:ir.model.fields,help:mail.field_mail_message__is_internal +msgid "" +"Hide to public / portal users, independently from subtype configuration." +msgstr "对公共/门户用户隐藏,独立于子类型配置." + +#. modules: maintenance, mrp, quality #: model:ir.model.fields.selection,name:maintenance.selection__maintenance_request__priority__3 #: model:ir.model.fields.selection,name:mrp.selection__mrp_document__priority__2 #: model:ir.model.fields.selection,name:quality.selection__quality_alert__priority__2 @@ -14529,9 +37761,22 @@ msgstr "高优先级" msgid "Highest Name" msgstr "最高名称" -#. modules: stock, account, purchase, mrp +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Hindu" +msgstr "印度教徒" + +#. modules: purchase, account, mail, base, stock, mrp +#. odoo-python +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#: code:addons/mail/static/src/models/mailbox.js:0 #: code:addons/stock/models/stock_quant.py:0 #: model_terms:ir.ui.view,arch_db:account.portal_invoice_page +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_document_form #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order #: model_terms:ir.ui.view,arch_db:stock.product_product_stock_tree @@ -14541,29 +37786,208 @@ msgstr "最高名称" msgid "History" msgstr "历史" +#. module: sf_plan +#: model:ir.model,name:sf_plan.model_hole_duration +msgid "Hole Duration" +msgstr "" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "教廷(梵蒂冈城国)" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__action_id +msgid "Home Action" +msgstr "主页动作" + +#. module: base +#: model:ir.actions.act_url,name:base.action_open_website +msgid "Home Menu" +msgstr "主页菜单" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "洪都拉斯" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hn +msgid "Honduras - Accounting" +msgstr "" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "香港" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hk +msgid "Hong Kong - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hk_hr_payroll +msgid "Hong Kong - Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hk_hr_payroll_hsbc_autopay +msgid "Hong Kong - Payroll HSBC AutoPay" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hk_hr_payroll_account +msgid "Hong Kong - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__smtp_host +msgid "Hostname or IP of SMTP server" +msgstr "主机名称或SMTP服务器IP地址" + +#. module: mail +#: model:ir.model.fields,help:mail.field_fetchmail_server__server +msgid "Hostname or IP of the mail server" +msgstr "邮件服务器的主机名或IP" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_workcenter__costs_hour msgid "Hourly processing cost." msgstr "小时处理成本。" -#. module: mrp +#. modules: base, mrp +#: model:ir.model.fields.selection,name:base.selection__ir_cron__interval_type__hours #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view msgid "Hours" msgstr "小时" +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_T +msgid "Households" +msgstr "家庭" + +#. module: mail +#: model:ir.model.fields,help:mail.field_res_users_settings__voice_active_duration +msgid "" +"How long the audio broadcast will remain active after passing the volume " +"threshold" +msgstr "超过音量阈值后音频广播将保持活动多长时间" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_cron__numbercall +msgid "" +"How many times the method is called,\n" +"a negative number indicates no limit." +msgstr "该方法调用的次数限制,负数表示无限制." + #. module: stock #: model:ir.model.fields,help:stock.field_stock_picking_type__reservation_method msgid "How products in transfers of this operation type should be reserved." msgstr "该作业类型的转让中的产品应如何预留。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "How to define a computed field" +msgstr "如何定义计算字段" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "How total tax amount is computed in orders and invoices" msgstr "在订单和结算单中如何计算总税额" -#. modules: sf_manufacturing, maintenance, purchase_stock, mrp_workorder, -#. purchase, mrp, sf_plan_management, sale_management, stock, stock_account, -#. quality, quality_control, sf_base, account +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_expense_extract +msgid "Hr Expense Extract" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_expense_predict_product +msgid "Hr Expense Predict product" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_recruitment_extract +msgid "Hr Recruitment Extract" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_recruitment_survey +msgid "Hr Recruitment Interview Forms" +msgstr "HR招聘面试表单" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Human Readable" +msgstr "可读" + +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources +msgid "Human Resources" +msgstr "人力资源" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "匈牙利" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hu +msgid "Hungary - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_hu_reports +msgid "Hungary - Accounting Reports" +msgstr "" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_I +msgid "I - ACCOMMODATION AND FOOD SERVICE ACTIVITIES" +msgstr "I - 住宿和餐饮服务活动" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_iap_crm +msgid "IAP / CRM" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_iap_mail +msgid "IAP / Mail" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_iban +msgid "IBAN Bank Accounts" +msgstr "IBAN银行帐号" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "ICE Servers" +msgstr "ICE 服务器" + +#. module: mail +#: model:ir.model,name:mail.model_mail_ice_server +#: model_terms:ir.ui.view,arch_db:mail.view_ice_server_form +msgid "ICE server" +msgstr "ICE 服务器" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_ice_servers +#: model:ir.ui.menu,name:mail.mail_channel_ice_servers_menu +msgid "ICE servers" +msgstr "ICE 服务器" + +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. purchase_stock, stock, mrp_workorder +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 #: model:ir.model.fields,field_description:account.field_account_account__id #: model:ir.model.fields,field_description:account.field_account_account_tag__id #: model:ir.model.fields,field_description:account.field_account_account_template__id @@ -14620,6 +38044,138 @@ msgstr "在订单和结算单中如何计算总税额" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__id #: model:ir.model.fields,field_description:account.field_account_unreconcile__id #: model:ir.model.fields,field_description:account.field_validate_account_move__id +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__id +#: model:ir.model.fields,field_description:base.field_base_language_export__id +#: model:ir.model.fields,field_description:base.field_base_language_import__id +#: model:ir.model.fields,field_description:base.field_base_language_install__id +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__id +#: model:ir.model.fields,field_description:base.field_base_module_update__id +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__id +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__id +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__id +#: model:ir.model.fields,field_description:base.field_change_password_own__id +#: model:ir.model.fields,field_description:base.field_change_password_user__id +#: model:ir.model.fields,field_description:base.field_change_password_wizard__id +#: model:ir.model.fields,field_description:base.field_decimal_precision__id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__id +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__id +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__id +#: model:ir.model.fields,field_description:base.field_ir_actions_client__id +#: model:ir.model.fields,field_description:base.field_ir_actions_report__id +#: model:ir.model.fields,field_description:base.field_ir_actions_server__id +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__id +#: model:ir.model.fields,field_description:base.field_ir_asset__id +#: model:ir.model.fields,field_description:base.field_ir_attachment__id +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__id +#: model:ir.model.fields,field_description:base.field_ir_cron__id +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__id +#: model:ir.model.fields,field_description:base.field_ir_default__id +#: model:ir.model.fields,field_description:base.field_ir_demo__id +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__id +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__id +#: model:ir.model.fields,field_description:base.field_ir_exports__id +#: model:ir.model.fields,field_description:base.field_ir_exports_line__id +#: model:ir.model.fields,field_description:base.field_ir_filters__id +#: model:ir.model.fields,field_description:base.field_ir_logging__id +#: model:ir.model.fields,field_description:base.field_ir_mail_server__id +#: model:ir.model.fields,field_description:base.field_ir_model__id +#: model:ir.model.fields,field_description:base.field_ir_model_access__id +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__id +#: model:ir.model.fields,field_description:base.field_ir_model_data__id +#: model:ir.model.fields,field_description:base.field_ir_model_fields__id +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__id +#: model:ir.model.fields,field_description:base.field_ir_model_relation__id +#: model:ir.model.fields,field_description:base.field_ir_module_category__id +#: model:ir.model.fields,field_description:base.field_ir_module_module__id +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency__id +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__id +#: model:ir.model.fields,field_description:base.field_ir_profile__id +#: model:ir.model.fields,field_description:base.field_ir_property__id +#: model:ir.model.fields,field_description:base.field_ir_rule__id +#: model:ir.model.fields,field_description:base.field_ir_sequence__id +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__id +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__id +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__id +#: model:ir.model.fields,field_description:base.field_ir_ui_view__id +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__id +#: model:ir.model.fields,field_description:base.field_report_layout__id +#: model:ir.model.fields,field_description:base.field_report_paperformat__id +#: model:ir.model.fields,field_description:base.field_res_bank__id +#: model:ir.model.fields,field_description:base.field_res_company__id +#: model:ir.model.fields,field_description:base.field_res_config__id +#: model:ir.model.fields,field_description:base.field_res_config_installer__id +#: model:ir.model.fields,field_description:base.field_res_config_settings__id +#: model:ir.model.fields,field_description:base.field_res_country__id +#: model:ir.model.fields,field_description:base.field_res_country_group__id +#: model:ir.model.fields,field_description:base.field_res_country_state__id +#: model:ir.model.fields,field_description:base.field_res_currency__id +#: model:ir.model.fields,field_description:base.field_res_currency_rate__id +#: model:ir.model.fields,field_description:base.field_res_groups__id +#: model:ir.model.fields,field_description:base.field_res_lang__id +#: model:ir.model.fields,field_description:base.field_res_partner__id +#: model:ir.model.fields,field_description:base.field_res_partner_bank__id +#: model:ir.model.fields,field_description:base.field_res_partner_category__id +#: model:ir.model.fields,field_description:base.field_res_partner_industry__id +#: model:ir.model.fields,field_description:base.field_res_partner_title__id +#: model:ir.model.fields,field_description:base.field_res_users__id +#: model:ir.model.fields,field_description:base.field_res_users_apikeys__id +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__id +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_show__id +#: model:ir.model.fields,field_description:base.field_res_users_deletion__id +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__id +#: model:ir.model.fields,field_description:base.field_res_users_log__id +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__id +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__id +#: model:ir.model.fields,field_description:base_import.field_base_import_import__id +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__id +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__id +#: model:ir.model.fields,field_description:mail.field_mail_activity__id +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__id +#: model:ir.model.fields,field_description:mail.field_mail_alias__id +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__id +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__id +#: model:ir.model.fields,field_description:mail.field_mail_channel__id +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__id +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__id +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__id +#: model:ir.model.fields,field_description:mail.field_mail_followers__id +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__id +#: model:ir.model.fields,field_description:mail.field_mail_guest__id +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__id +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__id +#: model:ir.model.fields,field_description:mail.field_mail_mail__id +#: model:ir.model.fields,field_description:mail.field_mail_message__id +#: model:ir.model.fields,field_description:mail.field_mail_message_reaction__id +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__id +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__id +#: model:ir.model.fields,field_description:mail.field_mail_notification__id +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__id +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__id +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__id +#: model:ir.model.fields,field_description:mail.field_mail_template__id +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__id +#: model:ir.model.fields,field_description:mail.field_mail_template_reset__id +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__id +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__id +#: model:ir.model.fields,field_description:mail.field_res_users_settings__id +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__id #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__id @@ -14695,18 +38251,43 @@ msgstr "在订单和结算单中如何计算总税额" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter__id #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort__id #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common__id -#: model:ir.model.fields,field_description:sf_base.field_sf_tray__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant__id +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method__id #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort__id +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration__id +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule__id +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan__id #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off__id #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting__id #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting__id #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar__id #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift__id +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order__id +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__id +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__id #: model:ir.model.fields,field_description:stock.field_lot_label_layout__id #: model:ir.model.fields,field_description:stock.field_picking_label_type__id #: model:ir.model.fields,field_description:stock.field_procurement_group__id @@ -14754,12 +38335,21 @@ msgstr "在订单和结算单中如何计算总税额" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__id #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__id #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap__id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation__id +#, python-format msgid "ID" msgstr "" -#. modules: quality, maintenance +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ID button" +msgstr "ID按钮" + +#. modules: mail, maintenance, quality +#: model:ir.model.fields,help:mail.field_mail_alias__alias_parent_thread_id #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_parent_thread_id #: model:ir.model.fields,help:quality.field_quality_alert_team__alias_parent_thread_id msgid "" @@ -14767,19 +38357,94 @@ msgid "" " creation alias)" msgstr "上级记录ID支持别名(例如:项目支持任务创建别名)" +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_data__res_id +msgid "ID of the target record in the database" +msgstr "在数据库中目标记录的ID" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_view__xml_id +msgid "ID of the view defined in xml file" +msgstr "定义在 XML 文件里的视图ID" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ILY" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_bus +msgid "IM Bus" +msgstr "IM 总线" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_guest__im_status +msgid "IM Status" +msgstr "IM的状态" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_search +msgid "IMAP" +msgstr "" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__fetchmail_server__server_type__imap +msgid "IMAP Server" +msgstr "IMAP 服务器" + #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "INV" msgstr "" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_profile_view_form +msgid "IR Profile" +msgstr "IR简介" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_import__code +msgid "ISO Code" +msgstr "ISO 代码" + +#. module: base +#: model:ir.model.fields,help:base.field_base_language_import__code +msgid "ISO Language and Country code, e.g. en_US" +msgstr "ISO语言和国家代码,例如en_US" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_lang__iso_code +msgid "ISO code" +msgstr "ISO代码" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_J +msgid "IT/Communication" +msgstr "IT/通讯" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "冰岛" + +#. modules: purchase, mrp, account, quality, mail, base, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_exception_icon #: model:ir.model.fields,field_description:account.field_account_journal__activity_exception_icon #: model:ir.model.fields,field_description:account.field_account_move__activity_exception_icon #: model:ir.model.fields,field_description:account.field_account_payment__activity_exception_icon #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_exception_icon #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_exception_icon +#: model:ir.model.fields,field_description:base.field_ir_module_module__icon_image +#: model:ir.model.fields,field_description:mail.field_mail_activity__icon +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_exception_icon +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__icon +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_exception_icon +#: model:ir.model.fields,field_description:mail.field_res_users__activity_exception_icon #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_exception_icon #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_exception_icon #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_exception_icon @@ -14790,16 +38455,27 @@ msgstr "" #: model:ir.model.fields,field_description:quality.field_quality_check__activity_exception_icon #: model:ir.model.fields,field_description:stock.field_stock_lot__activity_exception_icon #: model:ir.model.fields,field_description:stock.field_stock_picking__activity_exception_icon +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +#: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall msgid "Icon" msgstr "图标" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__icon +msgid "Icon URL" +msgstr "图标网址" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,help:account.field_account_bank_statement_line__activity_exception_icon #: model:ir.model.fields,help:account.field_account_journal__activity_exception_icon #: model:ir.model.fields,help:account.field_account_move__activity_exception_icon #: model:ir.model.fields,help:account.field_account_payment__activity_exception_icon #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__activity_exception_icon #: model:ir.model.fields,help:account.field_res_partner_bank__activity_exception_icon +#: model:ir.model.fields,help:mail.field_mail_activity_mixin__activity_exception_icon +#: model:ir.model.fields,help:mail.field_res_partner__activity_exception_icon +#: model:ir.model.fields,help:mail.field_res_users__activity_exception_icon #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__activity_exception_icon #: model:ir.model.fields,help:maintenance.field_maintenance_request__activity_exception_icon #: model:ir.model.fields,help:mrp.field_mrp_production__activity_exception_icon @@ -14813,6 +38489,34 @@ msgstr "图标" msgid "Icon to indicate an exception activity." msgstr "表示异常活动的图标。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_followers__res_id +#: model:ir.model.fields,help:mail.field_mail_wizard_invite__res_id +msgid "Id of the followed resource" +msgstr "被关注资源的ID" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_rtc_session_view_form +msgid "Identity" +msgstr "身份" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/persona_im_status_icon/persona_im_status_icon.xml:0 +#, python-format +msgid "Idle" +msgstr "空闲" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__aggr_ids +msgid "Ids" +msgstr "ID" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_search +msgid "If SSL required." +msgstr "是否需要SSL。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_default_terms_and_conditions msgid "" @@ -14820,6 +38524,26 @@ msgid "" "payment date," msgstr "如果在到期付款日后超过六十(60)天仍未付款," +#. module: stock +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"If a payment is still outstanding more than sixty (60) days after the due " +"payment date, My Company (Chicago) reserves the right to call on the " +"services of a debt recovery company. All legal expenses will be payable by " +"the client." +msgstr "如果在到期付款日期后超过六十(60)天仍未完成款,我公司(芝加哥)预留要求债务追讨公司提供服务的权利。所有法律费用将由客户支付。" + +#. module: base +#: model_terms:res.company,invoice_terms_html:base.main_company +msgid "" +"If a payment is still outstanding more than sixty (60) days after the due " +"payment date, My Company (San Francisco) reserves the right to call on the " +"services of a debt recovery company. All legal expenses will be payable by " +"the client." +msgstr "" +"如果在到期付款日后六十 (60) 天仍未完成款,My Company (San Francisco) 保留要求债务追偿公司提供服务的权利. " +"所有法律费用将由客户支付." + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_bom__product_id msgid "" @@ -14831,7 +38555,22 @@ msgstr "如果定义了产品变体,那么BOM仅用于本产品变体。" msgid "If all products are same" msgstr "如果所有产品都是一样的" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__group_expand +msgid "" +"If checked, all the records of the target model will be included\n" +"in a grouped result (e.g. 'Group By' filters, Kanban columns, etc.).\n" +"Note that it can significantly reduce performance if the target model\n" +"of the field contains a lot of records; usually used on models with\n" +"few records (e.g. Stages, Job Positions, Event Types, etc.)." +msgstr "" +"若勾选,将包含目标模型的所有记录\n" +"在分组结果中(例如\"分组依据\"筛选器、看板列等).\n" +"请注意,如果目标模型\n" +"该字段包含大量记录;通常用于带有\n" +"很少的记录(例如阶段、工作职位、事件类型等)." + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,help:account.field_account_account__message_needaction #: model:ir.model.fields,help:account.field_account_account_template__message_needaction #: model:ir.model.fields,help:account.field_account_bank_statement_line__message_needaction @@ -14842,6 +38581,13 @@ msgstr "如果所有产品都是一样的" #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__message_needaction #: model:ir.model.fields,help:account.field_res_company__message_needaction #: model:ir.model.fields,help:account.field_res_partner_bank__message_needaction +#: model:ir.model.fields,help:mail.field_mail_blacklist__message_needaction +#: model:ir.model.fields,help:mail.field_mail_channel__message_needaction +#: model:ir.model.fields,help:mail.field_mail_thread__message_needaction +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__message_needaction +#: model:ir.model.fields,help:mail.field_mail_thread_cc__message_needaction +#: model:ir.model.fields,help:mail.field_res_partner__message_needaction +#: model:ir.model.fields,help:mail.field_res_users__message_needaction #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__message_needaction #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__message_needaction #: model:ir.model.fields,help:maintenance.field_maintenance_request__message_needaction @@ -14859,7 +38605,7 @@ msgstr "如果所有产品都是一样的" msgid "If checked, new messages require your attention." msgstr "确认后, 出现提示消息." -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,help:account.field_account_account__message_has_error #: model:ir.model.fields,help:account.field_account_account__message_has_sms_error #: model:ir.model.fields,help:account.field_account_account_template__message_has_error @@ -14880,6 +38626,13 @@ msgstr "确认后, 出现提示消息." #: model:ir.model.fields,help:account.field_res_company__message_has_sms_error #: model:ir.model.fields,help:account.field_res_partner_bank__message_has_error #: model:ir.model.fields,help:account.field_res_partner_bank__message_has_sms_error +#: model:ir.model.fields,help:mail.field_mail_blacklist__message_has_error +#: model:ir.model.fields,help:mail.field_mail_channel__message_has_error +#: model:ir.model.fields,help:mail.field_mail_thread__message_has_error +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__message_has_error +#: model:ir.model.fields,help:mail.field_mail_thread_cc__message_has_error +#: model:ir.model.fields,help:mail.field_res_partner__message_has_error +#: model:ir.model.fields,help:mail.field_res_users__message_has_error #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__message_has_error #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__message_has_error #: model:ir.model.fields,help:maintenance.field_maintenance_request__message_has_error @@ -14914,6 +38667,13 @@ msgid "" "If checked, the new chart of accounts will not contain this by default." msgstr "如果选中,在新科目表中默认将不包含此项。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_wizard_invite__send_mail +msgid "" +"If checked, the partners will receive an email warning they have been added " +"in the document's followers." +msgstr "如果勾选此项,业务伙伴将收到邮件提醒他们已经被添加为单据的关注者。" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_production__propagate_cancel msgid "" @@ -14939,6 +38699,22 @@ msgid "" "received in order to pay the invoice." msgstr "如果启用,启用3路供应商账单匹配:项目必须收到以便支付结算单。" +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__smtp_debug +msgid "" +"If enabled, the full output of SMTP sessions will be written to the server " +"log at DEBUG level (this is very verbose and may include confidential info!)" +msgstr "" +"打开此项时, 在调试日志模式下, SMTP的详细日志会记录到 openerp-server.log 中.(注意,日志记录得比较详尽, " +"会包含一些SMTP帐户信息, 在调试完毕后, 请关闭此项)" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_report__attachment_use +msgid "" +"If enabled, then the second time the user prints with same attachment name, " +"it returns the previous report." +msgstr "如果启用,则用户第二次使用相同的附件名称打印时,它将返回上一个报告." + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "" @@ -14946,6 +38722,46 @@ msgid "" "a grid entry." msgstr "如果安装,产品的变种将被添加到购买订单,通过一个网格条目。" +#. module: base +#: model:ir.model.fields,help:base.field_ir_rule__global +msgid "If no group is specified the rule is global and applied to everyone" +msgstr "如果不指定群组,则规则是全局的,会应用于每个用户" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_property__res_id +msgid "If not set, acts as a default value for new resources" +msgstr "倘若没有设置,则作为新资源的默认值" + +#. module: mail +#: model:ir.model.fields,help:mail.field_ir_model_fields__tracking +msgid "" +"If set every modification done to this field is tracked in the chatter. " +"Value is used to order tracking values." +msgstr "设置对该字段所做的每个修改都在聊天框被跟踪。值被用于排序跟踪值。" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window_view__multi +#: model:ir.model.fields,help:base.field_ir_actions_report__multi +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "如果设为真,该动作将不会显示于表单右侧的工具栏中." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_default__company_id +msgid "If set, action binding only applies for this company" +msgstr "如果设置, 动作绑定只用于这个公司" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_default__user_id +msgid "If set, action binding only applies for this user." +msgstr "如果设置, 动作绑定只用于这个用户." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_default__condition +msgid "If set, applies the default upon condition." +msgstr "如果设置,则在条件下应用默认值." + #. module: account #: model:ir.model.fields,help:account.field_account_tax__include_base_amount #: model:ir.model.fields,help:account.field_account_tax_template__include_base_amount @@ -14970,6 +38786,11 @@ msgid "" "analytic account as the invoice line (if any)" msgstr "如果设置,根据这个税计算出来的总额将被赋给结算单行的同一个分析账户(如果有)" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__to_delete +msgid "If set, the mail will be deleted during the next Email Queue CRON run." +msgstr "如果设置,邮件将在下一个电子邮件队列定时任务运行期间被删除" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move_line__result_package_id msgid "If set, the operations are packed into this package" @@ -14982,6 +38803,21 @@ msgid "" " invoices." msgstr "如果设置,付款截止日期和相应的应付金额将在发票上详细说明。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__scheduled_date +msgid "" +"If set, the queue manager will send the email after the date. If not set, " +"the email will be send as soon as possible. Unless a timezone is specified, " +"it is considered as being in UTC timezone." +msgstr "如果设置,队列管理器将在该日期之后发送电子邮件。 如果未设置,电子邮件将尽快发送。 除非指定时区,否则它被视为在 UTC 时区。" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__scheduled_date +msgid "" +"If set, the queue manager will send the email after the date. If not set, " +"the email will be send as soon as possible. You can use dynamic expression." +msgstr "如果设置,队列管理器将在日期之后发送电子邮件。如果未设置,电子邮件将尽快发送。您可以使用动态表达式。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "If set, this account is used to automatically balance entries." @@ -14996,7 +38832,8 @@ msgstr "" "如果设置,此帐户在报告和过滤器中将属于非贸易应收/应付。\n" "如果不设置,此帐户将在报告和过滤器中属于贸易应收/应付。" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,help:mail.field_mail_alias__alias_bounced_content #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_bounced_content #: model:ir.model.fields,help:quality.field_quality_alert_team__alias_bounced_content msgid "" @@ -15012,6 +38849,22 @@ msgid "" "will be displayed after the 'Untaxed amount' subtotal." msgstr "如果设置了该值,则在显示之前,该值将在文档上用作不包括该税务组的小计的标签。如果未设置,税组将显示在“未征税金额”小计之后。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_server_action_form +msgid "" +"If several child actions return an action, only the last one will be executed.\n" +" This may happen when having server actions executing code that returns an action, or server actions returning a client action." +msgstr "" +"假如几个子活动返回一个活动,仅最后一个活动被执行.\n" +" 当几个活动执行返回代码,或向个活动返回一个客户端活动时发生." + +#. module: base +#: model:ir.model.fields,help:base.field_res_users__action_id +msgid "" +"If specified, this action will be opened at log on for this user, in " +"addition to the standard menu." +msgstr "如果指定的话,这个动作将在该用户帐号登录后与标准的菜单一起执行. 就是说登录第一画面将看到指定的菜单页面." + #. module: stock #: model:ir.model.fields,help:stock.field_lot_label_layout__label_quantity msgid "" @@ -15047,11 +38900,44 @@ msgid "" "without removing it." msgstr "如果启用字段被设置为否,系统将会允许您隐藏路线而不是删除。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__is_blacklisted +#: model:ir.model.fields,help:mail.field_res_partner__is_blacklisted +#: model:ir.model.fields,help:mail.field_res_users__is_blacklisted +msgid "" +"If the email address is on the blacklist, the contact won't receive mass " +"mailing anymore, from any list" +msgstr "存在于黑名单的EMail表示收件者不会再收到任何列表的群发邮件" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "" +"If the file contains\n" +" the column names, Odoo can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"如果该文件包含\n" +" 列名,Odoo可以尝试自动检测列所对应的\n" +" 与该列对应的字段。这使得导入\n" +" 更加简单,特别是当文件有很多列时。" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_storage_category__allow_new_product__empty msgid "If the location is empty" msgstr "如果该位置是空的" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "" +"If the model uses openchatter, history tracking will set up subscriptions " +"and send notifications during the import, but lead to a slower import." +msgstr "如果模型使用openchatter,则历史跟踪将在导入期间设置订阅并发送通知,但会导致导入速度变慢。" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "" @@ -15064,6 +38950,25 @@ msgstr "如果拣货被解锁,您可以编辑初始需求(适用于拣货草 msgid "If the same SN is in another Quant" msgstr "如果相同的序列号已被记录于系统库存中" +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#, python-format +msgid "" +"If the source location must be scanned for each product, the destination " +"location must be either scanned after each line too, either not scanned at " +"all." +msgstr "" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#, python-format +msgid "" +"If the source location must be scanned, then the destination location must " +"either be scanned after each product or not scanned at all." +msgstr "" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_picking__show_reserved #: model:ir.model.fields,help:stock.field_stock_picking_type__show_reserved @@ -15104,6 +39009,13 @@ msgid "" "detailed stock operations." msgstr "如果勾选此框,则拣货线将表示详细的库存作业。否则,拣选线将代表详细的库存作业的总和。" +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_view__groups_id +msgid "" +"If this field is empty, the view applies to all users. Otherwise, the view " +"applies to the users of those groups only." +msgstr "如果这字段是空,视图应用到所有用户。否则这些视图只能用于这些群组内的用户。" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move_line__picking_type_use_create_lots #: model:ir.model.fields,help:stock.field_stock_picking__use_create_lots @@ -15130,6 +39042,19 @@ msgid "" "contains the already processed part." msgstr "如果这个运输被拆分,该字段连接到包括了已经处理的部分的运输。" +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_view__active +msgid "" +"If this view is inherited,\n" +"* if True, the view always extends its parent\n" +"* if False, the view currently does not extend its parent but can be enabled\n" +" " +msgstr "" +"如果继承此视图,\n" +"* 如果为 True,则视图始终扩展其父视图\n" +"* 如果为 False,则视图当前不扩展其父视图,但可以启用\n" +" " + #. module: account #: model:ir.model.fields,help:account.field_account_bank_statement_line__restrict_mode_hash_table #: model:ir.model.fields,help:account.field_account_journal__restrict_mode_hash_table @@ -15148,6 +39073,17 @@ msgstr "如果勾选,会计分录或应收付凭单在过帐后立即完成冲 msgid "If ticked, you will be able to select entire packages to move" msgstr "如果勾选此项,您将被允许可以选择整个包装来进行移动。" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__reply_to_force_new +#: model:ir.model.fields,help:mail.field_mail_message__reply_to_force_new +msgid "" +"If true, answers do not go in the original document discussion thread. " +"Instead, it will check for the reply_to in tracking message-id and " +"redirected accordingly. This has an impact on the generated message-id." +msgstr "" +"如果为真,那么答案不会出现在原始文档讨论线程中。相反,它将检查跟踪message-id中的reply_to,并相应地重定向。这将对生成的message-" +"id产生影响。" + #. module: purchase #: model:ir.model.fields,help:purchase.field_product_packaging__purchase msgid "If true, the packaging can be used for purchase orders" @@ -15165,6 +39101,13 @@ msgstr "如果取消选中,将允许您隐藏报价模板而不将其删除。 msgid "If unchecked, it will allow you to hide the rule without removing it." msgstr "如果不勾选,允许您隐藏规则而无需删除。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "" +"If user belongs to several groups, the results from step 2 are combined with" +" logical OR operator" +msgstr "如果用户属于多个组,那么第2步的结果将使用「或」操作符进行组合" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "" @@ -15178,12 +39121,41 @@ msgid "" "If you check this box, you will be able to register your payment using SEPA." msgstr "如果您勾选此项,您可用SEPA登记付款。" +#. module: base +#: model:ir.model.fields,help:base.field_base_language_install__overwrite +msgid "" +"If you check this box, your customized translations will be overwritten and " +"replaced by the official ones." +msgstr "如果选定,则自定翻译会被系统翻译复盖替换." + +#. module: base +#: model:ir.model.fields,help:base.field_base_language_import__overwrite +msgid "" +"If you enable this option, existing translations (including custom ones) " +"will be overwritten and replaced by those in this file" +msgstr "选中此项时, 上传单据中的翻译项会替换掉系统中对应的翻译项(包括用户自定的)" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_menu__groups_id +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Odoo will compute visibility based on the " +"related object's read access." +msgstr "如果您归属于用户群组,则此菜单的可见性将有这些用户群组决定. 如果该字段为空,系统将根据关联对象的读入权限计算可见性." + #. module: account #: model_terms:ir.actions.act_window,help:account.open_account_journal_dashboard_kanban msgid "" "If you have not installed a chart of account, please install one first.
    " msgstr "如果您还没有安装会计科目表,请先安装一个.
    " +#. module: mail +#: model:ir.model.fields,help:mail.field_res_config_settings__alias_domain +msgid "" +"If you have setup a catch-all email domain redirected to the Odoo server, " +"enter the domain name here." +msgstr "如果您设置了电子邮件域名重定向到这个Odoo服务器,请在这里输入域名。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "" @@ -15192,6 +39164,22 @@ msgid "" "of where you are located." msgstr "如果您向欧盟国家以外的客户销售商品和服务,必须根据送货地址收取增值税。无论您在哪里,这条规则都适用。" +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_access__active +msgid "" +"If you uncheck the active field, it will disable the ACL without deleting it" +" (if you delete a native ACL, it will be re-created when you reload the " +"module)." +msgstr "如果取消勾选有效字段,将停用ACL而不删除它(如果删除了本地ACL,则在重新装入模块时将重新创建该ACL)." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_rule__active +msgid "" +"If you uncheck the active field, it will disable the record rule without " +"deleting it (if you delete a native record rule, it may be re-created when " +"you reload the module)." +msgstr "如果取消勾选有效字段,它将停用记录规则而不删除它(如果您删除了本机记录规则,则在重新装入模块时可能会重新创建该记录规则)." + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_unreconcile_view msgid "" @@ -15200,6 +39188,7 @@ msgid "" msgstr "如果取消调节交易,您也必须验证所有连接到这些交易的动作,因为它们不能被取消" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "" @@ -15207,11 +39196,87 @@ msgid "" "journal entry must be of this type" msgstr "如果要使用“资产负债表外”科目,则会计凭证的所有科目必须属于此类型" +#. module: mail +#: model:ir.model.fields,help:mail.field_res_config_settings__use_twilio_rtc_servers +msgid "If you want to use twilio as TURN/STUN server provider" +msgstr "如果您想使用twilio作为TURN/STUN服务器提供商" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade +msgid "If you wish to cancel the process, press the cancel button below" +msgstr "如果您希望在过程中取消,按下面的取消按钮" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_resend_message_view_form +msgid "Ignore all" +msgstr "忽略所有" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#: model:ir.model.fields,field_description:base.field_avatar_mixin__image_1920 +#: model:ir.model.fields,field_description:base.field_image_mixin__image_1920 +#: model:ir.model.fields,field_description:base.field_res_lang__flag_image +#: model:ir.model.fields,field_description:base.field_res_partner__image_1920 +#: model:ir.model.fields,field_description:base.field_res_users__image_1920 +#: model:ir.model.fields,field_description:mail.field_mail_channel__image_128 +#: model:ir.model.fields,field_description:mail.field_mail_guest__image_1920 +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__og_image +#, python-format +msgid "Image" +msgstr "图像" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__image_1024 +#: model:ir.model.fields,field_description:base.field_image_mixin__image_1024 +#: model:ir.model.fields,field_description:base.field_res_partner__image_1024 +#: model:ir.model.fields,field_description:base.field_res_users__image_1024 +#: model:ir.model.fields,field_description:mail.field_mail_guest__image_1024 +msgid "Image 1024" +msgstr "图像 1024" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__image_128 +#: model:ir.model.fields,field_description:base.field_image_mixin__image_128 +#: model:ir.model.fields,field_description:base.field_res_partner__image_128 +#: model:ir.model.fields,field_description:base.field_res_users__image_128 +#: model:ir.model.fields,field_description:mail.field_mail_guest__image_128 +msgid "Image 128" +msgstr "图像128" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__image_256 +#: model:ir.model.fields,field_description:base.field_image_mixin__image_256 +#: model:ir.model.fields,field_description:base.field_res_partner__image_256 +#: model:ir.model.fields,field_description:base.field_res_users__image_256 +#: model:ir.model.fields,field_description:mail.field_mail_guest__image_256 +msgid "Image 256" +msgstr "图像 256" + +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_avatar_mixin__image_512 +#: model:ir.model.fields,field_description:base.field_image_mixin__image_512 +#: model:ir.model.fields,field_description:base.field_res_partner__image_512 +#: model:ir.model.fields,field_description:base.field_res_users__image_512 +#: model:ir.model.fields,field_description:mail.field_mail_guest__image_512 +msgid "Image 512" +msgstr "图像 512" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_document__image_height msgid "Image Height" msgstr "图像高度" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__image_mimetype +msgid "Image MIME type" +msgstr "图像哑剧类型" + +#. module: base +#: model:ir.model,name:base.model_image_mixin +msgid "Image Mixin" +msgstr "图像混合" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_document__image_src msgid "Image Src" @@ -15222,11 +39287,36 @@ msgstr "图像来源" msgid "Image Width" msgstr "图像宽度" -#. module: mrp +#. modules: mail, mrp +#: model_terms:ir.ui.view,arch_db:mail.view_document_file_kanban #: model_terms:ir.ui.view,arch_db:mrp.view_document_file_kanban_mrp msgid "Image is a link" msgstr "图像为链接" +#. module: base +#. odoo-python +#: code:addons/fields.py:0 +#, python-format +msgid "Image is not encoded in base64." +msgstr "图片未在base64中编码。" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "" +"Image size excessive, imported images must be smaller than 42 million pixel" +msgstr "图像尺寸过大,导入的图像必须小于4200万像素" + +#. module: base +#. odoo-python +#: code:addons/image.py:0 +#, python-format +msgid "" +"Image size excessive, uploaded images must be smaller than %s million " +"pixels." +msgstr "图像尺寸过大,上传的图像必须小于 %s 兆像素." + #. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__worksheet_document #: model:ir.model.fields,field_description:mrp_workorder.field_quality_point__worksheet_document @@ -15236,7 +39326,7 @@ msgstr "" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "立即付款" +msgstr "立即支付" #. module: mrp #: model:ir.model,name:mrp.model_mrp_immediate_production @@ -15255,6 +39345,7 @@ msgid "Immediate Production Lines" msgstr "立即生产明细" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "Immediate Production?" @@ -15281,6 +39372,7 @@ msgid "Immediate Transfer Lines" msgstr "立即调拨明细" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Immediate Transfer?" @@ -15296,13 +39388,59 @@ msgstr "立即生产?" msgid "Immediate transfer?" msgstr "立即调拨?" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade +msgid "Impacted Apps" +msgstr "受影响的应用" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.exception_on_mo msgid "Impacted Transfer(s):" msgstr "受影响的调拨:" -#. module: stock +#. module: base +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__model_ids +msgid "Impacted data models" +msgstr "影响的数据模型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__module_ids +msgid "Impacted modules" +msgstr "受影响的模块" + +#. module: base +#: model:ir.module.module,summary:base.module_auth_password_policy +msgid "Implement basic password policy configuration & check" +msgstr "实施基本的密码策略设置和检查" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_sequence__implementation +msgid "Implementation" +msgstr "实现" + +#. module: base +#: model:ir.module.module,summary:base.module_base_sparse_field +msgid "Implementation of sparse fields." +msgstr "稀疏字段的实施." + +#. module: base +#: model:ir.module.module,summary:base.module_pos_l10n_se +msgid "Implements the registered cash system" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_blackbox_be +msgid "" +"Implements the registered cash system, adhering to guidelines by FPS " +"Finance." +msgstr "" + +#. modules: stock, base, base_import +#. odoo-python +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 #: code:addons/stock/models/stock_quant.py:0 +#: model_terms:ir.ui.view,arch_db:base.view_base_import_language #, python-format msgid "Import" msgstr "导入" @@ -15312,36 +39450,122 @@ msgstr "导入" msgid "Import .qif files" msgstr "导入.qif 文件" +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "导入/导出" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_fr_fec_import +msgid "Import Accounting Data from FEC files" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_amazon +msgid "Import Amazon orders and sync deliveries" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_bank_statement_import_camt +msgid "Import CAMT Bank Statement" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_bank_statement_import_csv +msgid "Import CSV Bank Statement" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_winbooks_import +msgid "Import Data From Winbooks" +msgstr "" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Import FAQ" +msgstr "导入 FAQ" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_bank_statement_import_ofx +msgid "Import OFX Bank Statement" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_bank_statement_import_qif +msgid "Import QIF Bank Statement" +msgstr "" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_bom.py:0 #, python-format msgid "Import Template for Bills of Materials" msgstr "BOM的导入模板" #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #, python-format msgid "Import Template for Chart of Accounts" msgstr "会计科目表的导入模板" +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "Import Template for Customers" +msgstr "客户导入模板" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "Import Template for Inventory Adjustments" -msgstr "" +msgstr "库存调整导入模版" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "Import Template for Journal Items" msgstr "日记帐项目的导入模板" #. module: purchase +#. odoo-python #: code:addons/purchase/models/product.py:0 #, python-format msgid "Import Template for Products" msgstr "导入模板-产品" +#. module: base +#: model:ir.actions.act_window,name:base.action_view_base_import_language +#: model:ir.ui.menu,name:base.menu_view_base_import_language +#: model_terms:ir.ui.view,arch_db:base.view_base_import_language +msgid "Import Translation" +msgstr "导入翻译" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Import a File" +msgstr "导入文件" + +#. module: base +#: model:ir.module.module,description:base.module_currency_rate_live +msgid "Import exchange rates from the Internet.\n" +msgstr "" + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Import file has no content or is corrupt" +msgstr "导入文件没有内容或已损坏" + #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__module_account_bank_statement_import_csv msgid "Import in .csv format" @@ -15357,6 +39581,30 @@ msgstr "导入.ofx格式" msgid "Import in CAMT.053 format" msgstr "用 CAMT.053 格式导入" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Import preview failed due to:" +msgstr "导入预览失败因为:" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/import_records/import_records.xml:0 +#, python-format +msgid "Import records" +msgstr "导入记录" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "" +"Import timed out. Please retry. If you still encounter this issue, the file " +"may be too big for the system's configuration, try to split it (import less " +"records per file)." +msgstr "导入超时。请重试。如果仍然遇到此问题,则该文件针对系统配置来说可能太大,请尝试对其进行分割(每个文件导入更少的记录)。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Import your bank statements in CAMT.053" @@ -15378,12 +39626,38 @@ msgid "Import your bank statements in QIF" msgstr "用QIF格式导入银行对账单" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Import your first bill" msgstr "导入您的第一个帐单" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_edi +msgid "Import/Export Invoices From XML/PDF" +msgstr "从 XML/PDF 导入/导出结算单" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_edi_ubl_cii +msgid "Import/Export electronic invoices with UBL/CII" +msgstr "带有UBL/CII的电子进口/出口结算" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Imported file" +msgstr "导入文件" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Importing" +msgstr "导入中" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workorder.py:0 #, python-format msgid "" @@ -15391,11 +39665,23 @@ msgid "" "availabilities." msgstr "无法安排工单。 请检查工作中心的可用性。" -#. module: quality_control +#. module: base +#: model:ir.module.module,summary:base.module_account_base_import +msgid "Improved Import in Accounting" +msgstr "" + +#. modules: quality_control, stock_barcode #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_team_dashboard_view_kanban +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_picking_type_kanban msgid "In #{kanban_getcolorname(record.color.raw_value)}" msgstr "在 #{kanban_getcolorname(record.color.raw_value)}" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model__modules +#: model:ir.model.fields,field_description:base.field_ir_model_fields__modules +msgid "In Apps" +msgstr "应用程序" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_invoice_report__payment_state__in_payment #: model:ir.model.fields.selection,name:account.selection__account_move__payment_state__in_payment @@ -15403,7 +39689,7 @@ msgstr "在 #{kanban_getcolorname(record.color.raw_value)}" msgid "In Payment" msgstr "付款中" -#. modules: quality, quality_control, maintenance, mrp +#. modules: quality_control, maintenance, mrp, quality #: model:ir.model.fields.selection,name:maintenance.selection__maintenance_request__kanban_state__normal #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__state__progress #: model:ir.model.fields.selection,name:mrp.selection__mrp_workcenter__working_state__done @@ -15438,7 +39724,27 @@ msgstr "" msgid "In order for it to be admissible," msgstr "为了让它被接受," +#. module: stock +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"In order for it to be admissible, My Company (Chicago) must be notified of " +"any claim by means of a letter sent by recorded delivery to its registered " +"office within 8 days of the delivery of the goods or the provision of the " +"services." +msgstr "为使其可被受理,我公司(芝加哥)必须在交付货物或提供服务后8天内通过记录递送的方式将任何索赔通知到其注册办公室。" + +#. module: base +#: model_terms:res.company,invoice_terms_html:base.main_company +msgid "" +"In order for it to be admissible, My Company (San Francisco) must be " +"notified of any claim by means of a letter sent by recorded delivery to its " +"registered office within 8 days of the delivery of the goods or the " +"provision of the services." +msgstr "" +"为使其被受理,必须在交付货物或提供服务后 8 天内通过以挂号信方式将任何索赔通知 My Company (San Francisco) 其注册办事处." + #. module: purchase +#. odoo-python #: code:addons/purchase/models/purchase.py:0 #, python-format msgid "In order to delete a purchase order, you must cancel it first." @@ -15454,11 +39760,30 @@ msgstr "为了使这张账单生效,您必须" msgid "In order to validate this invoice, you must" msgstr "为了验证此结算单,您必须" -#. module: account +#. module: base +#: model:ir.module.module,shortdesc:base.module_iap +msgid "In-App Purchases" +msgstr "应用程序内购买" + +#. modules: base, account #: model_terms:ir.ui.view,arch_db:account.view_account_tax_search +#: model_terms:ir.ui.view,arch_db:base.view_currency_search +#: model_terms:ir.ui.view,arch_db:base.view_view_search msgid "Inactive" msgstr "未启用" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_alias.py:0 +#, python-format +msgid "Inactive Alias" +msgstr "未启用的别名" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_search +msgid "Inactive Users" +msgstr "未启用的用户" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__inalterable_hash #: model:ir.model.fields,field_description:account.field_account_move__inalterable_hash @@ -15483,11 +39808,29 @@ msgstr "不变性没有间隔序号 #" msgid "Inbound" msgstr "入" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__fetchmail_server_id +msgid "Inbound Mail Server" +msgstr "收件服务器" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__inbound_payment_method_line_ids msgid "Inbound Payment Methods" msgstr "境内支付方式" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/mailbox.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__notification_type__inbox +#, python-format +msgid "Inbox" +msgstr "收件箱" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_asset__directive__include +msgid "Include" +msgstr "包括" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax__analytic msgid "Include in Analytic Cost" @@ -15500,7 +39843,7 @@ msgid "Included in Price" msgstr "包含在价格中" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__income @@ -15523,29 +39866,53 @@ msgstr "收入科目" msgid "Income Account on Product Template" msgstr "产品模板的收入科目" -#. modules: stock, stock_account -#. openerp-web +#. module: stock +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_header.xml:0 #: model:ir.model.fields,field_description:stock.field_product_product__incoming_qty #: model:ir.model.fields,field_description:stock.field_product_template__incoming_qty #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_search -#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search #, python-format msgid "Incoming" msgstr "入库" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_invite_request_popup/call_invite_request_popup.xml:0 +#, python-format +msgid "Incoming Call..." +msgstr "来电..." + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant__in_date msgid "Incoming Date" msgstr "进货日期" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Incoming Draft Transfer" -msgstr "" +msgstr "进货的草稿调拨" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Incoming Email Servers" +msgstr "收件服务器" + +#. module: mail +#: model:ir.model,name:mail.model_fetchmail_server +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_search +msgid "Incoming Mail Server" +msgstr "收件服务器" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_email_server_tree +#: model:ir.ui.menu,name:mail.menu_action_fetchmail_server_tree +msgid "Incoming Mail Servers" +msgstr "收件服务器" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__incoming_move_line_ids @@ -15562,7 +39929,7 @@ msgstr "收到的付款" msgid "Incoming Shipment count" msgstr "收获数量" -#. modules: purchase_stock, stock +#. modules: stock, purchase_stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse__reception_steps #: model_terms:ir.ui.view,arch_db:purchase_stock.purchase_order_view_form_inherit msgid "Incoming Shipments" @@ -15577,7 +39944,25 @@ msgstr "" "收据发布到未结收据帐户. 在银行对帐小部件中,它们显示为蓝线.\n" "然后在未结收据帐户而不是应收据帐户中对银行交易进行对帐." +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Incompatible companies on records:" +msgstr "记录不兼容的公司:" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "" +"Incorrect Password, try again or click on Forgot Password to reset your " +"password." +msgstr "密码不正确,请重试或点选\"忘记密码\"来重置密码." + #. module: account +#. odoo-python #: code:addons/account/wizard/setup_wizards.py:0 #, python-format msgid "" @@ -15630,17 +40015,109 @@ msgid "" "buyer and seller." msgstr "贸易条款用来在买家和卖家之间区分交易成本和责任。" -#. module: mrp +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__index +msgid "Indexed" +msgstr "索引" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__index_content #: model:ir.model.fields,field_description:mrp.field_mrp_document__index_content +#: model_terms:ir.ui.view,arch_db:base.view_attachment_form msgid "Indexed Content" msgstr "已索引的内容" +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "印度" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll_account +msgid "India - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_purchase_stock +msgid "India Purchase and Warehouse Management" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_sale_stock +msgid "India Sales and Warehouse Management" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in +msgid "Indian - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_reports +msgid "Indian - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_edi +msgid "Indian - E-invoicing" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_edi_ewaybill +msgid "Indian - E-waybill" +msgstr "印度-电子运单" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_reports_gstr +msgid "Indian - GSTR India eFiling" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_reports_gstr_pos +msgid "Indian - GSTR India eFiling with POS" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_pos +msgid "Indian - Point of Sale" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_purchase +msgid "Indian - Purchase Report(GST)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_sale +msgid "Indian - Sale Report(GST)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_stock +msgid "Indian - Stock Report(GST)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_tcs_tds +msgid "Indian - TCS/TDS Accounting Report and Taxes" +msgstr "印度-TCS/TDS会计报告和税务" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_upi +msgid "Indian - UPI" +msgstr "印度-UPI" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll +msgid "Indian Payroll" +msgstr "" + #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "Indicate the product quantity you want to order." -msgstr "" +msgstr "指明您要订购的产品数量。" #. module: account #: model:ir.model.fields,help:account.field_account_move_line__tax_line_id @@ -15654,16 +40131,65 @@ msgid "" " quantity." msgstr "表示产品的理论数量和其计算数量之间的差距。" -#. module: account -#. openerp-web -#: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 -#: code:addons/account/static/src/xml/legacy_account_payment.xml:0 -#, python-format -msgid "Info" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_activity__automated +msgid "" +"Indicates this activity has been created automatically and not by any user." +msgstr "表示这个活动是自动生成的,不是任何用户创建。" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_partner__company_type__person +msgid "Individual" +msgstr "个人" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_res_partner_filter +msgid "Individuals" +msgstr "个人" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "印度尼西亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_id_efaktur +msgid "Indonesia E-faktur" msgstr "" -#. module: account +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_id +msgid "Indonesian - Accounting" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_industry_action +msgid "Industries" +msgstr "行业" + +#. module: base +#: model:ir.model,name:base.model_res_partner_industry +#: model:ir.model.fields,field_description:base.field_res_partner__industry_id +#: model:ir.model.fields,field_description:base.field_res_users__industry_id +#: model_terms:ir.ui.view,arch_db:base.res_partner_industry_view_form +#: model_terms:ir.ui.view,arch_db:base.res_partner_industry_view_tree +msgid "Industry" +msgstr "行业" + +#. modules: mail, account +#. odoo-javascript +#: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 +#: code:addons/account/static/src/xml/legacy_account_payment.xml:0 +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#, python-format +msgid "Info" +msgstr "信息" + +#. modules: base, account +#: model:ir.model.fields,field_description:base.field_ir_model__info #: model_terms:ir.ui.view,arch_db:account.view_move_line_form +#: model_terms:ir.ui.view,arch_db:base.module_form msgid "Information" msgstr "信息" @@ -15674,12 +40200,73 @@ msgid "" "processed at the latest to fulfill delivery on time." msgstr "可以定义何时最迟应处理制造订单以按时交货的日期信息。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_view_search +msgid "Inherit" +msgstr "继承" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_groups_form +msgid "Inherited" +msgstr "继承" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__inherit_id +msgid "Inherited View" +msgstr "继承的视图" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_view_form +msgid "Inherited Views" +msgstr "继承的视图" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model__inherited_model_ids +msgid "Inherited models" +msgstr "继承的模型" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Inherited view cannot have 'Groups' define on the record. Use 'groups' " +"attributes inside the view definition" +msgstr "承接的Qweb视图不能在记录中定义“组”。在视图定义中使用“组”属性" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_groups__implied_ids +msgid "Inherits" +msgstr "继承" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_move_kandan msgid "Initial Demand" msgstr "初始需求" +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_setup +msgid "Initial Setup Tools" +msgstr "初始化设置工具" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__initial_res_model +msgid "Initial model" +msgstr "初始模型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_profile__init_stack_trace +msgid "Initial stack trace" +msgstr "初始堆栈追踪" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__inline +msgid "Inline Edit" +msgstr "内联编辑" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Input" @@ -15696,11 +40283,44 @@ msgstr "库存计价的入库科目" msgid "Input Location" msgstr "进货位置" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__address_view_id +msgid "Input View" +msgstr "输入视图" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#: code:addons/mail/static/src/components/call_settings_menu/call_settings_menu.xml:0 +#, python-format +msgid "Input device" +msgstr "输入设备" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Insert your terms & conditions here..." msgstr "在这里插入您的条款和条件…" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#: model_terms:ir.ui.view,arch_db:base.module_tree +#, python-format +msgid "Install" +msgstr "安装" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_config_installer +msgid "Install Apps" +msgstr "安装应用程序" + +#. module: base +#: model:ir.model,name:base.model_base_language_install +msgid "Install Language" +msgstr "安装语言" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Install More Packages" @@ -15711,12 +40331,37 @@ msgstr "安装更多会计包" msgid "Install new module" msgstr "安装新模块" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__state__installed +#: model:ir.model.fields.selection,name:base.selection__ir_module_module_dependency__state__installed +#: model:ir.model.fields.selection,name:base.selection__ir_module_module_exclusion__state__installed +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Installed" +msgstr "已安装" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Installed Features" +msgstr "已安装的功能" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__latest_version +msgid "Installed Version" +msgstr "已安装的版本" + +#. module: base +#: model:ir.module.module,description:base.module_bus +msgid "Instant Messaging Bus allow you to send messages to users, in live." +msgstr "您可以通过即时消息给用户发送联机即时信息,类似Line,但限于odoo的web框架内." + #. module: mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp_workorder.add_quality_check_from_tablet msgid "Instruction" msgstr "" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/quality.py:0 #, python-format msgid "Instruction:" @@ -15730,23 +40375,120 @@ msgstr "" msgid "Instructions" msgstr "指令" -#. module: account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "日历视图缺少字段!" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Insufficient fields to generate a Calendar View for %s, missing a date_stop " +"or a date_delay" +msgstr "创建日历视图 %s 需要的字段不足,缺少 date_stop 或 date_delay" + +#. modules: base, account #: model:ir.model.fields.selection,name:account.selection__account_report_column__figure_type__integer #: model:ir.model.fields.selection,name:account.selection__account_report_expression__figure_type__integer +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__integer msgid "Integer" msgstr "整数" +#. module: base +#: model:ir.module.module,description:base.module_mail_plugin +msgid "" +"Integrate Odoo with your mailbox, get information about contacts directly " +"inside your mailbox, log content of emails as internal notes" +msgstr "将 Odoo 与您的信箱集成,直接在您的信箱中获取有关联系人的信息,将电子邮件内容记录为内部纪录" + +#. module: base +#: model:ir.module.module,summary:base.module_marketing_automation_sms +msgid "Integrate SMS Marketing in marketing campaigns" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_loyalty +msgid "Integrate discount and loyalty programs mechanisms in sales orders." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_sale_loyalty_delivery +msgid "Integrate free shipping in sales orders." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_helpdesk_mail_plugin +msgid "" +"Integrate helpdesk with your mailbox.\n" +" Turn emails received in your mailbox into Tickets and log their content as internal notes." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_six +msgid "Integrate your POS with a Six payment terminal" +msgstr "将您的 POS 与 Six 支付终端集成" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_stripe +msgid "Integrate your POS with a Stripe payment terminal" +msgstr "将您的POS与Stripe支付终端集成" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_adyen +msgid "Integrate your POS with an Adyen payment terminal" +msgstr "将您的 POS 与 Adyen 支付终端集成" + +#. module: base +#: model:ir.module.module,summary:base.module_project_mail_plugin +msgid "Integrate your inbox with projects" +msgstr "将您的收件夹与专案集成" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_payroll_fleet +msgid "Integration between Payroll and Fleet." +msgstr "" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_channel_integrations_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_form +msgid "Integrations" +msgstr "集成" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_inter_company_rules +#: model:ir.module.module,shortdesc:base.module_sale_purchase_inter_company_rules +msgid "Inter Company Module for Sale/Purchase Orders and Invoices" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_res_company__transfer_account_id msgid "Inter-Banks Transfer Account" msgstr "银行间转账科目" #. module: stock +#. odoo-python #: code:addons/stock/models/res_company.py:0 #, python-format msgid "Inter-warehouse transit" msgstr "仓库间中转" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_rule_form +msgid "Interaction between rules" +msgstr "规则间的交互" + +#. module: base +#: model:ir.module.module,summary:base.module_account_inter_company_rules +#: model:ir.module.module,summary:base.module_sale_purchase_inter_company_rules +msgid "Intercompany SO/PO/INV rules" +msgstr "" + #. module: account #: model:ir.model.fields,help:account.field_res_config_settings__transfer_account_id msgid "" @@ -15771,6 +40513,11 @@ msgstr "内部" msgid "Internal Group" msgstr "内部群组" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_groups_search +msgid "Internal Groups" +msgstr "内部群组" + #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_location__usage__internal msgid "Internal Location" @@ -15785,21 +40532,28 @@ msgstr "内部位置" #. module: maintenance #: model:maintenance.team,name:maintenance.equipment_team_maintenance msgid "Internal Maintenance" -msgstr "内部维护" +msgstr "电气维修班" -#. modules: maintenance, account +#. modules: maintenance, base, account #: model:ir.model.fields,field_description:account.field_account_account__note +#: model_terms:ir.ui.view,arch_db:base.view_partner_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_form msgid "Internal Notes" msgstr "内部说明" -#. modules: account, stock +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__internal +msgid "Internal Only" +msgstr "仅内部的" + +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__internal_index #: model:ir.model.fields,field_description:stock.field_stock_lot__ref msgid "Internal Reference" msgstr "内部参考" -#. modules: account, stock +#. modules: stock, account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #: model:ir.model.fields,field_description:account.field_account_payment__is_internal_transfer #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__code__internal @@ -15813,7 +40567,8 @@ msgstr "内部转账" msgid "Internal Transfer Account" msgstr "内部转账账户" -#. modules: account, stock +#. modules: stock, account +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #: model:ir.actions.act_window,name:account.action_account_payments_transfer #: model:stock.picking.type,name:stock.picking_type_internal @@ -15828,12 +40583,27 @@ msgstr "内部转账" msgid "Internal Transit Location" msgstr "内部中转位置" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_move_line__account_type #: model:ir.model.fields,field_description:stock.field_stock_warehouse__int_type_id msgid "Internal Type" msgstr "内部类型" +#. module: base +#: model:res.groups,name:base.group_user +msgid "Internal User" +msgstr "内部用户" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_search +msgid "Internal Users" +msgstr "内部用户" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.notification_preview +msgid "Internal communication:" +msgstr "国际交流:" + #. module: account #: model:ir.model.fields,help:account.field_account_report_line__account_codes_formula msgid "" @@ -15858,6 +40628,11 @@ msgstr "用于缩短域引擎的 expression_ids 创建的内部字段" msgid "Internal locations among descendants" msgstr "下级的内部位置" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Internal notes..." +msgstr "内部说明..." + #. module: stock #: model:ir.model.fields,help:stock.field_stock_lot__ref msgid "" @@ -15865,6 +40640,12 @@ msgid "" "lot/serial number" msgstr "内部参考号码,它不同于制造商的批次/序列号码" +#. module: stock_barcode +#: model:ir.model.fields,help:stock_barcode.field_stock_move_line__product_barcode +#: model:ir.model.fields,help:stock_barcode.field_stock_scrap__product_barcode +msgid "International Article Number used for product identification." +msgstr "国际物品编码用于产品标识。" + #. modules: purchase_stock, account #: model:ir.model.fields,help:account.field_account_bank_statement_line__invoice_incoterm_id #: model:ir.model.fields,help:account.field_account_move__invoice_incoterm_id @@ -15877,57 +40658,367 @@ msgid "" "used in international transactions." msgstr "国际商业条款是一系列用于国际交易的事先定义的商业条款。" +#. module: base +#: model:ir.module.module,shortdesc:base.module_iot +msgid "Internet of Things" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_internet_of_things_(iot) +#: model:ir.module.category,name:base.module_category_manufacturing_internet_of_things_(iot) +msgid "Internet of Things (IoT)" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron__interval_number +msgid "Interval Number" +msgstr "间隔号" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron__interval_type +msgid "Interval Unit" +msgstr "间隔单位" + #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__module_account_intrastat msgid "Intrastat" msgstr "" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_intrastat +msgid "Intrastat Reports" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodulereference +msgid "Introspection report on objects" +msgstr "对象的自省报告" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_bank_statement_search msgid "Invalid" msgstr "无效" #. module: account +#. odoo-python #: code:addons/account/models/partner.py:0 #, python-format msgid "Invalid \"Zip Range\", please configure it properly." msgstr "无效的\"邮编范围\",请正确的配置" +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"Invalid \"order\" specified (%s). A valid \"order\" specification is a " +"comma-separated list of valid field names (optionally followed by asc/desc " +"for the direction)" +msgstr "指定的\"订单\"无效(%s). 有效的\"顺序\"规范是以逗号分隔的有效字段名称列表(可选后跟 升/降 表示顺序)" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "Invalid 'group by' parameter" +msgstr "无效的「分组」参数" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_default.py:0 +#: code:addons/base/models/ir_default.py:0 +#, python-format +msgid "Invalid JSON format in Default Value field." +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Invalid aggregation function %r." +msgstr "无效聚合函数 %r." + +#. module: base_import +#. odoo-python +#: code:addons/base_import/models/base_import.py:0 +#, python-format +msgid "Invalid cell value at row %(row)s, column %(col)s: %(cell_value)s" +msgstr "无效的单元格数据在行%(row)s, 列%(col)s: %(cell_value)s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid composed field %(definition)s in %(use)s" +msgstr "%(use)s 中的组合字段 %(definition)s 无效" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "Invalid database id '%s' for the field '%%(field)s'" +msgstr "数据库 id号 '%s' 在字段'%%(field)s'无效" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "" +"Invalid date/time format directive specified. Please refer to the list of " +"allowed directives, displayed when you edit a language." +msgstr "日期、时间格式不正确. 请引用您的语言设置中的日期/时间格式输入." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid domain format %(expr)s in %(use)s" +msgstr "%(use)s 中的域格式 %(expr)s 无效" + #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Invalid domain left operand %s" msgstr "非法的域左作业符 %s" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Invalid domain operator %s" msgstr "非法的域操作符 %s" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "Invalid domain right operand %s" msgstr "非法的域右操作符 %s" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__failure_type__mail_email_invalid +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__failure_type__mail_email_invalid +msgid "Invalid email address" +msgstr "无效的EMail地址" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_blacklist.py:0 +#, python-format +msgid "Invalid email address %r" +msgstr "无效的EMail地址 %r" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_alias.py:0 +#, python-format +msgid "" +"Invalid expression, it must be a literal python dictionary definition e.g. " +"\"{'field': 'value'}\"" +msgstr "错误的表达式,必须是字面python字典定义,例如: \"{'field': 'value'}\"" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_default.py:0 +#: code:addons/base/models/ir_default.py:0 +#, python-format +msgid "Invalid field %s.%s" +msgstr "无效的字段 %s.%s" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Invalid field specification %r." +msgstr "无效字段规范 %r." + #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #, python-format msgid "Invalid fiscal year last day" msgstr "会计年度最后一天无效" +#. module: base +#. odoo-python +#: code:addons/base/models/assetsbundle.py:0 +#: code:addons/base/models/assetsbundle.py:0 +#, python-format +msgid "Invalid inherit mode. Module %r and template name %r" +msgstr "无效的继承模式. 模块 %r 以及 模板名称 %r" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_ui_view_inheritance_mode +msgid "" +"Invalid inheritance mode: if the mode is 'extension', the view must extend " +"an other view" +msgstr "无效继承模式:如果模式是「扩展」,视图必须扩展其它视图" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_ui_view_qweb_required_key +msgid "Invalid key: QWeb view should have a key" +msgstr "无效密钥: QWeb 视图应该有一个密钥" + +#. module: base +#. odoo-python +#: code:addons/template_inheritance.py:0 +#, python-format +msgid "Invalid mode attribute:" +msgstr "无效的模式属性:" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_actions.py:0 +#: code:addons/base/models/ir_actions.py:0 +#: code:addons/base/models/ir_actions.py:0 +#: code:addons/base/models/ir_actions.py:0 +#, python-format +msgid "Invalid model name %r in action definition." +msgstr "动作定义中使用了无效的模型名称 %r." + +#. module: base +#. odoo-python +#: code:addons/template_inheritance.py:0 +#, python-format +msgid "Invalid position attribute: '%s'" +msgstr "无效的位置属性: '%s'" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_sequence.py:0 +#: code:addons/base/models/ir_sequence.py:0 +#, python-format +msgid "Invalid prefix or suffix for sequence '%s'" +msgstr "无效的序号 '%s' 前缀或后缀" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread_blacklist.py:0 +#: code:addons/mail/models/mail_thread_blacklist.py:0 +#, python-format +msgid "Invalid primary email field on model %s" +msgstr "初级邮件模型中无效的部分 %s" + +#. module: stock +#. odoo-python +#: code:addons/stock/models/product.py:0 +#, python-format +msgid "" +"Invalid rule's configuration, the following rule causes an endless loop: %s" +msgstr "无效规则配置,以下规则导致无限循环:%s" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "Invalid search criterion" +msgstr "搜索条件不正确" + +#. modules: mail, base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/mail/models/fetchmail.py:0 +#, python-format +msgid "" +"Invalid server name !\n" +" %s" +msgstr "" +"无效的服务器名称 !\n" +" %s" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid special '%(value)s' in button" +msgstr "按钮中的特殊值\"%(value)s\"无效" + +#. module: base +#. odoo-python +#: code:addons/template_inheritance.py:0 +#, python-format +msgid "Invalid specification for moved nodes: %r" +msgstr "移动节点的无效规范: %r" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_config.py:0 +#: code:addons/base/models/res_config.py:0 +#, python-format +msgid "Invalid template user. It seems it has been deleted." +msgstr "无效的模板用户. 它可能已经被删除了." + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_property.py:0 +#: code:addons/base/models/ir_property.py:0 +#, python-format +msgid "Invalid type" +msgstr "无效的类型" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_default.py:0 +#: code:addons/base/models/ir_default.py:0 +#, python-format +msgid "Invalid value for %s.%s: %s" +msgstr "%s.%s: %s 的无效值" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Invalid value when creating a channel with members, only 4 or 6 are allowed." +msgstr "创建包含成员的频道时的值无效,仅允许 4 或 6 个。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Invalid value when creating a channel with memberships, only 0 is allowed." +msgstr "创建具有会员资格的频道时的值无效,仅允许为 0。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid view %(name)s definition in %(file)s" +msgstr "%(file)s 中的视图 %(name)s 定义无效" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Invalid xmlid %(xmlid)s for button of type action." +msgstr "类型动作按钮的 xmlid %(xmlid)s 无效." + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant__inventory_quantity_auto_apply msgid "Inventoried Quantity" msgstr "盘点的数量" -#. module: stock +#. modules: stock, base #: model:ir.actions.server,name:stock.action_view_inventory_tree #: model:ir.actions.server,name:stock.action_view_quants #: model:ir.model.fields,field_description:stock.field_stock_move__is_inventory #: model:ir.model.fields,field_description:stock.field_stock_move_line__is_inventory +#: model:ir.module.category,name:base.module_category_inventory +#: model:ir.module.category,name:base.module_category_inventory_inventory +#: model:ir.module.module,shortdesc:base.module_stock #: model:ir.ui.menu,name:stock.menu_stock_root +#: model_terms:ir.ui.view,arch_db:base.user_groups_view #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_search @@ -15936,9 +41027,13 @@ msgstr "盘点的数量" msgid "Inventory" msgstr "库存" -#. module: stock +#. modules: stock, stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 #: model_terms:ir.ui.view,arch_db:stock.product_product_stock_tree #: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_tree_editable +#, python-format msgid "Inventory Adjustment" msgstr "库存调整" @@ -15958,8 +41053,12 @@ msgstr "库存调整参考/原因" msgid "Inventory Adjustment Warning" msgstr "库存调整警告" -#. module: stock +#. modules: stock, stock_barcode +#. odoo-python +#. odoo-javascript #: code:addons/stock/models/stock_quant.py:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 #: model:ir.ui.menu,name:stock.menu_action_inventory_tree #, python-format msgid "Inventory Adjustments" @@ -15987,8 +41086,8 @@ msgstr "盘点频率(天数)" msgid "Inventory Location" msgstr "库存位置" -#. module: stock_account -#: model:ir.model,name:stock_account.model_stock_location +#. module: stock_barcode +#: model:ir.model,name:stock_barcode.model_stock_location msgid "Inventory Locations" msgstr "库存位置" @@ -16003,12 +41102,12 @@ msgid "Inventory Moves" msgstr "库存移动" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Inventory On Hand" -msgstr "" +msgstr "在手库存" #. module: stock #: model:ir.actions.act_window,name:stock.stock_picking_type_action @@ -16030,24 +41129,14 @@ msgstr "库存参考/原因" msgid "Inventory Routes" msgstr "库存路线" -#. modules: stock, stock_account -#: code:addons/stock_account/__init__.py:0 -#: code:addons/stock_account/__init__.py:0 -#: code:addons/stock_account/models/account_chart_template.py:0 -#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation -#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation -#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_form_editable #: model_terms:ir.ui.view,arch_db:stock.view_stock_quant_tree -#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock -#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search -#, python-format msgid "Inventory Valuation" msgstr "库存计价" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/views/list/inventory_report_list.xml:0 #: model:ir.model.fields,field_description:stock.field_stock_quantity_history__inventory_datetime #, python-format @@ -16058,14 +41147,83 @@ msgstr "某日库存" #: model:ir.model.fields,help:mrp_workorder.field_mrp_workorder__move_line_ids msgid "" "Inventory moves for which you must scan a lot number at this work order" -msgstr "库存移动,你必须在此工单扫描批次号码" +msgstr "库存移动,您必须在此工单扫描批次号码" + +#. module: base +#: model:ir.module.module,summary:base.module_purchase_price_diff +#: model:ir.module.module,summary:base.module_stock_account +msgid "Inventory, Logistic, Valuation, Accounting" +msgstr "库存,物流,计价,会计" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency_rate__inverse_company_rate +msgid "Inverse Company Rate" +msgstr "倒置公司利率" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__inverse_rate +msgid "Inverse Rate" +msgstr "倒置利率" #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__tax_tag_invert msgid "Invert Tags" msgstr "反转标签" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_invitation_form/channel_invitation_form.xml:0 +#, python-format +msgid "Invitation Link" +msgstr "邀请链接" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__invitation_url +msgid "Invitation URL" +msgstr "邀请URL" + +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_wizard_invite.py:0 +#, python-format +msgid "Invitation to follow %(document_model)s: %(document_name)s" +msgstr "邀请关注 %(document_model)s: %(document_name)s" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/chatter.js:0 +#, python-format +msgid "Invite Follower" +msgstr "邀请关注者" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_invitation_form/channel_invitation_form.xml:0 +#, python-format +msgid "Invite people" +msgstr "邀请人员" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_invitation_form.js:0 +#, python-format +msgid "Invite to Channel" +msgstr "邀请加入频道" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_invitation_form.js:0 +#, python-format +msgid "Invite to group chat" +msgstr "邀请加入群聊" + +#. module: mail +#: model:ir.model,name:mail.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "邀请向导" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: model:ir.model.fields,field_description:account.field_res_partner__invoice_warn #: model:ir.model.fields,field_description:account.field_res_users__invoice_warn @@ -16085,6 +41243,11 @@ msgstr "结算单" msgid "Invoice #" msgstr "结算单 #" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_partner__type__invoice +msgid "Invoice Address" +msgstr "结算地址" + #. module: account #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoice Analysis" @@ -16096,6 +41259,7 @@ msgid "Invoice Count" msgstr "结算单笔数" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: model:mail.message.subtype,description:account.mt_invoice_created #: model:mail.message.subtype,name:account.mt_invoice_created @@ -16136,8 +41300,7 @@ msgstr "未付结算单" msgid "Invoice Layout" msgstr "结算单格式" -#. modules: account, stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id +#. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter msgid "Invoice Line" msgstr "结算单明细" @@ -16202,6 +41365,7 @@ msgid "Invoice Totals" msgstr "发票总计" #. module: account +#. odoo-python #: code:addons/account/models/account_tax.py:0 #, python-format msgid "" @@ -16210,6 +41374,7 @@ msgid "" msgstr "结算单和退款通知分配应分别包含一行基数。" #. module: account +#. odoo-python #: code:addons/account/models/account_tax.py:0 #, python-format msgid "" @@ -16217,6 +41382,7 @@ msgid "" msgstr "结算单和退款通知分配应具有相同的行数。" #. module: account +#. odoo-python #: code:addons/account/models/account_tax.py:0 #, python-format msgid "" @@ -16225,6 +41391,7 @@ msgid "" msgstr "结算单和退款通知的分配应该匹配(相同的百分比,以相同的顺序)。" #. module: account +#. odoo-python #: code:addons/account/models/account_tax.py:0 #, python-format msgid "" @@ -16254,11 +41421,6 @@ msgstr "结算单发送与打印" msgid "Invoice validated" msgstr "结算单已验证" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value -msgid "Invoice value correction with invoice currency" -msgstr "" - #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__invoice_date #: model:ir.model.fields,field_description:account.field_account_move__invoice_date @@ -16286,6 +41448,7 @@ msgid "Invoiced" msgstr "已结算" #. module: account +#. odoo-python #: code:addons/account/controllers/portal.py:0 #: model:ir.actions.act_window,name:account.action_move_out_invoice_type #: model:ir.actions.report,name:account.account_invoices @@ -16302,6 +41465,11 @@ msgstr "已结算" msgid "Invoices" msgstr "结算单" +#. module: base +#: model:ir.module.module,summary:base.module_account +msgid "Invoices & Payments" +msgstr "结算 & 支付" + #. module: account #: model_terms:ir.ui.view,arch_db:account.portal_my_home_invoice #: model_terms:ir.ui.view,arch_db:account.portal_my_home_menu_invoice @@ -16329,7 +41497,13 @@ msgstr "结算单统计" msgid "Invoices and Incoming Shipments" msgstr "开票及入向运输" +#. module: base +#: model:ir.module.module,summary:base.module_documents_account +msgid "Invoices from Documents" +msgstr "" + #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Invoices owed to you" @@ -16352,20 +41526,23 @@ msgid "Invoices without Payment" msgstr "未付款的结算单" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Invoices/Bills Partial Match if Underpaid" msgstr "如果工资未足额发放,结算单/账单部分匹配" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Invoices/Bills Perfect Match" msgstr "结算单/账单完美匹配" -#. modules: account, purchase +#. modules: purchase, base, account +#: model:ir.module.category,name:base.module_category_accounting_accounting +#: model:ir.module.module,shortdesc:base.module_account #: model:ir.ui.menu,name:account.account_invoicing_menu -#: model:ir.ui.menu,name:account.menu_finance #: model_terms:ir.ui.view,arch_db:account.digest_digest_view_form #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form @@ -16378,6 +41555,66 @@ msgstr "开票" msgid "Invoicing App Legacy" msgstr "开票应用旧版" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hw_posbox_homepage +msgid "IoT Box Homepage" +msgstr "物联网盒子(IoT Box)主页" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder_iot +msgid "IoT features for Work Order" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_delivery_iot +msgid "IoT for Delivery" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_iot +msgid "IoT for PoS" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_restaurant_iot +msgid "IoT for restaurants" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_ir_profile +msgid "Ir profile" +msgstr "IR简介" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "伊朗" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "伊拉克" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "爱尔兰" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ie +msgid "Ireland - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_lock +msgid "Irreversible Lock Date" +msgstr "不可逆转的锁定日期" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_followers__is_active +msgid "Is Active" +msgstr "处于启用状态" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_amount__between #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_template__match_amount__between @@ -16389,23 +41626,46 @@ msgstr "介于" msgid "Is Check" msgstr "" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__group_by_is_company +msgid "Is Company" +msgstr "公司" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement__is_complete #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__statement_complete msgid "Is Complete" msgstr "已经完成" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_move_line__is_completed +msgid "Is Completed" +msgstr "已完成" + #. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__component_tracking msgid "Is Component Tracked" msgstr "部件已追溯" -#. module: account +#. module: base +#: model:ir.model.fields,field_description:base.field_res_currency__is_current_company_currency +msgid "Is Current Company Currency" +msgstr "当前公司货币" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__is_current_user_or_guest_author +#: model:ir.model.fields,field_description:mail.field_mail_message__is_current_user_or_guest_author +msgid "Is Current User Or Guest Author" +msgstr "是当前用户还是游客作者" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__is_mail_template_editor +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__is_mail_template_editor +#: model:ir.model.fields,field_description:mail.field_mail_composer_mixin__is_mail_template_editor msgid "Is Editor" msgstr "编辑器" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_is_follower #: model:ir.model.fields,field_description:account.field_account_account_template__message_is_follower #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_is_follower @@ -16416,6 +41676,13 @@ msgstr "编辑器" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_is_follower #: model:ir.model.fields,field_description:account.field_res_company__message_is_follower #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_is_follower +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_is_follower +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_is_follower +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_is_follower +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_is_follower +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_is_follower +#: model:ir.model.fields,field_description:mail.field_res_partner__message_is_follower +#: model:ir.model.fields,field_description:mail.field_res_users__message_is_follower #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_is_follower #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_is_follower #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_is_follower @@ -16489,6 +41756,11 @@ msgstr "大于" msgid "Is Matched With a Bank Statement" msgstr "与银行对账单相符" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__is_member +msgid "Is Member" +msgstr "是会员" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__is_move_sent #: model:ir.model.fields,field_description:account.field_account_move__is_move_sent @@ -16506,6 +41778,17 @@ msgstr "不平衡" msgid "Is Printed" msgstr "是否已打印" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__is_public +#: model:ir.model.fields,field_description:base.field_res_users__is_public +msgid "Is Public" +msgstr "是公开" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_notification__is_read +msgid "Is Read" +msgstr "已读" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__is_reconciled #: model:ir.model.fields,field_description:account.field_account_payment__is_reconciled @@ -16565,6 +41848,12 @@ msgstr "是阻塞理由" msgid "Is a Blocking Reason?" msgstr "是阻塞原因?" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__is_company +#: model:ir.model.fields,field_description:base.field_res_users__is_company +msgid "Is a Company" +msgstr "是公司" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__return_location msgid "Is a Return Location?" @@ -16575,6 +41864,21 @@ msgstr "是一个退回位置?" msgid "Is a Scrap Location?" msgstr "是一个报废位置?" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__is_chat +msgid "Is a chat" +msgstr "是聊天" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_users_settings__is_discuss_sidebar_category_channel_open +msgid "Is discuss sidebar category channel open?" +msgstr "是否打开讨论侧边栏类别聊天?" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_users_settings__is_discuss_sidebar_category_chat_open +msgid "Is discuss sidebar category chat open?" +msgstr "是否打开讨论侧边栏类别聊天?" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move__is_initial_demand_editable #: model:ir.model.fields,field_description:stock.field_stock_move_line__is_initial_demand_editable @@ -16591,17 +41895,38 @@ msgstr "迟到" msgid "Is late or will be late depending on the deadline and scheduled date" msgstr "迟到或将迟到,具体取决于截止日期和预定日期" -#. module: mrp +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__is_muted +msgid "Is microphone muted" +msgstr "麦克风静音" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__is_pinned +msgid "Is pinned on the interface" +msgstr "是否置顶" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__public #: model:ir.model.fields,field_description:mrp.field_mrp_document__public msgid "Is public document" -msgstr "这是公开文档" +msgstr "是公开文档" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move__is_quantity_done_editable msgid "Is quantity done editable" msgstr "完成数量是否可以编辑" -#. modules: mrp_workorder, mrp +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__is_camera_on +msgid "Is sending user video" +msgstr "正在发送用户视频" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__is_screen_sharing_on +msgid "Is sharing the screen" +msgstr "正在共享屏幕" + +#. modules: mrp, mrp_workorder #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__is_user_working #: model:ir.model.fields,field_description:mrp_workorder.field_quality_check__is_user_working msgid "Is the Current User Working" @@ -16612,12 +41937,44 @@ msgstr "当前用户正在工作吗" msgid "Is the Sale Module Installed" msgstr "销售模块是否已安装" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Islam" +msgstr "伊斯兰教徒" + +#. module: base +#: model:res.country,name:base.im +msgid "Isle of Man" +msgstr "曼恩岛" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "以色列" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_il +msgid "Israel - Accounting" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_participant_card/call_participant_card.xml:0 +#, python-format +msgid "Issue with audio" +msgstr "音频问题" + #. module: account #: model:ir.model.fields,help:account.field_account_journal__alias_name msgid "It creates draft invoices and bills by sending an email." msgstr "它通过发送电邮创建草稿结算单和账单。" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workcenter.py:0 #, python-format msgid "It has already been unblocked." @@ -16631,6 +41988,16 @@ msgid "It indicates that the invoice/payment has been sent." msgstr "它指示已发送结算单/付款。" #. module: stock +#. odoo-python +#: code:addons/stock/models/stock_move_line.py:0 +#, python-format +msgid "" +"It is not allowed to import reserved quantity, you have to use the quantity " +"directly." +msgstr "" + +#. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "" @@ -16638,6 +42005,7 @@ msgid "" msgstr "您不能预留超出库存的%s 产品。" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workorder.py:0 #, python-format msgid "" @@ -16646,42 +42014,378 @@ msgid "" msgstr "无法取消安排一个工单。您应该取消安排制造订单,以便取消安排所有链接的作业。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "" "It is not possible to unreserve more products of %s than you have in stock." msgstr "不能取消预留超过库存数量的 %s 产品。" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description +msgid "" +"It is very important that this description be clear\n" +" and complete, it will be the only way to\n" +" identify the key once created." +msgstr "清楚和完整的描述是非常重要的,这将是标识密钥一旦创建的唯一方法." + #. module: stock #: model:ir.model.fields,help:stock.field_stock_picking__move_type msgid "It specifies goods to be deliver partially or all at once" msgstr "指定货物是部分交货,还是一次性交货" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "It was previously '%(previous)s' and it is now '%(current)s'." msgstr "以前的是 '%(previous)s' 现在的是 '%(current)s'." +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "意大利" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_it +msgid "Italy - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_it_reports +msgid "Italy - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_it_edi +msgid "Italy - E-invoicing" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_it_edi_withholding +msgid "Italy - E-invoicing (Withholding)" +msgstr "意大利-电子发票(预扣税)" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_production__is_planned #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__is_planned msgid "Its Operations are Planned" msgstr "已安排其作业" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_J +msgid "J - INFORMATION AND COMMUNICATION" +msgstr "J - 信息和通信" + #. modules: stock, mrp #: model:ir.model.fields,field_description:mrp.field_mrp_production__json_popover #: model:ir.model.fields,field_description:stock.field_stock_picking__json_popover msgid "JSON data for the popover widget" msgstr "弹出式窗口小部件的JSON数据" -#. modules: account, stock +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "牙买加" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__1 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__1 msgid "January" msgstr "一月" -#. modules: account, stock_account +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: model:res.country,name:base.jp +#, python-format +msgid "Japan" +msgstr "日本" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_jp +msgid "Japan - Accounting" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese" +msgstr "日本" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese castle" +msgstr "日本城堡" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese dolls" +msgstr "日本玩偶" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese post office" +msgstr "日本邮政局" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese symbol for beginner" +msgstr "适用于初学者的日语符号" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese wind socks" +msgstr "日本风向袋" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “acceptable” button" +msgstr "日语“可接受”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “application” button" +msgstr "日语“应用”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “bargain” button" +msgstr "日语“减价品”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “congratulations” button" +msgstr "日语“祝贺”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “discount” button" +msgstr "日语“折扣”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “free of charge” button" +msgstr "日语“免费”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “here” button" +msgstr "日语“此处”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “monthly amount” button" +msgstr "日语“月总量”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “no vacancy” button" +msgstr "日语“无空房”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “not free of charge” button" +msgstr "日语“非免费”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “open for business” button" +msgstr "日语“营业”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “passing grade” button" +msgstr "日语“及格分数”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “prohibited” button" +msgstr "日语“禁止”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “reserved” button" +msgstr "日语“预留”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “secret” button" +msgstr "日语“保密”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “service charge” button" +msgstr "日语“服务费”按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Japanese “vacancy” button" +msgstr "日语“有空房”按钮" + +#. module: base +#: model:res.country,name:base.je +msgid "Jersey" +msgstr "泽西岛" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Jew" +msgstr "犹太教徒" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Jewish" +msgstr "犹太" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__function +#: model:ir.model.fields,field_description:base.field_res_users__function +msgid "Job Position" +msgstr "工作岗位" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_kanban +msgid "Join" +msgstr "加入" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_action_list_view.js:0 +#, python-format +msgid "Join Call" +msgstr "加入语音会议" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/welcome_view/welcome_view.xml:0 +#, python-format +msgid "Join Channel" +msgstr "加入频道" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#, python-format +msgid "Join Video Call" +msgstr "加入视频会议" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_channel_action_view +msgid "Join a group" +msgstr "加入群组" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Jolly Roger" +msgstr "海盗旗" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "约旦" + +#. module: account #: model:ir.model,name:account.model_account_journal #: model:ir.model.fields,field_description:account.field_account_accrued_orders_wizard__journal_id #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__journal_id @@ -16695,7 +42399,6 @@ msgstr "一月" #: model:ir.model.fields,field_description:account.field_account_payment_register__journal_id #: model:ir.model.fields,field_description:account.field_account_reconcile_model_line__journal_id #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__linked_journal_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:account.view_account_journal_search @@ -16712,7 +42415,8 @@ msgid "Journal Currency" msgstr "日记帐币种" #. module: account -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/account/models/account_journal_dashboard.py:0 #: code:addons/account/static/src/components/journal_dashboard_activity/journal_dashboard_activity.js:0 #: code:addons/account/static/src/js/legacy_mail_activity.js:0 @@ -16731,17 +42435,17 @@ msgstr "会计凭证" msgid "Journal Entries by Date" msgstr "‎会计凭证" -#. modules: account, stock_account -#. openerp-web +#. modules: purchase_stock, account +#. odoo-python +#. odoo-javascript #: code:addons/account/models/account_move.py:0 #: code:addons/account/models/account_payment.py:0 #: code:addons/account/static/src/components/journal_dashboard_activity/journal_dashboard_activity.js:0 #: code:addons/account/static/src/js/legacy_mail_activity.js:0 -#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model,name:purchase_stock.model_account_move #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__move_id #: model:ir.model.fields,field_description:account.field_account_move_line__move_id #: model:ir.model.fields,field_description:account.field_account_payment__move_id -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id #: model:ir.model.fields.selection,name:account.selection__account_move__move_type__entry #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter @@ -16752,14 +42456,16 @@ msgid "Journal Entry" msgstr "会计凭证" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "" "Journal Entry %s is not valid. In order to proceed, the journal items must " "include one and only one outstanding payments/receipts account." -msgstr "会计凭证 %s 无效。要继续,会计分录必须包括且仅包括一个未付款/收据账户。" +msgstr "会计凭证 %s 无效。要继续,会计分录必须包括且仅包括一个未支付/收据账户。" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "" @@ -16769,6 +42475,7 @@ msgid "" msgstr "会计凭证 %s 无效。要继续,会计分录必须包括且仅包括一个应收账款/应付账款(内部转账除外)。" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "" @@ -16777,6 +42484,7 @@ msgid "" msgstr "会计凭证 %s 无效。要继续,会计分录必须使用相同的货币。" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "" @@ -16790,13 +42498,13 @@ msgid "Journal Entry Date" msgstr "会计凭证日期" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/components/account_payment_field/account_payment_field.js:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #, python-format msgid "Journal Entry Info" -msgstr "" +msgstr "会计凭证信息" #. module: account #: model:ir.model.fields,field_description:account.field_account_journal_group__name @@ -16811,8 +42519,8 @@ msgstr "日记账组" msgid "Journal Groups" msgstr "日记账组" -#. modules: account, stock_account -#: model:ir.model,name:stock_account.model_account_move_line +#. modules: purchase_stock, account +#: model:ir.model,name:purchase_stock.model_account_move_line #: model:ir.model.fields,field_description:account.field_account_analytic_line__move_line_id #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter #: model_terms:ir.ui.view,arch_db:account.view_move_line_form @@ -16820,6 +42528,7 @@ msgid "Journal Item" msgstr "会计分录" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "Journal Item %s updated" @@ -16851,6 +42560,11 @@ msgstr "会计分录标签" msgid "Journal Items" msgstr "会计分录" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__exclude_journal_item +msgid "Journal Items associated to the contact" +msgstr "与日记帐相关的联系人" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__name msgid "Journal Name" @@ -16895,10 +42609,11 @@ msgid "Journal items where matching number isn't set" msgstr "未设置匹配编号的日记项目" #. module: account +#. odoo-python #: code:addons/account/wizard/account_move_reversal.py:0 #, python-format msgid "Journal should be the same type as the reversed entry." -msgstr "日记帐应与反向分录的类型相同." +msgstr "日记帐应与反转分录的类型相同." #. module: account #: model:ir.model.fields,help:account.field_res_company__automatic_entry_default_journal_id @@ -16918,17 +42633,18 @@ msgid "Journal where to create the entry." msgstr "创建此分录的日记账。" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #, python-format msgid "Journal:" -msgstr "" +msgstr "日记账:" #. module: account #: model:ir.actions.act_window,name:account.action_account_journal_form #: model:ir.model.fields,field_description:account.field_account_report__filter_journals #: model:ir.ui.menu,name:account.menu_action_account_journal_form +#: model:ir.ui.menu,name:account.menu_finance_entries_accounting_miscellaneous msgid "Journals" msgstr "日记账" @@ -16943,6 +42659,14 @@ msgstr "日记账可用性" msgid "Journals Entries Lock Date" msgstr "日记帐分录锁定日期" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Json" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__json_activity_data msgid "Json Activity Data" @@ -16954,30 +42678,37 @@ msgid "Json Lead Days" msgstr "Json提前天数弹窗" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/widgets/json_widget.js:0 #, python-format msgid "Json Popup" -msgstr "" +msgstr "JSON格式弹窗" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_replenishment_info__json_replenishment_history msgid "Json Replenishment History" msgstr "Json补货历史" -#. modules: account, stock +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Judaism" +msgstr "犹太教" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__7 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__7 msgid "July" msgstr "七月" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__6 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__6 msgid "June" msgstr "六月" -#. module: account +#. modules: base, account #: model:ir.model.fields.selection,name:account.selection__res_company__account_dashboard_onboarding_state__just_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_invoice_onboarding_state__just_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_onboarding_create_invoice_state__just_done @@ -16988,9 +42719,44 @@ msgstr "六月" #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_coa_state__just_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_fy_data_state__just_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_taxes_state__just_done +#: model:ir.model.fields.selection,name:base.selection__res_company__base_onboarding_company_state__just_done msgid "Just done" msgstr "完成" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_K +msgid "K - FINANCIAL AND INSURANCE ACTIVITIES" +msgstr "K - 金融和保险活动" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_sa_hr_payroll +msgid "K.S.A. - Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_sa_hr_payroll_account +msgid "K.S.A. - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_digest +msgid "KPI Digests" +msgstr "KPI 摘要" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Kaaba" +msgstr "天房" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__kanban +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__kanban +#: model_terms:ir.ui.view,arch_db:base.view_view_search +msgid "Kanban" +msgstr "看板" + #. module: account #: model:ir.model.fields,field_description:account.field_account_journal__kanban_dashboard msgid "Kanban Dashboard" @@ -17006,6 +42772,22 @@ msgstr "看板仪表板图表" msgid "Kanban State" msgstr "看板状态" +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "哈萨克" + +#. module: base +#: model:ir.module.module,description:base.module_theme_kea +#: model:ir.module.module,shortdesc:base.module_theme_kea +msgid "Kea Theme" +msgstr "" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__attach +msgid "Keep Attachments" +msgstr "保存附件" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.stock_inventory_conflict_form_view msgid "Keep Counted Quantity" @@ -17016,6 +42798,11 @@ msgstr "保持计数的数量" msgid "Keep Difference" msgstr "保持差异" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__original +msgid "Keep Original" +msgstr "保留原件" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_resequence_wizard__ordering__keep msgid "Keep current order" @@ -17026,6 +42813,12 @@ msgstr "保持当前订单" msgid "Keep empty for no control" msgstr "不做控制就留空" +#. module: base +#: model:ir.model.fields,help:base.field_res_users__password +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "如果不希望用户连接到系统,则不勾选." + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_payment_register__payment_difference_handling__open msgid "Keep open" @@ -17060,6 +42853,79 @@ msgid "" "expense account on the product category will be used." msgstr "保持此字段为空,以使用产品类别的默认值。如果配置有自动估价方法的盎格鲁-撒克逊会计,则将使用产品类别上的费用账户。" +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "肯亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke +msgid "Kenya - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke_reports +msgid "Kenya - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke_hr_payroll +msgid "Kenya - Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke_hr_payroll_bik +msgid "Kenya - Payroll additionnal fields" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke_hr_payroll_account +msgid "Kenya - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ke_edi_tremol +msgid "Kenya Tremol Device EDI Integration" +msgstr "肯尼亚Tremol设备EDI集成" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__key +#: model:ir.model.fields,field_description:base.field_ir_ui_view__key +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_show__key +#: model_terms:ir.ui.view,arch_db:base.view_ir_config_search +msgid "Key" +msgstr "键" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_ir_config_parameter_key_uniq +msgid "Key must be unique." +msgstr "键必须唯一." + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_au_keypay +msgid "Keypay Australian Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_kiddo +msgid "Kiddo Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_kiddo +msgid "Kiddo theme for Odoo Website" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.message_notification_limit_email +msgid "Kind Regards" +msgstr "亲切问候" + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "吉里巴斯" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_stock_move__description_bom_line #: model:ir.model.fields,field_description:mrp.field_stock_move_line__description_bom_line @@ -17068,6 +42934,22 @@ msgstr "保持此字段为空,以使用产品类别的默认值。如果配置 msgid "Kit" msgstr "套件" +#. module: base +#: model:ir.module.category,name:base.module_category_productivity_knowledge +#: model:ir.module.module,shortdesc:base.module_knowledge +msgid "Knowledge" +msgstr "知识" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_knowledge +msgid "Knowledge Website" +msgstr "" + +#. module: base +#: model:res.country,name:base.xk +msgid "Kosovo" +msgstr "科索沃" + #. module: account #: model:ir.model.fields,field_description:account.field_digest_digest__kpi_account_total_revenue_value msgid "Kpi Account Total Revenue Value" @@ -17078,26 +42960,70 @@ msgstr "KPI账户总收入" msgid "Kpi All Sale Total Value" msgstr "所有销售总价值KPI" -#. module: sf_manufacturing -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_tool_length1 -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_tool_length1 -msgid "L1[mm]" +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "科威特" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyzstan" +msgstr "吉尔吉斯" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_L +msgid "L - REAL ESTATE ACTIVITIES" +msgstr "l - 房地产活动" + +#. module: sf_tool_management +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__L_D +msgid "L/D" msgstr "" +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_latam_invoice_document +msgid "LATAM Document" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_latam_invoice_document +msgid "LATAM Document Types" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_latam_base +msgid "LATAM Identification Types" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_latam_base +msgid "LATAM Localization Base" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__lgpl-3 +msgid "LGPL Version 3" +msgstr "LGPL 第3版" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_participant_card/call_participant_card.xml:0 +#: code:addons/mail/static/src/components/call_participant_card/call_participant_card.xml:0 +#, python-format +msgid "LIVE" +msgstr "在线" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_lot_label msgid "LN/SN:" msgstr "批次/序列号:" -#. module: sf_manufacturing -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_tool_handle_length -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_tool_handle_length -msgid "L[mm]" -msgstr "" - -#. module: account +#. modules: base_import, account +#. odoo-python +#. odoo-javascript #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #: code:addons/account/wizard/accrued_orders.py:0 +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__payment_ref #: model:ir.model.fields,field_description:account.field_account_move_line__name #: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_label @@ -17120,21 +43046,98 @@ msgstr "标签参数" msgid "Label on Invoices" msgstr "结算单上的标签" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Label tag must contain a \"for\". To match label style without corresponding" +" field or button, use 'class=\"o_form_label\"'." +msgstr "备注标签必须包含一个\"for\". 要匹配没有相应字段或按钮的标签式样,请使用 'class=\"o_form_label\"'." + #. module: stock #: model:ir.model.fields,field_description:stock.field_picking_label_type__label_type msgid "Labels to print" msgstr "待打印标签" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +#. module: base +#: model:ir.module.module,summary:base.module_stock_landed_costs msgid "Landed Costs" msgstr "到岸成本" -#. module: account +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_landed_costs +msgid "Landed Costs On MO" +msgstr "制造订单MO 的到岸成本" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subonctracting_landed_costs +msgid "Landed Costs With Subcontracting order" +msgstr "到岸成本使用外包订单" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_landed_costs +msgid "Landed Costs on Manufacturing Order" +msgstr "制造订单的到岸成本" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__orientation__landscape +msgid "Landscape" +msgstr "横向" + +#. modules: mail, base, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__lang +#: model:ir.model.fields,field_description:base.field_base_language_export__lang +#: model:ir.model.fields,field_description:base.field_res_partner__lang +#: model:ir.model.fields,field_description:base.field_res_users__lang +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__lang +#: model:ir.model.fields,field_description:mail.field_mail_composer_mixin__lang +#: model:ir.model.fields,field_description:mail.field_mail_guest__lang +#: model:ir.model.fields,field_description:mail.field_mail_render_mixin__lang +#: model:ir.model.fields,field_description:mail.field_mail_template__lang +#: model_terms:ir.ui.view,arch_db:base.res_lang_search msgid "Language" msgstr "语言" +#. module: base +#: model:ir.model,name:base.model_base_language_export +msgid "Language Export" +msgstr "语言导出" + +#. module: base +#: model:ir.model,name:base.model_base_language_import +msgid "Language Import" +msgstr "语言导入" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_import__name +msgid "Language Name" +msgstr "语言名称" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_lang.py:0 code:addons/base/models/res_lang.py:0 +#, python-format +msgid "Language code cannot be modified." +msgstr "语言代码不能修改." + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.model,name:base.model_res_lang +#: model:ir.model.fields,field_description:base.field_base_language_install__lang_ids +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +#: model_terms:ir.ui.view,arch_db:base.res_lang_search +#: model_terms:ir.ui.view,arch_db:base.res_lang_tree +msgid "Languages" +msgstr "语言" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "寮国" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search msgid "Last 12 Months" @@ -17170,14 +43173,35 @@ msgstr "最近有效盘点" msgid "Last Entry" msgstr "最后分录" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron__lastcall +msgid "Last Execution Date" +msgstr "最近执行日期" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__date +msgid "Last Fetch Date" +msgstr "最后收取日期" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__fetched_message_id +msgid "Last Fetched" +msgstr "最后一次提取" + #. module: account #: model_terms:ir.ui.view,arch_db:account.report_hash_integrity msgid "Last Hash" msgstr "上个哈希" -#. modules: sf_manufacturing, maintenance, purchase_stock, mrp_workorder, -#. purchase, mrp, sf_plan_management, sale_management, stock, stock_account, -#. quality, quality_control, sf_base, account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__last_interest_dt +msgid "Last Interest" +msgstr "持续的兴趣" + +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. purchase_stock, stock, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_account____last_update #: model:ir.model.fields,field_description:account.field_account_account_tag____last_update #: model:ir.model.fields,field_description:account.field_account_account_template____last_update @@ -17234,6 +43258,137 @@ msgstr "上个哈希" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm____last_update #: model:ir.model.fields,field_description:account.field_account_unreconcile____last_update #: model:ir.model.fields,field_description:account.field_validate_account_move____last_update +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard____last_update +#: model:ir.model.fields,field_description:base.field_base_language_export____last_update +#: model:ir.model.fields,field_description:base.field_base_language_import____last_update +#: model:ir.model.fields,field_description:base.field_base_language_install____last_update +#: model:ir.model.fields,field_description:base.field_base_module_uninstall____last_update +#: model:ir.model.fields,field_description:base.field_base_module_update____last_update +#: model:ir.model.fields,field_description:base.field_base_module_upgrade____last_update +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard____last_update +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line____last_update +#: model:ir.model.fields,field_description:base.field_change_password_own____last_update +#: model:ir.model.fields,field_description:base.field_change_password_user____last_update +#: model:ir.model.fields,field_description:base.field_change_password_wizard____last_update +#: model:ir.model.fields,field_description:base.field_decimal_precision____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_actions____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_client____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_report____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_server____last_update +#: model:ir.model.fields,field_description:base.field_ir_actions_todo____last_update +#: model:ir.model.fields,field_description:base.field_ir_asset____last_update +#: model:ir.model.fields,field_description:base.field_ir_attachment____last_update +#: model:ir.model.fields,field_description:base.field_ir_config_parameter____last_update +#: model:ir.model.fields,field_description:base.field_ir_cron____last_update +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger____last_update +#: model:ir.model.fields,field_description:base.field_ir_default____last_update +#: model:ir.model.fields,field_description:base.field_ir_demo____last_update +#: model:ir.model.fields,field_description:base.field_ir_demo_failure____last_update +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard____last_update +#: model:ir.model.fields,field_description:base.field_ir_exports____last_update +#: model:ir.model.fields,field_description:base.field_ir_exports_line____last_update +#: model:ir.model.fields,field_description:base.field_ir_filters____last_update +#: model:ir.model.fields,field_description:base.field_ir_logging____last_update +#: model:ir.model.fields,field_description:base.field_ir_mail_server____last_update +#: model:ir.model.fields,field_description:base.field_ir_model____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_access____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_constraint____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_data____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection____last_update +#: model:ir.model.fields,field_description:base.field_ir_model_relation____last_update +#: model:ir.model.fields,field_description:base.field_ir_module_category____last_update +#: model:ir.model.fields,field_description:base.field_ir_module_module____last_update +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency____last_update +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion____last_update +#: model:ir.model.fields,field_description:base.field_ir_profile____last_update +#: model:ir.model.fields,field_description:base.field_ir_property____last_update +#: model:ir.model.fields,field_description:base.field_ir_rule____last_update +#: model:ir.model.fields,field_description:base.field_ir_sequence____last_update +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range____last_update +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines____last_update +#: model:ir.model.fields,field_description:base.field_ir_ui_menu____last_update +#: model:ir.model.fields,field_description:base.field_ir_ui_view____last_update +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom____last_update +#: model:ir.model.fields,field_description:base.field_report_layout____last_update +#: model:ir.model.fields,field_description:base.field_report_paperformat____last_update +#: model:ir.model.fields,field_description:base.field_res_bank____last_update +#: model:ir.model.fields,field_description:base.field_res_company____last_update +#: model:ir.model.fields,field_description:base.field_res_config____last_update +#: model:ir.model.fields,field_description:base.field_res_config_installer____last_update +#: model:ir.model.fields,field_description:base.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base.field_res_country____last_update +#: model:ir.model.fields,field_description:base.field_res_country_group____last_update +#: model:ir.model.fields,field_description:base.field_res_country_state____last_update +#: model:ir.model.fields,field_description:base.field_res_currency____last_update +#: model:ir.model.fields,field_description:base.field_res_currency_rate____last_update +#: model:ir.model.fields,field_description:base.field_res_groups____last_update +#: model:ir.model.fields,field_description:base.field_res_lang____last_update +#: model:ir.model.fields,field_description:base.field_res_partner____last_update +#: model:ir.model.fields,field_description:base.field_res_partner_bank____last_update +#: model:ir.model.fields,field_description:base.field_res_partner_category____last_update +#: model:ir.model.fields,field_description:base.field_res_partner_industry____last_update +#: model:ir.model.fields,field_description:base.field_res_partner_title____last_update +#: model:ir.model.fields,field_description:base.field_res_users____last_update +#: model:ir.model.fields,field_description:base.field_res_users_apikeys____last_update +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description____last_update +#: model:ir.model.fields,field_description:base.field_res_users_deletion____last_update +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck____last_update +#: model:ir.model.fields,field_description:base.field_res_users_log____last_update +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard____last_update +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_import____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child____last_update +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview____last_update +#: model:ir.model.fields,field_description:mail.field_fetchmail_server____last_update +#: model:ir.model.fields,field_description:mail.field_mail_activity____last_update +#: model:ir.model.fields,field_description:mail.field_mail_activity_type____last_update +#: model:ir.model.fields,field_description:mail.field_mail_alias____last_update +#: model:ir.model.fields,field_description:mail.field_mail_blacklist____last_update +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove____last_update +#: model:ir.model.fields,field_description:mail.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail.field_mail_channel_member____last_update +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session____last_update +#: model:ir.model.fields,field_description:mail.field_mail_compose_message____last_update +#: model:ir.model.fields,field_description:mail.field_mail_followers____last_update +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed____last_update +#: model:ir.model.fields,field_description:mail.field_mail_guest____last_update +#: model:ir.model.fields,field_description:mail.field_mail_ice_server____last_update +#: model:ir.model.fields,field_description:mail.field_mail_link_preview____last_update +#: model:ir.model.fields,field_description:mail.field_mail_mail____last_update +#: model:ir.model.fields,field_description:mail.field_mail_message____last_update +#: model:ir.model.fields,field_description:mail.field_mail_message_reaction____last_update +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule____last_update +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype____last_update +#: model:ir.model.fields,field_description:mail.field_mail_notification____last_update +#: model:ir.model.fields,field_description:mail.field_mail_resend_message____last_update +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner____last_update +#: model:ir.model.fields,field_description:mail.field_mail_shortcode____last_update +#: model:ir.model.fields,field_description:mail.field_mail_template____last_update +#: model:ir.model.fields,field_description:mail.field_mail_template_preview____last_update +#: model:ir.model.fields,field_description:mail.field_mail_template_reset____last_update +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value____last_update +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite____last_update +#: model:ir.model.fields,field_description:mail.field_res_users_settings____last_update +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes____last_update #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment____last_update #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category____last_update #: model:ir.model.fields,field_description:maintenance.field_maintenance_request____last_update @@ -17309,18 +43464,43 @@ msgstr "上个哈希" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter____last_update #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort____last_update #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common____last_update -#: model:ir.model.fields,field_description:sf_base.field_sf_tray____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant____last_update +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method____last_update #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort____last_update +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration____last_update +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule____last_update +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan____last_update #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off____last_update #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting____last_update #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting____last_update #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar____last_update #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift____last_update +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order____last_update +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search____last_update +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information____last_update #: model:ir.model.fields,field_description:stock.field_lot_label_layout____last_update #: model:ir.model.fields,field_description:stock.field_picking_label_type____last_update #: model:ir.model.fields,field_description:stock.field_procurement_group____last_update @@ -17368,8 +43548,7 @@ msgstr "上个哈希" #: model:ir.model.fields,field_description:stock.field_stock_warehouse____last_update #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint____last_update #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap____last_update -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation____last_update msgid "Last Modified on" msgstr "最后修改时间" @@ -17388,9 +43567,25 @@ msgstr "最后一次购买" msgid "Last Quarter" msgstr "上季度" -#. modules: sf_manufacturing, maintenance, sf_plan_management, mrp_workorder, -#. purchase, mrp, sale_management, stock, stock_account, quality, -#. quality_control, sf_base, account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__seen_message_id +msgid "Last Seen" +msgstr "最近一次查阅" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_currency_tree +msgid "Last Update" +msgstr "最后更新" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__write_date +msgid "Last Updated On" +msgstr "最后更新时间" + +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. stock, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_account__write_uid #: model:ir.model.fields,field_description:account.field_account_account_tag__write_uid #: model:ir.model.fields,field_description:account.field_account_account_template__write_uid @@ -17445,6 +43640,131 @@ msgstr "上季度" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__write_uid #: model:ir.model.fields,field_description:account.field_account_unreconcile__write_uid #: model:ir.model.fields,field_description:account.field_validate_account_move__write_uid +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__write_uid +#: model:ir.model.fields,field_description:base.field_base_language_export__write_uid +#: model:ir.model.fields,field_description:base.field_base_language_import__write_uid +#: model:ir.model.fields,field_description:base.field_base_language_install__write_uid +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__write_uid +#: model:ir.model.fields,field_description:base.field_base_module_update__write_uid +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__write_uid +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__write_uid +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__write_uid +#: model:ir.model.fields,field_description:base.field_change_password_own__write_uid +#: model:ir.model.fields,field_description:base.field_change_password_user__write_uid +#: model:ir.model.fields,field_description:base.field_change_password_wizard__write_uid +#: model:ir.model.fields,field_description:base.field_decimal_precision__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_client__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_report__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_server__write_uid +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__write_uid +#: model:ir.model.fields,field_description:base.field_ir_asset__write_uid +#: model:ir.model.fields,field_description:base.field_ir_attachment__write_uid +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__write_uid +#: model:ir.model.fields,field_description:base.field_ir_cron__write_uid +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__write_uid +#: model:ir.model.fields,field_description:base.field_ir_default__write_uid +#: model:ir.model.fields,field_description:base.field_ir_demo__write_uid +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__write_uid +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__write_uid +#: model:ir.model.fields,field_description:base.field_ir_exports__write_uid +#: model:ir.model.fields,field_description:base.field_ir_exports_line__write_uid +#: model:ir.model.fields,field_description:base.field_ir_filters__write_uid +#: model:ir.model.fields,field_description:base.field_ir_logging__write_uid +#: model:ir.model.fields,field_description:base.field_ir_mail_server__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_access__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_data__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_fields__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__write_uid +#: model:ir.model.fields,field_description:base.field_ir_model_relation__write_uid +#: model:ir.model.fields,field_description:base.field_ir_module_category__write_uid +#: model:ir.model.fields,field_description:base.field_ir_module_module__write_uid +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__write_uid +#: model:ir.model.fields,field_description:base.field_ir_property__write_uid +#: model:ir.model.fields,field_description:base.field_ir_rule__write_uid +#: model:ir.model.fields,field_description:base.field_ir_sequence__write_uid +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__write_uid +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__write_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__write_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_view__write_uid +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__write_uid +#: model:ir.model.fields,field_description:base.field_report_layout__write_uid +#: model:ir.model.fields,field_description:base.field_report_paperformat__write_uid +#: model:ir.model.fields,field_description:base.field_res_bank__write_uid +#: model:ir.model.fields,field_description:base.field_res_company__write_uid +#: model:ir.model.fields,field_description:base.field_res_config__write_uid +#: model:ir.model.fields,field_description:base.field_res_config_installer__write_uid +#: model:ir.model.fields,field_description:base.field_res_config_settings__write_uid +#: model:ir.model.fields,field_description:base.field_res_country__write_uid +#: model:ir.model.fields,field_description:base.field_res_country_group__write_uid +#: model:ir.model.fields,field_description:base.field_res_country_state__write_uid +#: model:ir.model.fields,field_description:base.field_res_currency__write_uid +#: model:ir.model.fields,field_description:base.field_res_currency_rate__write_uid +#: model:ir.model.fields,field_description:base.field_res_groups__write_uid +#: model:ir.model.fields,field_description:base.field_res_lang__write_uid +#: model:ir.model.fields,field_description:base.field_res_partner__write_uid +#: model:ir.model.fields,field_description:base.field_res_partner_bank__write_uid +#: model:ir.model.fields,field_description:base.field_res_partner_category__write_uid +#: model:ir.model.fields,field_description:base.field_res_partner_industry__write_uid +#: model:ir.model.fields,field_description:base.field_res_partner_title__write_uid +#: model:ir.model.fields,field_description:base.field_res_users__write_uid +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__write_uid +#: model:ir.model.fields,field_description:base.field_res_users_deletion__write_uid +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__write_uid +#: model:ir.model.fields,field_description:base.field_res_users_log__write_uid +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__write_uid +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_import__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__write_uid +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__write_uid +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_activity__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_alias__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_guest__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_mail__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_message__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_template__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_template_reset__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__write_uid +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__write_uid +#: model:ir.model.fields,field_description:mail.field_res_users_settings__write_uid +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__write_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__write_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__write_uid #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__write_uid @@ -17517,18 +43837,43 @@ msgstr "上季度" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter__write_uid #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort__write_uid #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common__write_uid -#: model:ir.model.fields,field_description:sf_base.field_sf_tray__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant__write_uid +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method__write_uid #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort__write_uid +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration__write_uid +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule__write_uid +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan__write_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off__write_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting__write_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting__write_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar__write_uid #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift__write_uid +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order__write_uid +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__write_uid +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__write_uid #: model:ir.model.fields,field_description:stock.field_lot_label_layout__write_uid #: model:ir.model.fields,field_description:stock.field_picking_label_type__write_uid #: model:ir.model.fields,field_description:stock.field_procurement_group__write_uid @@ -17575,14 +43920,14 @@ msgstr "上季度" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__write_uid #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__write_uid #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap__write_uid -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation__write_uid msgid "Last Updated by" msgstr "最后更新人" -#. modules: sf_manufacturing, maintenance, sf_plan_management, mrp_workorder, -#. purchase, mrp, sale_management, stock, stock_account, quality, -#. quality_control, sf_base, account +#. modules: purchase, sf_plan, account, sf_sale, sf_base, sf_plan_management, +#. mrp, sf_manufacturing, sf_tool_management, quality, mail, base, +#. base_import, sale_management, maintenance, stock_barcode, quality_control, +#. stock, mrp_workorder #: model:ir.model.fields,field_description:account.field_account_account__write_date #: model:ir.model.fields,field_description:account.field_account_account_tag__write_date #: model:ir.model.fields,field_description:account.field_account_account_template__write_date @@ -17637,6 +43982,128 @@ msgstr "最后更新人" #: model:ir.model.fields,field_description:account.field_account_tour_upload_bill_email_confirm__write_date #: model:ir.model.fields,field_description:account.field_account_unreconcile__write_date #: model:ir.model.fields,field_description:account.field_validate_account_move__write_date +#: model:ir.model.fields,field_description:base.field_base_enable_profiling_wizard__write_date +#: model:ir.model.fields,field_description:base.field_base_language_export__write_date +#: model:ir.model.fields,field_description:base.field_base_language_import__write_date +#: model:ir.model.fields,field_description:base.field_base_language_install__write_date +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__write_date +#: model:ir.model.fields,field_description:base.field_base_module_update__write_date +#: model:ir.model.fields,field_description:base.field_base_module_upgrade__write_date +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__write_date +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__write_date +#: model:ir.model.fields,field_description:base.field_change_password_own__write_date +#: model:ir.model.fields,field_description:base.field_change_password_user__write_date +#: model:ir.model.fields,field_description:base.field_change_password_wizard__write_date +#: model:ir.model.fields,field_description:base.field_decimal_precision__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_url__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_close__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_actions__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_client__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_report__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_server__write_date +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__write_date +#: model:ir.model.fields,field_description:base.field_ir_asset__write_date +#: model:ir.model.fields,field_description:base.field_ir_attachment__write_date +#: model:ir.model.fields,field_description:base.field_ir_config_parameter__write_date +#: model:ir.model.fields,field_description:base.field_ir_cron__write_date +#: model:ir.model.fields,field_description:base.field_ir_cron_trigger__write_date +#: model:ir.model.fields,field_description:base.field_ir_default__write_date +#: model:ir.model.fields,field_description:base.field_ir_demo__write_date +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__write_date +#: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__write_date +#: model:ir.model.fields,field_description:base.field_ir_exports__write_date +#: model:ir.model.fields,field_description:base.field_ir_exports_line__write_date +#: model:ir.model.fields,field_description:base.field_ir_filters__write_date +#: model:ir.model.fields,field_description:base.field_ir_logging__write_date +#: model:ir.model.fields,field_description:base.field_ir_mail_server__write_date +#: model:ir.model.fields,field_description:base.field_ir_model__write_date +#: model:ir.model.fields,field_description:base.field_ir_model_access__write_date +#: model:ir.model.fields,field_description:base.field_ir_model_data__write_date +#: model:ir.model.fields,field_description:base.field_ir_model_fields__write_date +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__write_date +#: model:ir.model.fields,field_description:base.field_ir_module_category__write_date +#: model:ir.model.fields,field_description:base.field_ir_module_module__write_date +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__write_date +#: model:ir.model.fields,field_description:base.field_ir_property__write_date +#: model:ir.model.fields,field_description:base.field_ir_rule__write_date +#: model:ir.model.fields,field_description:base.field_ir_sequence__write_date +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__write_date +#: model:ir.model.fields,field_description:base.field_ir_server_object_lines__write_date +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__write_date +#: model:ir.model.fields,field_description:base.field_ir_ui_view__write_date +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__write_date +#: model:ir.model.fields,field_description:base.field_report_layout__write_date +#: model:ir.model.fields,field_description:base.field_report_paperformat__write_date +#: model:ir.model.fields,field_description:base.field_res_bank__write_date +#: model:ir.model.fields,field_description:base.field_res_company__write_date +#: model:ir.model.fields,field_description:base.field_res_config__write_date +#: model:ir.model.fields,field_description:base.field_res_config_installer__write_date +#: model:ir.model.fields,field_description:base.field_res_config_settings__write_date +#: model:ir.model.fields,field_description:base.field_res_country__write_date +#: model:ir.model.fields,field_description:base.field_res_country_group__write_date +#: model:ir.model.fields,field_description:base.field_res_country_state__write_date +#: model:ir.model.fields,field_description:base.field_res_currency__write_date +#: model:ir.model.fields,field_description:base.field_res_currency_rate__write_date +#: model:ir.model.fields,field_description:base.field_res_groups__write_date +#: model:ir.model.fields,field_description:base.field_res_lang__write_date +#: model:ir.model.fields,field_description:base.field_res_partner__write_date +#: model:ir.model.fields,field_description:base.field_res_partner_bank__write_date +#: model:ir.model.fields,field_description:base.field_res_partner_category__write_date +#: model:ir.model.fields,field_description:base.field_res_partner_industry__write_date +#: model:ir.model.fields,field_description:base.field_res_partner_title__write_date +#: model:ir.model.fields,field_description:base.field_res_users__write_date +#: model:ir.model.fields,field_description:base.field_res_users_apikeys_description__write_date +#: model:ir.model.fields,field_description:base.field_res_users_deletion__write_date +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__write_date +#: model:ir.model.fields,field_description:base.field_res_users_log__write_date +#: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__write_date +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_import__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_mapping__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_noreadonly__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_readonly__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_required__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_states__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_char_stillreadonly__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_complex__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_float__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_related__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_m2o_required_related__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__write_date +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__write_date +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__write_date +#: model:ir.model.fields,field_description:mail.field_mail_activity__write_date +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__write_date +#: model:ir.model.fields,field_description:mail.field_mail_alias__write_date +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__write_date +#: model:ir.model.fields,field_description:mail.field_mail_blacklist_remove__write_date +#: model:ir.model.fields,field_description:mail.field_mail_channel__write_date +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__write_date +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__write_date +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__write_date +#: model:ir.model.fields,field_description:mail.field_mail_guest__write_date +#: model:ir.model.fields,field_description:mail.field_mail_ice_server__write_date +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__write_date +#: model:ir.model.fields,field_description:mail.field_mail_mail__write_date +#: model:ir.model.fields,field_description:mail.field_mail_message__write_date +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__write_date +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__write_date +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__write_date +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__write_date +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__write_date +#: model:ir.model.fields,field_description:mail.field_mail_template__write_date +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__write_date +#: model:ir.model.fields,field_description:mail.field_mail_template_reset__write_date +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__write_date +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__write_date +#: model:ir.model.fields,field_description:mail.field_res_users_settings__write_date +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__write_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__write_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__write_date #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__write_date @@ -17709,18 +44176,43 @@ msgstr "最后更新人" #: model:ir.model.fields,field_description:sf_base.field_sf_production_process_parameter__write_date #: model:ir.model.fields,field_description:sf_base.field_sf_supplier_sort__write_date #: model:ir.model.fields,field_description:sf_base.field_sf_sync_common__write_date -#: model:ir.model.fields,field_description:sf_base.field_sf_tray__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_blade_tip_characteristics__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cnc_processing__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_direction__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_cutting_speed__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_embryo_model_type_routing_sort__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_feed_per_tooth__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_handle_type__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_model_type__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_product_model_type_routing_sort__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_production_line__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_coolant__write_date +#: model:ir.model.fields,field_description:sf_manufacturing.field_sf_suitable_machining_method__write_date #: model:ir.model.fields,field_description:sf_manufacturing.field_sf_surface_technics_model_type_routing_sort__write_date +#: model:ir.model.fields,field_description:sf_plan.field_hole_duration__write_date +#: model:ir.model.fields,field_description:sf_plan.field_sf_machine_schedule__write_date +#: model:ir.model.fields,field_description:sf_plan.field_sf_production_plan__write_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_day_off__write_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_procedure_equipment_resource_setting__write_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_log_setting__write_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_work_schedule_calendar__write_date #: model:ir.model.fields,field_description:sf_plan_management.field_sf_working_shift__write_date +#: model:ir.model.fields,field_description:sf_sale.field_quick_easy_order__write_date +#: model:ir.model.fields,field_description:sf_sale.field_sf_auto_quatotion_common__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_cam_work_order_program_knife_plan__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_delivery_of_cargo_from_storage__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_cutting_tool_entity_cache__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_assembly_order__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_functional_tool_warning__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_inbound_and_outbound_records_of_functional_tools__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_machine_table_tool_changing_apply__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_real_time_distribution_of_functional_tools__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_change_requirement_information__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_material_search__write_date +#: model:ir.model.fields,field_description:sf_tool_management.field_sf_tool_transfer_request_information__write_date #: model:ir.model.fields,field_description:stock.field_lot_label_layout__write_date #: model:ir.model.fields,field_description:stock.field_picking_label_type__write_date #: model:ir.model.fields,field_description:stock.field_procurement_group__write_date @@ -17767,8 +44259,7 @@ msgstr "最后更新人" #: model:ir.model.fields,field_description:stock.field_stock_warehouse__write_date #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__write_date #: model:ir.model.fields,field_description:stock.field_stock_warn_insufficient_qty_scrap__write_date -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +#: model:ir.model.fields,field_description:stock_barcode.field_stock_barcode_cancel_operation__write_date msgid "Last Updated on" msgstr "最后更新时间" @@ -17784,6 +44275,11 @@ msgid "" " Payment Discount to be granted" msgstr "必须支付折扣金额才能获得提前付款折扣的最后日期" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel_member__last_seen_dt +msgid "Last seen date" +msgstr "上次查看日期" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_quant__last_count_date msgid "Last time the Quantity was Updated" @@ -17798,13 +44294,19 @@ msgid "" "unreconciled credit or if you click the \"Done\" button." msgstr "上次这个合作伙伴的应收结算单和付款是匹配的. 设置为调节的借方或者未调节的贷方或者您点击 \"完成\" 按钮." +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_currency_kanban +msgid "Last update:" +msgstr "最后更新:" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__last_working_user_id msgid "Last user that worked on this work order." msgstr "上一个在此工单工作的用户." -#. modules: stock, purchase, mrp -#. openerp-web +#. modules: stock, purchase, mrp, mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_menu_view/activity_menu_view.xml:0 #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__components_availability_state__late #: model:ir.model.fields.selection,name:stock.selection__stock_picking__products_availability_state__late @@ -17818,9 +44320,11 @@ msgstr "上一个在此工单工作的用户." msgid "Late" msgstr "迟到" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter #: model_terms:ir.ui.view,arch_db:account.view_account_payment_search +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_search +#: model_terms:ir.ui.view,arch_db:mail.res_partner_view_search_inherit_mail #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search #: model_terms:ir.ui.view,arch_db:mrp.mrp_unbuild_search_view @@ -17868,6 +44372,16 @@ msgstr "最近故障日期" msgid "Latest Invoices & Payments Matching Date" msgstr "最近的结算单和付款匹配时间" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__installed_version +msgid "Latest Version" +msgstr "最新版本" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__login_date +msgid "Latest authentication" +msgstr "最近身份验证" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_production__components_availability msgid "" @@ -17880,19 +44394,97 @@ msgstr "该MO的最新组件可用性状态。如果是绿色,那么根据BOM msgid "Latest product availability status of the picking" msgstr "拣货的最新产品供应状况" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Latin" +msgstr "拉丁" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Latin cross" +msgstr "拉丁式十字架" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__font__lato +msgid "Lato" +msgstr "" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "拉脱维亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lv +msgid "Latvia - Accounting" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.config_wizard_step_view_form +#: model_terms:ir.ui.view,arch_db:base.ir_actions_todo_tree +msgid "Launch" +msgstr "启动" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.config_wizard_step_view_form +#: model_terms:ir.ui.view,arch_db:base.ir_actions_todo_tree +msgid "Launch Configuration Wizard" +msgstr "启动配置向导" + #. module: mrp -#: model_terms:product.product,description:mrp.product_product_wood_ply #: model_terms:product.template,description:mrp.product_product_wood_ply_product_template msgid "Layers that are stick together to assemble wood panels." msgstr "粘在一起组装木板的层。" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__email_layout_xmlid +#: model:ir.model.fields,field_description:mail.field_mail_message__email_layout_xmlid +msgid "Layout" +msgstr "布局" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__layout_background +msgid "Layout Background" +msgstr "前景色" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_country__address_format +msgid "Layout in Reports" +msgstr "报告的布局" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__lead_days_date msgid "Lead Days Date" msgstr "提前期日期" +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_iap_enrich +msgid "Lead Enrichment" +msgstr "线索丰富" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_crm_iap_mine +msgid "Lead Generation" +msgstr "线索生成" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_crm_iap_reveal +msgid "Lead Generation From Website Visits" +msgstr "从网站访问中创建潜在客户" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_crm_livechat +msgid "Lead Livechat Sessions" +msgstr "潜在客户联机客服作业阶段" + #. modules: stock, mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model:ir.model.fields,field_description:stock.field_stock_replenishment_option__lead_time #: model:ir.model.fields,field_description:stock.field_stock_rule__delay @@ -17902,22 +44494,37 @@ msgid "Lead Time" msgstr "前置时间" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "Lead Time to Purchase" -msgstr "" +msgstr "采购预计时间" #. modules: stock, mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_display_filter/mrp_bom_overview_display_filter.js:0 #: code:addons/stock/static/src/widgets/json_widget.xml:0 #, python-format msgid "Lead Times" +msgstr "前置时间" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_social_crm +msgid "Leads statistics and generation on social" msgstr "" -#. module: mrp +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +msgid "Learn More" +msgstr "了解更多" + +#. modules: mail, mrp +#. odoo-javascript +#: code:addons/mail/static/src/models/discuss_sidebar_category_item.js:0 +#: code:addons/mail/static/src/models/discuss_sidebar_category_item.js:0 #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__leave_id +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_kanban +#, python-format msgid "Leave" msgstr "离开" @@ -17937,12 +44544,53 @@ msgstr "留空以指派开结算单的业务员。" msgid "Leave empty to use the default outstanding account" msgstr "留空以使用默认未结帐科目" +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/main_menu.js:0 +#: code:addons/stock_barcode/static/src/main_menu.js:0 +#, python-format +msgid "Leave it" +msgstr "离开它" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/discuss_sidebar_category_item/discuss_sidebar_category_item.xml:0 +#: code:addons/mail/static/src/models/messaging_initializer.js:0 +#, python-format +msgid "Leave this channel" +msgstr "退出此频道" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_route__company_id #: model:ir.model.fields,help:stock.field_stock_rule__route_company_id msgid "Leave this field empty if this route is shared between all companies" msgstr "如果此路线为所有公司共享, 那么此字段留空" +#. module: base +#: model:res.country,name:base.lb +msgid "Lebanon" +msgstr "黎巴嫩" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__ledger +msgid "Ledger 28 431.8 x 279.4 mm" +msgstr "Ledger 28431.8 x 279.4 毫米" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__margin_left +msgid "Left Margin (mm)" +msgstr "左边距(毫米)" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_lang__direction__ltr +msgid "Left-to-Right" +msgstr "从左到右" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__legal +msgid "Legal 3 8.5 x 14 inches, 215.9 x 355.6 mm" +msgstr "Legal 3 8.5 x 14 英寸, 215.9 x 355.6 毫米" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_position_form msgid "Legal Notes..." @@ -17953,11 +44601,26 @@ msgstr "法律声明..." msgid "Legal mentions that have to be printed on the invoices." msgstr "法律上提到必须在结算单上打印。" +#. module: base +#: model:ir.module.module,summary:base.module_theme_clean +msgid "Legal, Corporate, Business, Tech, Services" +msgstr "" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_stock_rule msgid "Legend" msgstr "图例" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.sequence_view +msgid "Legend (for prefix, suffix)" +msgstr "图例(前缀,后缀)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.res_lang_form +msgid "Legends for supported Date and Time Formats" +msgstr "日期与时间格式图例" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_package_type__packaging_length #: model_terms:ir.ui.view,arch_db:stock.stock_package_type_form @@ -17974,12 +44637,34 @@ msgstr "长度必须为正" msgid "Length unit of measure label" msgstr "‎度量标签的长度单位‎" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Leo" +msgstr "狮子座" + +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "赖索托" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Less Payment" msgstr "少付" +#. module: base +#: model:ir.module.module,description:base.module_account_predictive_bills +msgid "" +"Let the system try to select the right account, taxes and/or product for " +"your vendor bills" +msgstr "" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_location__company_id #: model:ir.model.fields,help:stock.field_stock_quant__company_id @@ -17991,32 +44676,55 @@ msgstr "如果这个位置是公司间共享的,则此字段留空" msgid "Let your customers pay their invoices online" msgstr "允许客户线上支付" +#. module: base +#: model:ir.module.module,description:base.module_hr_referral +#: model:ir.module.module,summary:base.module_hr_referral +msgid "Let your employees share job positions and refer their friends" +msgstr "" + #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "Let's create your first request for quotation." -msgstr "" +msgstr "让我们创建第一个报价" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_step +msgid "Let's do it" +msgstr "让我们开始吧" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Let's send the invoice." -msgstr "" +msgstr "让我们送出结算单" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_company_step +msgid "Let's start!" +msgstr "我们开始吧!" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "" "Let's try the Purchase app to manage the flow from purchase to reception and" " invoice control." -msgstr "" +msgstr "让我们使用采购软件去管理从采购到收货,和票据的流程" -#. module: account +#. module: base +#: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__letter +msgid "Letter 2 8.5 x 11 inches, 215.9 x 279.4 mm" +msgstr "Letter 2 8.5 x 11 尺寸, 215.9 x 279.4 毫米" + +#. modules: base, account #: model:ir.model.fields,field_description:account.field_account_report_line__hierarchy_level +#: model:ir.model.fields,field_description:base.field_ir_logging__level +#: model_terms:ir.ui.view,arch_db:base.ir_logging_search_view msgid "Level" msgstr "等级" @@ -18031,12 +44739,12 @@ msgid "Levels of Approvals *" msgstr "审批层级 *" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 #, python-format msgid "Liabilities" -msgstr "" +msgstr "负债" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__internal_group__liability @@ -18044,9 +44752,66 @@ msgstr "" msgid "Liability" msgstr "负债" -#. modules: sale_management, account +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "赖比瑞亚" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Liberty" +msgstr "自由" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Libra" +msgstr "天秤座" + +#. module: base +#: model:ir.module.module,summary:base.module_theme_bookstore +msgid "Library, Books, Magazines, Literature, Musics, Media, Store" +msgstr "" + +#. module: base +#: model:res.country,name:base.ly +msgid "Libya" +msgstr "利比亚" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__license +msgid "License" +msgstr "许可" + +#. module: base +#: model:res.country,name:base.li +msgid "Liechtenstein" +msgstr "列支敦斯登" + +#. module: base +#: model:ir.module.category,name:base.module_category_theme_lifestyle +msgid "Lifestyle" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_graphene +msgid "Light colours, thin text, clean and sharp design." +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__limit +msgid "Limit" +msgstr "限制" + +#. modules: base, sale_management, account #: model:ir.model.fields,field_description:account.field_account_reconcile_model__line_ids #: model:ir.model.fields,field_description:account.field_account_reconcile_model_template__line_ids +#: model:ir.model.fields,field_description:base.field_ir_logging__line #: model:ir.model.fields,field_description:sale_management.field_sale_order_option__line_id msgid "Line" msgstr "行" @@ -18066,43 +44831,124 @@ msgstr "消耗申报明细" msgid "Line subtotals tax display" msgstr "行显示税金小计" -#. modules: sale_management, account +#. module: stock_barcode +#: model:ir.model.fields,help:stock_barcode.field_stock_picking_type__restrict_scan_product +msgid "Line's product must be scanned before the line can be edited" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Linebreak" +msgstr "换行" + +#. modules: base, sale_management, account #: model:ir.model.fields,field_description:account.field_account_report__line_ids +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__line_ids #: model:ir.model.fields,field_description:sale_management.field_sale_order_template__sale_order_template_line_ids #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form msgid "Lines" msgstr "明细行" #. module: account +#. odoo-python #: code:addons/account/models/account_move_line.py:0 #, python-format msgid "Lines from \"Off-Balance Sheet\" accounts cannot be reconciled" -msgstr "来自'资产负债表'科目的明细不能调节" +msgstr "来自'资产负债表'科目的明细不能对账" -#. module: mrp -#: code:addons/mrp/models/mrp_production.py:0 +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_server__link_field_id +#: model:ir.model.fields,field_description:base.field_ir_cron__link_field_id +msgid "Link Field" +msgstr "链接字段" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_link_preview_action +#: model:ir.model.fields,field_description:mail.field_mail_mail__link_preview_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__link_preview_ids +#: model:ir.ui.menu,name:mail.mail_link_preview_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_link_preview_view_tree +msgid "Link Previews" +msgstr "链接预览" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_link_tracker +#: model:ir.module.module,shortdesc:base.module_website_links +msgid "Link Tracker" +msgstr "跟踪链" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_sale_stock_renting +msgid "Link between PoS and Stock Rental." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_timesheet_grid_holidays +msgid "Link between timesheet and time off" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_voip_crm +msgid "Link between voip and crm" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_invitation_form.js:0 #, python-format -msgid "" -"Lines need to be deleted, but can not as you still have some quantities to " -"consume in them. " -msgstr "有消耗数量存在,无法删除数据. " +msgid "Link copied!" +msgstr "链接已复制!" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_workorder_hr +msgid "Link module between Mrp II and HR employees" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_hr +msgid "Link module between Point of Sale and HR" +msgstr "销售点和人力资源之间的连结模块" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_sale +msgid "Link module between Point of Sale and Sales" +msgstr "PoS营业点和销售之间的连结模块" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_sale_margin +msgid "Link module between Point of Sale and Sales Margin" +msgstr "销售点与销售利润间的连接模块" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_sale_product_configurator +msgid "Link module between point_of_sale and sale_product_configurator" +msgstr "于 point_of_sale 和 sale_product_configurator 之间的连结模块" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_hr_restaurant +msgid "Link module between pos_hr and pos_restaurant" +msgstr "pos_hr与pos_restaurant间的连接模块" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_sale_loyalty +msgid "Link module between pos_sale and pos_loyalty" +msgstr "pos_sale与pos_loyalty间的连接模块" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_move_form msgid "Linked Moves" msgstr "链接的移动" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id -msgid "Linked To" -msgstr "链接到" - #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_search msgid "Liquidity" msgstr "流动" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Liquidity Transfer" @@ -18113,17 +44959,162 @@ msgstr "流动性转移" msgid "List of all the taxes that have to be installed by the wizard" msgstr "这向导列出所有安装要配置的税" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "List of contact fields to display in the widget" +msgstr "要在窗口小部件中显示的联系人字段列表" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__modules +msgid "List of modules in which the field is defined" +msgstr "该字段被定义的模块列表" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model__modules +msgid "List of modules in which the object is defined or inherited" +msgstr "模块的列表,其中所述对像被定义或继承" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_wizard_invite__partner_ids +msgid "" +"List of partners that will be added as follower of the current document." +msgstr "列表中的业务伙伴将添加至当前单据的关注者。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/messaging_initializer.js:0 +#, python-format +msgid "List users in the current channel" +msgstr "在当前频道列出用户" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "List view of operations" msgstr "作业的列表视图" +#. module: mail +#: model:ir.model,name:mail.model_mail_channel_member +msgid "Listeners of a Channel" +msgstr "频道的收听者" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "立陶宛" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lt +msgid "Lithuania - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lt_reports +msgid "Lithuania - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lt_saft +msgid "Lithuanian Standard Audit File for Tax" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_website_live_chat +#: model:ir.module.module,shortdesc:base.module_im_livechat +msgid "Live Chat" +msgstr "在线聊天" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_currency_rate_live +msgid "Live Currency Exchange Rate" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_track_live +msgid "Live Event Tracks" +msgstr "联机活动专题" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Load File" +msgstr "加载文件" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report__load_more_limit msgid "Load More Limit" msgstr "加载更多限制" -#. modules: maintenance, stock, mrp +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_language_install +msgid "Load a Translation" +msgstr "加载翻译" + +#. module: base +#: model:ir.actions.act_window,name:base.demo_force_install_action +msgid "Load demo data" +msgstr "装入样例数据" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_member_list/channel_member_list.xml:0 +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "Load more" +msgstr "加载更多" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +msgid "Load template" +msgstr "加载模板" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#, python-format +msgid "Loading" +msgstr "正在加载" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "Loading file..." +msgstr "载入文件..." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#: code:addons/mail/static/src/components/thread_view/thread_view.xml:0 +#: code:addons/mail/static/src/components/thread_view/thread_view.xml:0 +#: code:addons/mail/static/src/models/emoji_grid_loading_screen.js:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#, python-format +msgid "Loading..." +msgstr "正在加载..." + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__fetchmail_server__server_type__local +msgid "Local Server" +msgstr "本地服务器" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_lang__code +msgid "Locale Code" +msgstr "地区代码" + +#. module: base +#: model:ir.module.category,name:base.module_category_accounting_localizations +#: model:ir.module.category,name:base.module_category_localization +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Localization" +msgstr "本地化" + +#. modules: stock, maintenance, mrp, stock_barcode #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__location #: model:ir.model.fields,field_description:mrp.field_stock_warn_insufficient_qty_unbuild__location_id #: model:ir.model.fields,field_description:stock.field_product_product__location_id @@ -18144,6 +45135,7 @@ msgstr "加载更多限制" #: model_terms:ir.ui.view,arch_db:stock.view_move_search #: model_terms:ir.ui.view,arch_db:stock.view_production_lot_form #: model_terms:ir.ui.view,arch_db:stock.warehouse_orderpoint_search +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode msgid "Location" msgstr "位置" @@ -18157,6 +45149,11 @@ msgstr "位置条码" msgid "Location Name" msgstr "位置名称" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_move_line__location_processed +msgid "Location Processed" +msgstr "处理的位置" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_replenishment_option__location_id #: model:ir.model.fields,field_description:stock.field_stock_warehouse__lot_stock_id @@ -18202,6 +45199,7 @@ msgid "Location: When arrives to" msgstr "位置:到达" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #: model:ir.actions.act_window,name:stock.action_location_form #: model:ir.actions.act_window,name:stock.action_prod_inv_location_form @@ -18220,7 +45218,7 @@ msgstr "位置:到达" msgid "Locations" msgstr "地点" -#. modules: purchase, stock, mrp +#. modules: stock, purchase, mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:stock.view_picking_form @@ -18248,18 +45246,102 @@ msgid "" msgstr "锁定制造订单以防止更改已消耗或生产的产品。" #. module: purchase +#. odoo-python #: code:addons/purchase/controllers/portal.py:0 #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__done #, python-format msgid "Locked" msgstr "已锁定" -#. module: account +#. module: base +#: model:ir.module.module,description:base.module_theme_loftspace +msgid "Loftspace Fashion Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_loftspace +msgid "Loftspace Theme" +msgstr "" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models/composer_view.js:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: model_terms:ir.ui.view,arch_db:base.ir_logging_form_view +#: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form +#, python-format +msgid "Log" +msgstr "记录" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup +#: model_terms:ir.ui.view,arch_db:mail.view_server_action_form_template +msgid "Log a note..." +msgstr "记录一个备注..." + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup +msgid "Log an Activity" +msgstr "记录一个活动" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/composer.js:0 +#, python-format +msgid "Log an internal note..." +msgstr "记录内部说明..." + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__is_log +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__is_log msgid "Log as Internal Note" msgstr "记录为内部注释" -#. modules: purchase_stock, stock +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chatter_topbar/chatter_topbar.xml:0 +#: code:addons/mail/static/src/models/composer_view.js:0 +#, python-format +msgid "Log note" +msgstr "记录备注" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/welcome_view/welcome_view.xml:0 +#, python-format +msgid "Logged as" +msgstr "记录为" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_logging_all_act +#: model:ir.model,name:base.model_ir_logging +#: model:ir.ui.menu,name:base.ir_logging_all_menu +msgid "Logging" +msgstr "日志记录" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_logging_form_view +msgid "Logging details" +msgstr "记录详情" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__login +#: model_terms:ir.ui.view,arch_db:base.view_res_users_kanban +msgid "Login" +msgstr "登录名" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_yizuo_login_background_and_styles +msgid "Login Background And Styles" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_form +msgid "Login Information" +msgstr "登录信息" + +#. modules: stock, purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.res_config_settings_view_form_purchase #: model_terms:ir.ui.view,arch_db:stock.product_category_form_view_inherit #: model_terms:ir.ui.view,arch_db:stock.view_location_form @@ -18271,12 +45353,31 @@ msgstr "物流" msgid "Logo" msgstr "" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__logo_web +msgid "Logo Web" +msgstr "Logo网络" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_logging_search_view +#: model_terms:ir.ui.view,arch_db:base.ir_logging_tree_view +msgid "Logs" +msgstr "纪录" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Long" +msgstr "长" + #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Looks good. Let's continue." -msgstr "" +msgstr "看起来不错让我们继续。" #. module: account #: model_terms:ir.ui.view,arch_db:account.onboarding_invoice_layout_step @@ -18307,7 +45408,7 @@ msgstr "损失原因" msgid "Losses Analysis" msgstr "损失分析" -#. modules: quality, mrp_workorder, stock +#. modules: stock, mrp_workorder, quality #: model:ir.model.fields,field_description:quality.field_quality_alert__lot_id #: model:ir.model.fields.selection,name:stock.selection__barcode_rule__type__lot #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_workorder_view_form_tablet @@ -18343,12 +45444,13 @@ msgstr "批号/序号 标签" msgid "Lot/SN:" msgstr "批号/序号" -#. modules: quality, mrp_workorder, stock, mrp -#: model:ir.model,name:stock.model_stock_lot +#. modules: quality, stock_barcode, stock, mrp, mrp_workorder +#: model:ir.model,name:stock_barcode.model_stock_lot #: model:ir.model.fields,field_description:mrp_workorder.field_mrp_workorder__lot_id #: model:ir.model.fields,field_description:quality.field_quality_check__lot_id #: model:ir.model.fields,field_description:stock.field_stock_scrap__lot_id #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_tree_editable_view +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_view_picking_type_form msgid "Lot/Serial" msgstr "批次/序列号" @@ -18389,7 +45491,7 @@ msgstr "批次/序列号 (PDF)" msgid "Lot/Serial Number (ZPL)" msgstr "批次/序列号 (ZPL)" -#. modules: quality_control, stock +#. modules: stock, quality_control #: model:ir.model.fields,field_description:quality_control.field_quality_check__lot_name #: model:ir.model.fields,field_description:quality_control.field_quality_check_wizard__lot_name #: model:ir.model.fields,field_description:stock.field_stock_move_line__lot_name @@ -18413,11 +45515,6 @@ msgstr "批次和序列号" msgid "Lots & Serial numbers will appear on the delivery slip" msgstr "批次 / 序列号会出现在出库单" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form -msgid "Lots & Serial numbers will appear on the invoice" -msgstr "批次 / 序列号会出现在结算单上" - #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move_line__lots_visible msgid "Lots Visible" @@ -18428,7 +45525,7 @@ msgstr "批次可见" msgid "Lots or serial numbers were not provided for tracked products" msgstr "没有提供批次或序列号用来追溯产品" -#. modules: quality_control, stock, mrp +#. modules: stock, mrp, quality_control #: model:ir.actions.act_window,name:stock.action_production_lot_form #: model:ir.ui.menu,name:mrp.menu_mrp_traceability #: model:ir.ui.menu,name:quality_control.quality_control_menu_traceability @@ -18448,26 +45545,71 @@ msgstr "" "批号/序列号可帮助您跟踪产品遵循的路径。 \n" " 从其可追溯性报告中,您将看到其使用的完整历史记录以及它们的组成。" -#. modules: quality, maintenance, mrp +#. modules: maintenance, mrp, quality #: model:ir.model.fields.selection,name:maintenance.selection__maintenance_request__priority__1 #: model:ir.model.fields.selection,name:mrp.selection__mrp_document__priority__1 #: model:ir.model.fields.selection,name:quality.selection__quality_alert__priority__1 msgid "Low" msgstr "低" -#. module: sf_base -#: model:ir.model.fields,field_description:sf_base.field_sf_cutting_tool_model__bar_total_length -#: model:ir.model.fields,field_description:sf_base.field_sf_cutting_tool_model__pad_total_length +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_lunch +#: model:ir.module.module,shortdesc:base.module_lunch +msgid "Lunch" +msgstr "工作餐" + +#. module: base +#: model:res.country,name:base.lu +msgid "Luxembourg" +msgstr "卢森堡" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu +msgid "Luxembourg - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu_reports +msgid "Luxembourg - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu_reports_annual_vat_2023 +msgid "Luxembourg - Annual VAT Report 2023 update" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu_hr_payroll +msgid "Luxembourg - Payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu_hr_payroll_account +msgid "Luxembourg - Payroll with Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_lu_peppol_id +msgid "Luxembourg - Peppol Identifier" +msgstr "卢森堡 - Peppol标识" + +#. module: sf_tool_management +#: model_terms:ir.ui.view,arch_db:sf_tool_management.view_sf_tool_material_search_form msgid "L总长(mm)" msgstr "" -#. module: sf_manufacturing -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_product__cutting_tool_l_total_length -#: model:ir.model.fields,field_description:sf_manufacturing.field_product_template__cutting_tool_l_total_length -msgid "L总长[mm]" -msgstr "" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_M +msgid "M - PROFESSIONAL, SCIENTIFIC AND TECHNICAL ACTIVITIES" +msgstr "M - 专业、科学和技术活动" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__og_mimetype +msgid "MIME type" +msgstr "MIME 类型" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "MISC" @@ -18479,6 +45621,7 @@ msgid "MO Backorder" msgstr "MO欠单" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "MO Generated by %s" @@ -18489,26 +45632,87 @@ msgstr "%s生成的MO" msgid "MO Readiness" msgstr "坯料状态" +#. module: base +#: model:ir.module.module,shortdesc:base.module_stock_barcode_mrp +msgid "MRP Barcode" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder +msgid "MRP II" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder_expiry +msgid "MRP II - Expiry" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_project_mrp +msgid "MRP Project" +msgstr "MRP 项目" + #. module: mrp #: model:ir.actions.client,name:mrp.mrp_reception_action msgid "MRP Reception Report" msgstr "MRP收料报告" +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_enterprise +msgid "MRP Subcontracting Enterprise" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_quality +msgid "MRP Subcontracting Quality" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_repair +msgid "MRP Subcontracting Repair" +msgstr "MRP外包维修" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_studio +msgid "MRP Subcontracting Studio" +msgstr "" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_res_config_settings__group_mrp_routings msgid "MRP Work Orders" msgstr "MRP 工单" +#. module: base +#: model:ir.module.module,summary:base.module_mrp_workorder_expiry +msgid "MRP Workorder Expiry" +msgstr "" + #. module: mrp #: model:ir.model,name:mrp.model_mrp_workcenter_productivity_loss_type msgid "MRP Workorder productivity losses" msgstr "MRP工单生产力损失" +#. module: base +#: model:ir.module.module,shortdesc:base.module_quality_mrp +#: model:ir.module.module,shortdesc:base.module_quality_mrp_workorder +msgid "MRP features for Quality Control" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_quality_mrp_workorder_iot +msgid "MRP features for Quality Control with IoT" +msgstr "" + #. module: sf_manufacturing #: model:ir.model.fields,field_description:sf_manufacturing.field_maintenance_equipment__mtbf msgid "MTBF" msgstr "" +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_purchase_stock +msgid "MTO Sale <-> Purchase" +msgstr "MTO 销售 <-> 采购" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse__mto_pull_id msgid "MTO rule" @@ -18519,6 +45723,21 @@ msgstr "MTO规则" msgid "MTTR" msgstr "" +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "澳门特别行政区" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "马达加斯加" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "女士" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__made_sequence_hole #: model:ir.model.fields,field_description:account.field_account_move__made_sequence_hole @@ -18526,12 +45745,253 @@ msgstr "" msgid "Made Sequence Hole" msgstr "制作序列孔" -#. module: account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mahjong" +msgstr "麻将" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mahjong red dragon" +msgstr "麻将红中" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/mail_template/mail_template.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: model:ir.model.fields,field_description:mail.field_mail_notification__mail_mail_id +#, python-format +msgid "Mail" +msgstr "邮件" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.model_search_view +msgid "Mail Activity" +msgstr "邮件活动" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__mail_activity_type_id +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__mail_activity_type_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__mail_activity_type_id +#: model:ir.model.fields,field_description:mail.field_mail_message__mail_activity_type_id msgid "Mail Activity Type" msgstr "邮件活动类型" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model,name:mail.model_mail_blacklist +#: model_terms:ir.ui.view,arch_db:mail.model_search_view +msgid "Mail Blacklist" +msgstr "邮件黑名单" + +#. module: mail +#: model:ir.model,name:mail.model_mail_thread_blacklist +msgid "Mail Blacklist mixin" +msgstr "mixin邮件黑名单" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_form +msgid "Mail Channel Form" +msgstr "邮件频道表单" + +#. module: mail +#: model:ir.model,name:mail.model_mail_composer_mixin +msgid "Mail Composer Mixin" +msgstr "邮件编辑器混合" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "Mail Delivery Failed" +msgstr "邮件投递失败" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mail_enterprise +msgid "Mail Enterprise" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/notification_group.js:0 +#, python-format +msgid "Mail Failures" +msgstr "邮件失败" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_gateway_allowed_action +#: model:ir.model,name:mail.model_mail_gateway_allowed +#: model:ir.ui.menu,name:mail.mail_gateway_allowed_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_gateway_allowed_view_tree +msgid "Mail Gateway Allowed" +msgstr "允许的邮件网关" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mail_group +msgid "Mail Group" +msgstr "邮件组" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/res_config_settings.py:0 +#, python-format +msgid "Mail Layout" +msgstr "邮件布局" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__mail_message_id_int +msgid "Mail Message Id Int" +msgstr "邮件消息 ID 整型" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mail_mobile +msgid "Mail Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mail_plugin +msgid "Mail Plugin" +msgstr "邮件外挂" + +#. module: mail +#: model:ir.model,name:mail.model_mail_channel_rtc_session +msgid "Mail RTC session" +msgstr "邮件 RTC 会话" + +#. module: mail +#: model:ir.model,name:mail.model_mail_render_mixin +msgid "Mail Render Mixin" +msgstr "邮件渲染混合" + +#. module: mail +#: model:ir.model,name:mail.model_ir_mail_server +msgid "Mail Server" +msgstr "邮件服务器" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_composer_mixin__template_id +msgid "Mail Template" +msgstr "邮件模板" + +#. module: mail +#: model:res.groups,name:mail.group_mail_template_editor +msgid "Mail Template Editor" +msgstr "邮件模板编辑器" + +#. module: mail +#: model:ir.model,name:mail.model_mail_template_reset +msgid "Mail Template Reset" +msgstr "邮件模板重置" + +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_template_reset.py:0 +#, python-format +msgid "Mail Templates have been reset" +msgstr "邮件模板已被重置" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_mail +msgid "Mail Tests" +msgstr "邮件测试" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_mail_enterprise +msgid "Mail Tests (Enterprise)" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_mail_full +msgid "Mail Tests (Full)" +msgstr "邮件测试(完整)" + +#. module: base +#: model:ir.module.module,summary:base.module_test_mail +msgid "Mail Tests: performances and tests specific to mail" +msgstr "邮件测试:特别用于邮件的展示和测试" + +#. module: base +#: model:ir.module.module,summary:base.module_test_mail_enterprise +#: model:ir.module.module,summary:base.module_test_mail_full +msgid "" +"Mail Tests: performances and tests specific to mail with all sub-modules" +msgstr "邮件测试: 特定于邮件的所有子模块的性能和测试" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.model_search_view +msgid "Mail Thread" +msgstr "邮件线程" + +#. module: mail +#: model:ir.model,name:mail.model_mail_tracking_value +msgid "Mail Tracking Value" +msgstr "邮件跟踪值" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"Mail delivery failed via SMTP server '%s'.\n" +"%s: %s" +msgstr "" +"通过SMTP发送邮件失败 '%s'.\n" +"%s: %s" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__is_notification +msgid "Mail has been created to notify people of an existing mail.message" +msgstr "邮件被创建,以通知当前收件人" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_ir_mail_server__mail_template_ids +msgid "Mail template using this mail server" +msgstr "使用此邮件服务器的邮件模板" + +#. module: mail +#: model:ir.actions.server,name:mail.ir_cron_mail_scheduler_action_ir_actions_server +#: model:ir.cron,cron_name:mail.ir_cron_mail_scheduler_action +msgid "Mail: Email Queue Manager" +msgstr "邮件:EMail队列管理器" + +#. module: mail +#: model:ir.actions.server,name:mail.ir_cron_mail_gateway_action_ir_actions_server +#: model:ir.cron,cron_name:mail.ir_cron_mail_gateway_action +msgid "Mail: Fetchmail Service" +msgstr "邮件:Fetchmail 服务" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Mailbox unavailable - %s" +msgstr "邮箱不可用 - %s" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/mobile_messaging_navbar_view.js:0 +#, python-format +msgid "Mailboxes" +msgstr "邮箱" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__mail_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__mail_ids +msgid "Mails" +msgstr "邮件" + +#. module: base +#: model:ir.ui.menu,name:base.menu_module_tree +msgid "Main Apps" +msgstr "主要应用" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_main_attachment_id #: model:ir.model.fields,field_description:account.field_account_account_template__message_main_attachment_id #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_main_attachment_id @@ -18542,6 +46002,13 @@ msgstr "邮件活动类型" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_main_attachment_id #: model:ir.model.fields,field_description:account.field_res_company__message_main_attachment_id #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_res_partner__message_main_attachment_id +#: model:ir.model.fields,field_description:mail.field_res_users__message_main_attachment_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_main_attachment_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_main_attachment_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_main_attachment_id @@ -18564,6 +46031,17 @@ msgstr "主要附件" msgid "Main Partner" msgstr "主要合伙人" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__sequence_id +msgid "Main Sequence" +msgstr "主序列" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__main +#: model:ir.model.fields.selection,name:base.selection__ir_actions_client__target__main +msgid "Main action of Current Window" +msgstr "当前窗口的主要动作" + #. module: account #: model:ir.model.fields,help:account.field_res_config_settings__currency_id msgid "Main currency of the company." @@ -18574,15 +46052,32 @@ msgstr "公司的主要货币。" msgid "Main currency of your company" msgstr "公司的主要货币" -#. modules: sf_manufacturing, maintenance +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__maintainer +msgid "Maintainer" +msgstr "维护者" + +#. modules: sf_manufacturing, maintenance, base #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__maintenance_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__maintenance_ids +#: model:ir.module.category,name:base.module_category_manufacturing_maintenance +#: model:ir.module.module,shortdesc:base.module_maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_category_view_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form #: model_terms:ir.ui.view,arch_db:sf_manufacturing.mrp_workcenter_view_kanban_inherit_maintenance msgid "Maintenance" msgstr "设备" +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_maintenance +msgid "Maintenance - HR" +msgstr "维修 - HR" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_maintenance +msgid "Maintenance - MRP" +msgstr "" + #. module: maintenance #: model:ir.ui.menu,name:maintenance.menu_m_request_calendar msgid "Maintenance Calendar" @@ -18637,6 +46132,7 @@ msgid "Maintenance Request created" msgstr "已创建维护请求" #. modules: sf_manufacturing, maintenance +#. odoo-python #: code:addons/sf_manufacturing/models/mrp_production.py:0 #: model:ir.actions.act_window,name:maintenance.hr_equipment_request_action #: model:ir.actions.act_window,name:maintenance.hr_equipment_request_action_cal @@ -18683,7 +46179,6 @@ msgstr "保养类型" #. module: maintenance #: model:ir.actions.server,name:maintenance.maintenance_requests_cron_ir_actions_server #: model:ir.cron,cron_name:maintenance.maintenance_requests_cron -#: model:ir.cron,name:maintenance.maintenance_requests_cron msgid "Maintenance: generate preventive maintenance requests" msgstr "维护:生成预防性维护请求" @@ -18693,6 +46188,7 @@ msgid "Make Accrual Entries" msgstr "创建应计分录" #. modules: stock, mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #: code:addons/mrp/models/stock_warehouse.py:0 #: code:addons/stock/models/stock_warehouse.py:0 @@ -18702,12 +46198,13 @@ msgid "Make To Order" msgstr "按订单产生" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "" "Make sure enough quantities of these components are reserved to do the " "production:\n" -msgstr "" +msgstr "确保已预留足够数量的这些组件以进行生产:\n" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase @@ -18715,6 +46212,53 @@ msgid "" "Make sure you only pay bills for which you received the goods you ordered" msgstr "确保您只支付您收到您订购的货物的账单。" +#. module: base +#: model:ir.module.module,summary:base.module_theme_nano +msgid "Maker, Agencies, Creative, Design, IT, Services, Fancy" +msgstr "" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "马拉威" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "马来西亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_my +msgid "Malaysia - Accounting" +msgstr "马来西亚-会计" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "马尔地夫" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "马里" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "马尔他" + +#. module: base +#: model:ir.module.module,summary:base.module_appointment_hr +msgid "Manage Appointments with Employees" +msgstr "" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_title_contact +msgid "" +"Manage Contact Titles as well as their abbreviations (e.g. \"Mr.\", " +"\"Mrs.\", etc)." +msgstr "管理联系人职务及其缩写(例如\"先生\"、\"夫人\"等)." + #. module: stock #: model:res.groups,name:stock.group_tracking_owner msgid "Manage Different Stock Owners" @@ -18725,6 +46269,14 @@ msgstr "管理不同的库存所有者" msgid "Manage Lots / Serial Numbers" msgstr "管理批次/序列号" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tools/debug_manager.js:0 +#: code:addons/mail/static/src/js/tools/debug_manager.js:0 +#, python-format +msgid "Manage Messages" +msgstr "管理消息" + #. module: stock #: model:res.groups,name:stock.group_stock_multi_locations msgid "Manage Multiple Stock Locations" @@ -18745,11 +46297,103 @@ msgstr "管理包裹" msgid "Manage Push and Pull inventory flows" msgstr "管理推式以及拉式库存流" +#. module: base +#: model:ir.module.module,description:base.module_hr_recruitment +msgid "" +"Manage Recruitment and Job applications\n" +"---------------------------------------\n" +"\n" +"Publish, promote and organize your job offers with the Odoo\n" +"Open Source Recruitment Application.\n" +"\n" +"Organize your job board, promote your job announces and keep track of\n" +"application submissions easily. Follow every applicant and build up a database\n" +"of skills and profiles with indexed documents.\n" +"\n" +"Post Your Jobs on Best Job Boards\n" +"---------------------------------\n" +"\n" +"Connect automatically to most famous job board websites; linkedIn, Monster,\n" +"Craigslist, ... Every job position has a new email address automatically\n" +"assigned to route applications automatically to the right job position.\n" +"\n" +"Whether applicants contact you by email or using an online form, you get all\n" +"the data indexed automatically (resumes, motivation letter) and you can answer\n" +"in just a click, reusing templates of answers.\n" +"\n" +"Customize Your Recruitment Process\n" +"----------------------------------\n" +"\n" +"Use the kanban view and customize the steps of your recruitments process;\n" +"pre-qualification, first interview, second interview, negociaiton, ...\n" +"\n" +"Get accurate statistics on your recruitment pipeline. Get reports to compare\n" +"the performance of your different investments on external job boards.\n" +"\n" +"Streamline Your Recruitment Process\n" +"-----------------------------------\n" +"\n" +"Follow applicants in your recruitment process with the smart kanban view. Save\n" +"time by automating some communications with email templates.\n" +"\n" +"Documents like resumes and motivation letters are indexed automatically,\n" +"allowing you to easily find for specific skills and build up a database of\n" +"profiles.\n" +msgstr "" +"管理招聘和工作申请\n" +"--------------------------------------\n" +"\n" +"使用 Odoo 发布、推广和组织您的工作机会\n" +"开放源码招聘应用程序.\n" +"\n" +"组织您的工作委员会,宣传您的工作公告并追踪\n" +"轻松提交申请. 关注每一位申请者,创建数据库\n" +"具有索引文件的技能和个人数据.\n" +"\n" +"在最佳工作板上发布您的工作\n" +"---------------------------------\n" +"\n" +"自动连接到最著名的工作委员会网站; linkedIn, 怪物,\n" +"Craigslist, ... 每个工作职位都会自动拥有一个新的电子邮件地址\n" +"配置以将应用程序自动路由到正确的工作职位.\n" +"\n" +"无论申请人是通过电子邮件还是使用线上表格与您联系,您都可以获得\n" +"自动索引的数据(简历,动机信),您可以回答\n" +"只需点击一下,即可重复使用答案模板.\n" +"\n" +"定制您的招聘流程\n" +"----------------------------------\n" +"\n" +"使用看板视图并自定义招聘流程的步骤;\n" +"资格预审, 第一次面试, 第二次面试, negociaiton, ...\n" +"\n" +"获取有关您的招聘渠道的准确统计数据. 获取报告进行比较\n" +"您在外部工作委员会上的不同投资的表现.\n" +"\n" +"简化您的招聘流程\n" +"----------------------------------\n" +"\n" +"使用智能看板视图在招聘过程中追踪申请人. 保存\n" +"通过使用电子邮件模板自动进行一些通信来节省时间.\n" +"\n" +"简历和动机信等文件会自动编入索引,\n" +"让您轻松找到特定技能并创建数据库设置文件.\n" + #. module: stock #: model:res.groups,name:stock.group_stock_storage_categories msgid "Manage Storage Categories" msgstr "管理存储类别" +#. module: base +#: model:ir.module.module,summary:base.module_hr_work_entry_holidays +msgid "Manage Time Off in Payslips" +msgstr "在工资表中管理休假" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_work_entry_holidays_enterprise +msgid "Manage Time Off in Payslips Enterprise" +msgstr "" + #. module: mrp #: model:res.groups,name:mrp.group_mrp_routings msgid "Manage Work Order Operations" @@ -18760,23 +46404,227 @@ msgstr "管理工单作业" msgid "Manage Work Order timer on Tablet View" msgstr "在平板视图管理工单计时器" -#. module: account +#. module: base +#: model:ir.module.module,summary:base.module_website_forum +msgid "Manage a forum with FAQ and Q&A" +msgstr "管理FAQ及Q&A功能的论坛" + +#. module: base +#: model:ir.module.module,summary:base.module_account_fleet +msgid "Manage accounting with fleets" +msgstr "会计使用车队管理" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.grant_menu_access +msgid "" +"Manage and customize the items available and displayed in your Odoo system " +"menu. You can delete an item by clicking on the box at the beginning of each" +" line and then delete it through the button that appeared. Items can be " +"assigned to specific groups in order to make them accessible to some users " +"within the system." +msgstr "管理和自定用户的菜单项. 您可以用勾选一些菜单项,然后删除. 菜单项可以配置给某些特定的用户群组,以便他们使用系统的某些特定的功能." + +#. module: base +#: model:ir.module.module,summary:base.module_website_slides +msgid "Manage and publish an eLearning platform" +msgstr "管理和发布在线学习平台" + +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__reply_to_force_new +#: model:ir.model.fields,help:mail.field_mail_compose_message__reply_to_force_new msgid "" "Manage answers as new incoming emails instead of replies going to the same " "thread." msgstr "将回复作为新的传入电子邮件进行管理,而不是将回复发送到同一线程." +#. module: base +#: model:ir.module.module,summary:base.module_account_asset_fleet +msgid "Manage assets with fleets" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_account_disallowed_expenses +#: model:ir.module.module,summary:base.module_account_disallowed_expenses +msgid "Manage disallowed expenses" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_disallowed_expenses_fleet +msgid "Manage disallowed expenses with fleets" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_loyalty_taxcloud_delivery +msgid "Manage discounts in taxclouds computations with delivery." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_sale_loyalty_taxcloud +msgid "Manage discounts in taxclouds computations." +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_mrp_plm +msgid "Manage engineering change orders on products, bills of material" +msgstr "管理产品、物料清单的工程更改单" + +#. module: base +#: model:ir.module.module,summary:base.module_event_booth +msgid "Manage event booths" +msgstr "管理活动摊位" + +#. module: base +#: model:ir.module.module,summary:base.module_event_booth_sale +msgid "Manage event booths sale" +msgstr "管理活动摊位销售" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_be_hr_payroll_attendance +msgid "Manage extra hours for your hourly paid employees for belgian payroll" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_payroll_attendance +msgid "Manage extra hours for your hourly paid employees using attendance" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_payroll_planning +msgid "Manage extra hours for your hourly paid employees using planning" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_account_accountant +msgid "Manage financial and analytic accounting" +msgstr "管理财务和分析会计" + +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_stock +msgid "Manage product inventory & availability" +msgstr "管理产品库存和可用性" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form msgid "Manage product packagings (e.g. pack of 6 bottles, box of 10 pieces)" msgstr "管理产品包装(例如6瓶每包,10件每盒)" +#. module: base +#: model:ir.module.module,summary:base.module_sale_renting +msgid "Manage rental contracts, deliveries and returns" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_recruitment_skills +msgid "Manage skills of your employees" +msgstr "管理员工技能" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_appraisal_skills +msgid "Manage skills of your employees during an appraisal process" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_skills +msgid "Manage skills, knowledge and resume of your employees" +msgstr "管理员工的技能、知识和简历" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_country +msgid "Manage the list of countries that can be set on your contacts." +msgstr "管理可以在您的联系人中设置的国家/地区列表." + +#. module: base +#: model:ir.module.module,summary:base.module_hr_recruitment_sign +msgid "Manage the signatures to send to your applicants" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_work_entry +#: model:ir.module.module,summary:base.module_hr_work_entry_contract +#: model:ir.module.module,summary:base.module_hr_work_entry_contract_enterprise +msgid "Manage work entries" +msgstr "管理工作录入" + +#. module: base +#: model:ir.module.module,description:base.module_social_facebook +#: model:ir.module.module,summary:base.module_social_facebook +msgid "Manage your Facebook pages and schedule posts" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_social_instagram +msgid "Manage your Instagram Business accounts and schedule posts" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_social_instagram +msgid "Manage your Instagram Business accounts and schedule posts." +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_social_linkedin +#: model:ir.module.module,summary:base.module_social_linkedin +msgid "Manage your LinkedIn accounts and schedule posts" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_social_twitter +#: model:ir.module.module,summary:base.module_social_twitter +msgid "Manage your Twitter accounts and schedule tweets" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_social_youtube +#: model:ir.module.module,summary:base.module_social_youtube +msgid "Manage your YouTube videos and schedule video uploads" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_contract_sign +msgid "Manage your documents to sign in contracts" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_hr_payroll +msgid "Manage your employee payroll records" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_planning +msgid "Manage your employees' schedule" +msgstr "管理员工的日程安排" + +#. module: base +#: model:ir.module.module,summary:base.module_fleet +msgid "Manage your fleet and track car costs" +msgstr "跟踪管理陆运和船运的费用" + +#. module: base +#: model:ir.module.module,summary:base.module_mail_group +msgid "Manage your mailing lists" +msgstr "管理您的邮寄名单" + +#. module: base +#: model:ir.module.module,summary:base.module_website_hr_recruitment +msgid "Manage your online hiring process" +msgstr "管理线上招聘流程" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase msgid "Manage your purchase agreements (call for tenders, blanket orders)" msgstr "管理您的请购(招标,一揽子订单)" +#. module: base +#: model:ir.module.module,description:base.module_social +#: model:ir.module.module,summary:base.module_social +msgid "Manage your social media and website visitors" +msgstr "管理您的社交媒体和网站访客" + +#. module: base +#: model:ir.module.module,summary:base.module_stock +msgid "Manage your stock and logistics activities" +msgstr "管理您的库存和物流活动" + #. module: account #: model:ir.ui.menu,name:account.account_management_menu #: model:ir.ui.menu,name:account.account_reports_management_menu @@ -18784,12 +46632,34 @@ msgstr "管理您的请购(招标,一揽子订单)" msgid "Management" msgstr "管理" -#. modules: stock, account, purchase, stock_account +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#, python-format +msgid "Mandatory Destination Location" +msgstr "强制性目的位置" + +#. module: stock_barcode +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_source_location__mandatory +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_tracking_number__mandatory +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_barcode_view_picking_type_form +msgid "Mandatory Scan" +msgstr "强制性扫描" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#, python-format +msgid "Mandatory Source Location" +msgstr "强制性源位置" + +#. modules: stock, purchase, account #: model:account.payment.method,name:account.account_payment_method_manual_in #: model:account.payment.method,name:account.account_payment_method_manual_out #: model:ir.model.fields.selection,name:purchase.selection__purchase_order_line__qty_received_method__manual #: model:ir.model.fields.selection,name:stock.selection__stock_warehouse_orderpoint__trigger__manual -#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic msgid "Manual" msgstr "手动" @@ -18820,30 +46690,20 @@ msgid "Manual Received Qty" msgstr "手工接收数量" #. module: stock +#. odoo-python #: code:addons/stock/wizard/product_replenish.py:0 #: code:addons/stock/wizard/product_replenish.py:0 #, python-format msgid "Manual Replenishment" msgstr "手动补给" -#. module: stock_account -#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 -#, python-format -msgid "Manual Stock Valuation: %s." -msgstr "手动库存估值。%s." - -#. module: stock_account -#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 -#, python-format -msgid "Manual Stock Valuation: No Reason Given." -msgstr "手动库存估值:没有给出理由。" - #. module: purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.exception_on_po msgid "Manual actions may be needed." msgstr "可能需要手动动作。" #. module: account +#. odoo-python #: code:addons/account/wizard/accrued_orders.py:0 #, python-format msgid "Manual entry" @@ -18891,19 +46751,6 @@ msgstr "" "SEPA Credit Transfer:通过向您的银行提交 SEPA Credit Transfer 文件,在 SEPA 区域付款。模块 account_sepa 是必需的。\n" "SEPA 直接借记:由于您的合作伙伴授予您的授权,您可以在 SEPA 区域获得付款。模块 account_sepa 是必需的。\n" -#. module: stock_account -#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation -#: model:ir.model.fields,help:stock_account.field_product_product__valuation -#: model:ir.model.fields,help:stock_account.field_product_template__valuation -#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation -msgid "" -"Manual: The accounting entries to value the inventory are not posted automatically.\n" -" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" -" " -msgstr "" -"手动:盘点存货的会计凭证不会自动过账。\n" -"自动化:当产品进入或离开公司时,自动创建一个会计凭证来评估库存." - #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__reservation_method__manual msgid "Manually" @@ -18915,6 +46762,7 @@ msgid "Manuf. Lead Time" msgstr "制造前置时间" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #: code:addons/mrp/models/stock_warehouse.py:0 #: model:ir.model.fields,field_description:mrp.field_stock_warehouse__manufacture_steps @@ -18926,6 +46774,7 @@ msgid "Manufacture" msgstr "制造" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #: model:ir.model.fields.selection,name:mrp.selection__stock_warehouse__manufacture_steps__mrp_one_step #, python-format @@ -18943,10 +46792,11 @@ msgid "Manufacture Rule" msgstr "制造规则" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_rule.py:0 #, python-format msgid "Manufacture Security Lead Time" -msgstr "制造安全提前期" +msgstr "制造安全前缀时间" #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_bom__type__normal @@ -18976,10 +46826,16 @@ msgstr "制造的产品" msgid "Manufactured in the last 365 days" msgstr "在过去一年内制造的" -#. modules: stock, mrp +#. modules: stock, mrp, base +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #: model:ir.model.fields.selection,name:mrp.selection__stock_picking_type__code__mrp_operation +#: model:ir.module.category,name:base.module_category_manufacturing +#: model:ir.module.category,name:base.module_category_manufacturing_manufacturing +#: model:ir.module.module,shortdesc:base.module_mrp #: model:ir.ui.menu,name:mrp.menu_mrp_root +#: model:res.partner.industry,name:base.res_partner_industry_C +#: model_terms:ir.ui.view,arch_db:base.user_groups_view #: model_terms:ir.ui.view,arch_db:mrp.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_bom_filter #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search @@ -18987,15 +46843,22 @@ msgstr "在过去一年内制造的" msgid "Manufacturing" msgstr "制造" +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_product_expiry +#: model:ir.module.module,summary:base.module_mrp_product_expiry +msgid "Manufacturing Expiry" +msgstr "制造到期" + #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/mrp_forecasted/forecasted_buttons.xml:0 #: code:addons/mrp/static/src/mrp_forecasted/forecasted_buttons.xml:0 #, python-format msgid "Manufacturing Forecast" -msgstr "" +msgstr "制造预测" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_rule.py:0 #: model:ir.model.fields,field_description:mrp.field_product_product__produce_delay #: model:ir.model.fields,field_description:mrp.field_product_template__produce_delay @@ -19028,7 +46891,7 @@ msgstr "制造作业类型" msgid "Manufacturing Order" msgstr "制造订单" -#. modules: mrp_workorder, mrp +#. modules: mrp, mrp_workorder #: model:ir.actions.act_window,name:mrp.act_product_mrp_production_workcenter #: model:ir.actions.act_window,name:mrp.action_mrp_production_form #: model:ir.actions.act_window,name:mrp.mrp_production_action @@ -19045,6 +46908,11 @@ msgstr "制造订单" msgid "Manufacturing Orders" msgstr "制造订单" +#. module: base +#: model:ir.module.module,summary:base.module_mrp +msgid "Manufacturing Orders & BOMs" +msgstr "制造订单和BOM" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_filter msgid "Manufacturing Orders which are in confirmed state." @@ -19061,12 +46929,6 @@ msgstr "制造准备就绪" msgid "Manufacturing Reference" msgstr "制造参考" -#. module: quality_mrp_workorder -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_search_inherit_mrp_workorder -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_point_view_search_inherit_mrp_workorder -msgid "Manufacturing Steps" -msgstr "制造步骤" - #. module: mrp #: model:ir.model.fields,field_description:mrp.field_stock_warehouse_orderpoint__manufacturing_visibility_days msgid "Manufacturing Visibility Days" @@ -19104,7 +46966,32 @@ msgstr "" " * 准备好了。该材料可用于开始生产。\n" " * 等待中。该材料不能开始生产。\n" -#. modules: account, stock +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_property__type__many2one +msgid "Many2One" +msgstr "多对一" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Many2one %s on model %s does not exist!" +msgstr "多对一 %s 模型 %s 不存在!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_relation +#: model:ir.ui.menu,name:base.ir_model_relation_menu +#: model_terms:ir.ui.view,arch_db:base.view_model_relation_form +#: model_terms:ir.ui.view,arch_db:base.view_model_relation_list +msgid "ManyToMany Relations" +msgstr "多对多 关系" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_web_map +msgid "Map View" +msgstr "地图视图" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__3 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__3 msgid "March" @@ -19124,7 +47011,7 @@ msgid "" " to cope with unexpected vendor delays." msgstr "供应商交货提前期。当系统生成需求产品的采购订单,它们需要提前一些天被下单以应付不可预期的供应商交货延期" -#. modules: purchase_stock, purchase +#. modules: purchase, purchase_stock #: model:ir.model.fields,help:purchase.field_res_config_settings__use_po_lead #: model_terms:ir.ui.view,arch_db:purchase_stock.res_config_settings_view_form_stock msgid "" @@ -19133,8 +47020,35 @@ msgid "" " to cope with unexpected vendor delays." msgstr "供应商供货提前期。当系统生成重新订购产品的采购订单时,他们将提前几天调度,以应付意外的供应商延迟。" -#. modules: mrp_workorder, mrp +#. module: base +#: model:ir.module.module,shortdesc:base.module_product_margin +msgid "Margins by Products" +msgstr "毛利,按产品" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_margin +msgid "Margins in Sales Orders" +msgstr "销售订单的毛利" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity/activity.xml:0 +#: code:addons/mail/static/src/models/activity_mark_done_popover_content_view.js:0 +#: code:addons/mail/static/src/models/activity_view.js:0 +#, python-format +msgid "Mark Done" +msgstr "标记完成" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_view_topbar/thread_view_topbar.xml:0 +#, python-format +msgid "Mark all read" +msgstr "标记全部已读" + +#. modules: mail, mrp, mrp_workorder #: model:ir.actions.server,name:mrp.action_production_order_mark_done +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_workorder_view_form_tablet msgid "Mark as Done" @@ -19145,28 +47059,136 @@ msgstr "标记为完成" msgid "Mark as Done and Close MO" msgstr "标记为完成并关闭MO" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_preview_view/channel_preview_view.xml:0 +#: code:addons/mail/static/src/components/thread_needaction_preview/thread_needaction_preview.xml:0 +#: code:addons/mail/static/src/models/message_action_view.js:0 +#, python-format +msgid "Mark as Read" +msgstr "标记为已读" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form msgid "Mark as Sent" msgstr "标记为已发送" -#. module: stock +#. modules: stock, mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_action_view.js:0 #: model_terms:ir.ui.view,arch_db:stock.view_picking_form +#, python-format msgid "Mark as Todo" msgstr "标记为待办" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/backend_components/activity_list_view_item/activity_list_view_item.xml:0 +#: code:addons/mail/static/src/backend_components/activity_list_view_item/activity_list_view_item.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#: code:addons/mail/static/src/xml/web_kanban_activity.xml:0 +#, python-format +msgid "Mark as done" +msgstr "完成" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_payment_register__payment_difference_handling__reconcile msgid "Mark as fully paid" msgstr "标记为全额付款" +#. module: base +#: model:ir.module.category,name:base.module_category_marketing +msgid "Marketing" +msgstr "营销" + +#. module: base +#: model:ir.module.category,name:base.module_category_marketing_marketing_automation +#: model:ir.module.module,shortdesc:base.module_marketing_automation +msgid "Marketing Automation" +msgstr "营销自动化" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_marketing_automation +msgid "Marketing Automation Tests" +msgstr "" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "马绍尔群岛" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique" +msgstr "马丁尼克" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_test_mass_mailing +msgid "Mass Mail Tests" +msgstr "群发邮件测试" + +#. module: base +#: model:ir.module.module,summary:base.module_test_mass_mailing +msgid "Mass Mail Tests: feature and performance tests for mass mailing" +msgstr "群发邮件测试:群发邮件的功能和性能测试" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_themes +msgid "Mass Mailing Themes" +msgstr "群发邮件主题" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view msgid "Mass Produce" msgstr "批量生产" -#. module: mrp +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_event +msgid "Mass mailing on attendees" +msgstr "向与会者群发邮件" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_slides +msgid "Mass mailing on course members" +msgstr "向课程成员群发邮件" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_crm +msgid "Mass mailing on lead / opportunities" +msgstr "批量邮寄潜在客户机会" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_sale +msgid "Mass mailing on sale orders" +msgstr "批量邮寄销售订单" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_sale_subscription +#: model:ir.module.module,shortdesc:base.module_mass_mailing_sale_subscription +msgid "Mass mailing on sale subscriptions" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mass_mailing_event_track +msgid "Mass mailing on track speakers" +msgstr "向发言者群发邮件" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_crm_sms +#: model:ir.module.module,shortdesc:base.module_mass_mailing_crm_sms +msgid "Mass mailing sms on lead / opportunities" +msgstr "关于潜在客户/商机的群发短信息" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing_sale_sms +#: model:ir.module.module,shortdesc:base.module_mass_mailing_sale_sms +msgid "Mass mailing sms on sale orders" +msgstr "批量邮寄销售订单" + +#. modules: mrp, base #: model:ir.model.fields,field_description:mrp.field_res_config_settings__module_mrp_mps +#: model:ir.module.module,shortdesc:base.module_mrp_mps +#: model:ir.module.module,summary:base.module_mrp_mps msgid "Master Production Schedule" msgstr "主生产调度" @@ -19215,6 +47237,7 @@ msgid "Matched Journal Items" msgstr "匹配的会计分录" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "Matched Transactions" @@ -19239,6 +47262,11 @@ msgstr "匹配中 #" msgid "Matching Order" msgstr "匹配订单" +#. module: account +#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner_category_ids +msgid "Matching categories" +msgstr "只有那些业务伙伴类别" + #. module: account #: model:ir.model.fields,help:account.field_account_move_line__matching_number msgid "" @@ -19246,6 +47274,11 @@ msgid "" " name of the full reconcile if it exists." msgstr "此明细的匹配编号,如果仅部分协调,则为\"P\", 如果存在完全调节,则匹配编号." +#. module: account +#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner_ids +msgid "Matching partners" +msgstr "只有那些业务伙伴" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_filter msgid "Material Availability" @@ -19256,6 +47289,16 @@ msgstr "物料可用性" msgid "Materials Model" msgstr "" +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "茅利塔尼亚" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "模里西斯" + #. module: account #: model:ir.model.fields,field_description:account.field_account_partial_reconcile__max_date msgid "Max Date of Matched Lines" @@ -19307,17 +47350,27 @@ msgid "" "reserved." msgstr "应在预定日期前预留产品的最大天数。" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__maximum_group +msgid "Maximum of Group of Contacts" +msgstr "联系人组的最多联系人数量" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_package_type__max_weight msgid "Maximum weight shippable in this packaging" msgstr "可交付最大重量包装。" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__5 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__5 msgid "May" msgstr "五月" +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "马约特" + #. module: sf_manufacturing #: model:ir.model.fields,help:sf_manufacturing.field_maintenance_equipment__mtbf msgid "" @@ -19346,10 +47399,36 @@ msgstr "测量频率单位" msgid "Measure Success" msgstr "测量成功" -#. module: quality_mrp_workorder -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_form_tablet_inherit_quality -msgid "Measure:" -msgstr "测量:" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_settings_menu.js:0 +#, python-format +msgid "Media devices unobtainable" +msgstr "" + +#. module: mail +#: model:mail.activity.type,name:mail.mail_activity_data_meeting +msgid "Meeting" +msgstr "会议" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_channel__member_count +msgid "Member Count" +msgstr "成员计数" + +#. modules: mail, base +#: model:ir.model.fields,field_description:mail.field_mail_channel__channel_member_ids +#: model:ir.module.module,shortdesc:base.module_membership +#: model_terms:ir.ui.view,arch_db:mail.mail_channel_view_form +msgid "Members" +msgstr "成员" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_channel__group_ids +msgid "" +"Members of those groups will automatically added as followers. Note that " +"they will be able to manage their subscription manually if necessary." +msgstr "这些群组的成员将自动添加为关注者。注意, 如果有必要,他们可以手工管理他们的订阅。" #. module: account #: model:ir.model.fields,field_description:account.field_account_payment_register__communication @@ -19358,7 +47437,7 @@ msgid "Memo" msgstr "备忘" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #: model_terms:ir.ui.view,arch_db:account.report_payment_receipt_document @@ -19366,19 +47445,122 @@ msgstr "备忘" msgid "Memo:" msgstr "备忘录:" -#. module: mrp_workorder +#. modules: base, mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/mrp_workorder.py:0 #: code:addons/mrp_workorder/models/mrp_workorder.py:0 +#: model:ir.model,name:base.model_ir_ui_menu +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__name +#: model_terms:ir.ui.view,arch_db:base.edit_menu +#: model_terms:ir.ui.view,arch_db:base.edit_menu_access +#: model_terms:ir.ui.view,arch_db:base.edit_menu_access_search #, python-format msgid "Menu" msgstr "菜单" -#. module: mrp +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Menu Items" +msgstr "菜单项目" + +#. module: base +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__name +msgid "Menu Name" +msgstr "菜单名称" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__menus_by_module +#: model_terms:ir.ui.view,arch_db:base.view_groups_form +msgid "Menus" +msgstr "菜单" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Menus Customization" +msgstr "菜单定制化" + +#. modules: base, mrp +#: model:ir.actions.act_window,name:base.action_partner_merge #: model:ir.actions.server,name:mrp.action_production_order_merge msgid "Merge" msgstr "合并" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Merge Automatically" +msgstr "自动合并" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Merge Automatically all process" +msgstr "自动合并所有处理" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Merge Contacts" +msgstr "合并联系人" + +#. module: base +#: model:ir.model,name:base.model_base_partner_merge_line +msgid "Merge Partner Line" +msgstr "合并合作伙伴明细" + +#. module: mail +#: model:ir.model,name:mail.model_base_partner_merge_automatic_wizard +msgid "Merge Partner Wizard" +msgstr "合并业务伙伴向导" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Merge the following contacts" +msgstr "合并以下联系人" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +msgid "Merge with Manual Check" +msgstr "手动检查与合并" + +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/base_partner_merge_automatic_wizard.py:0 +#, python-format +msgid "Merged with the following partners:" +msgstr "合并以下业务伙伴:" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models/message.js:0 +#: model:ir.model,name:mail.model_mail_message +#: model:ir.model.fields,field_description:base.field_ir_logging__message +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__message +#: model:ir.model.fields,field_description:mail.field_mail_link_preview__message_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__mail_message_id +#: model:ir.model.fields,field_description:mail.field_mail_message_reaction__message_id +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__mail_message_id +#: model:ir.model.fields,field_description:mail.field_mail_notification__mail_message_id +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__mail_message_id +#: model:ir.model.fields,field_description:mail.field_mail_wizard_invite__message +#: model_terms:ir.ui.view,arch_db:mail.mail_message_view_form +#, python-format +msgid "Message" +msgstr "消息" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/composer.js:0 +#, python-format +msgid "Message #%s..." +msgstr "消息 #%s..." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/composer.js:0 +#, python-format +msgid "Message %s..." +msgstr "消息%s..." + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_has_error #: model:ir.model.fields,field_description:account.field_account_account_template__message_has_error #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_has_error @@ -19389,6 +47571,13 @@ msgstr "合并" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_has_error #: model:ir.model.fields,field_description:account.field_res_company__message_has_error #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_has_error +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_has_error +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_has_error +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_has_error +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_has_error +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_has_error +#: model:ir.model.fields,field_description:mail.field_res_partner__message_has_error +#: model:ir.model.fields,field_description:mail.field_res_users__message_has_error #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_has_error #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_has_error #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_has_error @@ -19406,16 +47595,58 @@ msgstr "合并" msgid "Message Delivery error" msgstr "消息传递错误" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__mail_message_id +msgid "Message ID" +msgstr "消息ID" + #. module: quality_control #: model_terms:ir.ui.view,arch_db:quality_control.quality_point_view_form_inherit_quality_control msgid "Message If Failure" msgstr "失败消息" -#. module: account +#. module: mail +#: model:ir.model,name:mail.model_mail_notification +msgid "Message Notifications" +msgstr "消息通知" + +#. module: mail +#: model:ir.model,name:mail.model_mail_message_reaction +msgid "Message Reaction" +msgstr "消息反应" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_message_reaction_action +#: model:ir.ui.menu,name:mail.mail_message_reaction_menu +msgid "Message Reactions" +msgstr "消息反应" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__record_name +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__record_name +#: model:ir.model.fields,field_description:mail.field_mail_mail__record_name +#: model:ir.model.fields,field_description:mail.field_mail_message__record_name msgid "Message Record Name" msgstr "消息记录名称" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__name +msgid "Message Type" +msgstr "消息类型" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_group/notification_group.xml:0 +#, python-format +msgid "Message delivery failure image" +msgstr "消息传递失败图像" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__description +#: model:ir.model.fields,help:mail.field_mail_message__description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "消息描述:主题或正文的开始部分" + #. module: account #: model:ir.model.fields,field_description:account.field_res_partner__invoice_warn_msg #: model:ir.model.fields,field_description:account.field_res_users__invoice_warn_msg @@ -19440,14 +47671,80 @@ msgstr "采购订单明细的消息" msgid "Message for Stock Picking" msgstr "库存拣货单消息" -#. module: account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/composer_view.js:0 +#, python-format +msgid "Message posted on \"%s\"" +msgstr "在“%s”上发布的消息" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__email_to +msgid "Message recipients (emails)" +msgstr "消息收件人(EMail)" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__references +msgid "Message references, such as identifiers of previous messages" +msgstr "消息引用" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Message should be a valid EmailMessage instance" +msgstr "消息应该具有一个电子邮件消息实例" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__name +msgid "" +"Message subtype gives a more precise type on the message, especially for " +"system notifications. For example, it can be a notification related to a new" +" record (New), or to a stage change in a process (Stage change). Message " +"subtypes allow to precisely tune the notifications the user want to receive " +"on its wall." +msgstr "" +"消息子类型在消息上提供了更精确的类型,尤其是对于系统通知。例如,它可以是与新记录(新)相关的通知,或者是过程(阶段更改)中的阶段改变。消息子类型允许精确调整用户希望在其壁上接收到的通知。" + +#. module: mail +#: model:ir.model,name:mail.model_mail_message_subtype +msgid "Message subtypes" +msgstr "消息子类型" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_followers__subtype_ids +msgid "" +"Message subtypes followed, meaning subtypes that will be pushed onto the " +"user's Wall." +msgstr "消息子类型跟随,意味着将被推到用户墙上的子类型。" + +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__message_type +#: model:ir.model.fields,help:mail.field_mail_compose_message__message_type +#: model:ir.model.fields,help:mail.field_mail_mail__message_type +#: model:ir.model.fields,help:mail.field_mail_message__message_type msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "消息类型:电子邮件用于邮件消息, 通知用户系统消息,评论用于其他消息,例如用户回复" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_mail__message_id +#: model:ir.model.fields,help:mail.field_mail_message__message_id +msgid "Message unique identifier" +msgstr "消息唯一编号" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__message_id +#: model:ir.model.fields,field_description:mail.field_mail_message__message_id +msgid "Message-Id" +msgstr "消息ID" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance +#. odoo-javascript +#: code:addons/mail/static/src/components/messaging_menu/messaging_menu.xml:0 +#: model:ir.actions.act_window,name:mail.act_server_history +#: model:ir.actions.act_window,name:mail.action_view_mail_message #: model:ir.model.fields,field_description:account.field_account_account__message_ids #: model:ir.model.fields,field_description:account.field_account_account_template__message_ids #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_ids @@ -19458,6 +47755,15 @@ msgstr "消息类型:电子邮件用于邮件消息, 通知用户系统消 #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_ids #: model:ir.model.fields,field_description:account.field_res_company__message_ids #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_ids +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_shortcode__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_ids +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_ids +#: model:ir.model.fields,field_description:mail.field_res_partner__message_ids +#: model:ir.model.fields,field_description:mail.field_res_users__message_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_ids #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_ids @@ -19472,10 +47778,46 @@ msgstr "消息类型:电子邮件用于邮件消息, 通知用户系统消 #: model:ir.model.fields,field_description:stock.field_stock_lot__message_ids #: model:ir.model.fields,field_description:stock.field_stock_picking__message_ids #: model:ir.model.fields,field_description:stock.field_stock_scrap__message_ids +#: model:ir.ui.menu,name:mail.menu_mail_message +#: model_terms:ir.ui.view,arch_db:mail.view_message_tree +#, python-format msgid "Messages" msgstr "消息" -#. modules: account, stock +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_message_search +msgid "Messages Search" +msgstr "消息搜索" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "Messages can be starred to remind you to check back later." +msgstr "消息允许 星号 标出来以便提醒您过后查看." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "Messages marked as read will appear in the history." +msgstr "标记为已读的消息将出现在历史记录中。" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__internal +msgid "" +"Messages with internal subtypes will be visible only by employees, aka " +"members of base_user group" +msgstr "内部消息只有员工可见,即基础用户组成员" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Messages with tracking values cannot be modified" +msgstr "无法修改具有追踪值的消息" + +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_payment__payment_method_id #: model:ir.model.fields,field_description:stock.field_product_removal__method msgid "Method" @@ -19484,9 +47826,82 @@ msgstr "付款方式" #. module: maintenance #: model:maintenance.team,name:maintenance.equipment_team_metrology msgid "Metrology" -msgstr "计量学" +msgstr "机械维修班" -#. module: mrp +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mexican" +msgstr "墨西哥" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_mx_edi +msgid "Mexican Localization for EDI documents" +msgstr "" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "墨西哥" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx +msgid "Mexico - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_stock +msgid "Mexico - Electronic Delivery Guide" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_stock_extended +msgid "Mexico - Electronic Delivery Guide Comex" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_stock_extended_40 +msgid "Mexico - Electronic Delivery Guide Comex 4.0" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_reports_closing +msgid "Mexico - Month 13 Trial Balance" +msgstr "" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "密克罗尼西亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_microsoft_outlook +msgid "Microsoft Outlook" +msgstr "微软Outlook" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_microsoft_account +msgid "Microsoft Users" +msgstr "微软用户" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Milky" +msgstr "银河" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Milky Way" +msgstr "银河" + +#. modules: base, mrp +#: model:ir.model.fields,field_description:base.field_ir_attachment__mimetype #: model:ir.model.fields,field_description:mrp.field_mrp_document__mimetype msgid "Mime Type" msgstr "MIME 类型" @@ -19502,6 +47917,89 @@ msgstr "最小数量" msgid "Min Tolerance" msgstr "最小偏差" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_line__min_id +msgid "MinID" +msgstr "最小ID" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pe +msgid "" +"Minimal set of accounts to start to work in Perú.\n" +"=================================================\n" +"\n" +"The usage of this CoA must refer to the official documentation on MEF.\n" +"\n" +"https://www.mef.gob.pe/contenidos/conta_publ/documentac/VERSION_MODIFICADA_PCG_EMPRESARIAL.pdf\n" +"https://www.mef.gob.pe/contenidos/conta_publ/documentac/PCGE_2019.pdf\n" +"\n" +"All the legal references can be found here.\n" +"\n" +"http://www.sunat.gob.pe/legislacion/general/index.html\n" +"\n" +"Considerations.\n" +"===============\n" +"\n" +"Chart of account:\n" +"-----------------\n" +"\n" +"The tree of the CoA is done using account groups, all the accounts with move\n" +"are available as groups but only the more common ones are available as actual\n" +"accounts, if you want to create a new one use the group of accounts as\n" +"reference.\n" +"\n" +"# TODO: Image showing what I am talking about.\n" +"\n" +"Taxes:\n" +"------\n" +"\n" +"'IGV': {'name': 'VAT', 'code': 'S'},\n" +"'IVAP': {'name': 'VAT', 'code': ''},\n" +"'ISC': {'name': 'EXC', 'code': 'S'},\n" +"'ICBPER': {'name': 'OTH', 'code': ''},\n" +"'EXP': {'name': 'FRE', 'code': 'G'},\n" +"'GRA': {'name': 'FRE', 'code': 'Z'},\n" +"'EXO': {'name': 'VAT', 'code': 'E'},\n" +"'INA': {'name': 'FRE', 'code': 'O'},\n" +"'OTROS': {'name': 'OTH', 'code': 'S'},\n" +"\n" +"We added on this module the 3 concepts in taxes (necessary for the EDI\n" +"signature)\n" +"\n" +"# TODO: Describe new fields.\n" +"\n" +"Products:\n" +"---------\n" +"\n" +"Code for products to be used in the EDI are availables here, in order to decide\n" +"which tax use due to which code following this reference and python code:\n" +"\n" +"https://docs.google.com/spreadsheets/d/1f1fxV8uGhA-Qz9-R1L1-dJirZ8xi3Wfg/edit#gid=662652969\n" +"\n" +"**Nota:**\n" +"---------\n" +"\n" +"**RELACIÓN ENTRE EL PCGE Y LA LEGISLACIÓN TRIBUTARIA:**\n" +"\n" +"Este PCGE ha sido preparado como una herramienta de carácter contable, para acumular información que\n" +"requiere ser expuesta en el cuerpo de los estados financieros o en las notas a dichos estados. Esa acumulación se\n" +"efectúa en los libros o registros contables, cuya denominación y naturaleza depende de las actividades que se\n" +"efectúen, y que permiten acciones de verificación, control y seguimiento. Las NIIF completas y la NIIF PYMES no\n" +"contienen prescripciones sobre teneduría de libros, y consecuentemente, sobre los libros y otros registros\n" +"de naturaleza contable. Por otro lado, si bien es cierto la contabilidad es también un insumo, dentro de otros, para\n" +"labores de cumplimiento tributario, este PCGE no ha sido elaborado para satisfacer prescripciones tributarias ni su\n" +"verificación. No obstante ello, donde no hubo oposición entre la contabilidad financiera prescrita por las NIIF y\n" +"la legislación tributaria, este PCGE ha incluido subcuentas, divisionarias y sub divisionarias, para\n" +"distinguir componentes con validez tributaria, dentro del conjunto de componentes que corresponden a una\n" +"perspectiva contable íntegramente. Por lo tanto, este PCGE no debe ser considerado en ningún aspecto\n" +"como una guía con propósitos distintos del contable.\n" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_code_backend_theme +msgid "Minimalist and elegant backend theme for Odoo 16, Backend Theme, Theme" +msgstr "" + #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_double_validation_amount msgid "Minimum Amount" @@ -19523,27 +48021,40 @@ msgstr "最小库存规则" msgid "Minimum amount for which a double validation is required" msgstr "两步审核所需要的最低金额" +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_B +msgid "Mining" +msgstr "采矿业" + #. module: account #: model:ir.model.fields,field_description:account.field_account_tax_repartition_line_template__minus_report_expression_ids msgid "Minus Report Expressions" msgstr "减去报表表达式" -#. module: mrp -#. openerp-web +#. modules: base, mrp +#. odoo-python +#. odoo-javascript #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #: code:addons/mrp/static/src/components/bom_overview_special_line/mrp_bom_overview_special_line.xml:0 +#: model:ir.model.fields.selection,name:base.selection__ir_cron__interval_type__minutes #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_view #, python-format msgid "Minutes" msgstr "分钟" -#. modules: quality_control, account, mrp +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Misc" +msgstr "杂项" + +#. modules: quality_control, base, mrp, account #: model:ir.actions.act_window,name:account.action_account_moves_journal_misc #: model:ir.model.fields.selection,name:account.selection__account_journal__type__general -#: model:ir.ui.menu,name:account.menu_finance_entries_accounting_miscellaneous #: model_terms:ir.ui.view,arch_db:account.view_account_journal_search #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_form_view #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:quality_control.quality_alert_view_form @@ -19551,18 +48062,45 @@ msgid "Miscellaneous" msgstr "杂项" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Miscellaneous Operations" msgstr "杂项操作" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +#: model:res.partner.title,shortcut:base.res_partner_title_miss +msgid "Miss" +msgstr "小姐" + #. module: account +#. odoo-python #: code:addons/account/wizard/account_validate_account_move.py:0 #, python-format msgid "Missing 'active_model' in context." msgstr "上下文中缺少'active_model' 。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "Missing SMTP Server" +msgstr "缺少 SMTP 服务器" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__failure_type__mail_email_missing +msgid "Missing email" +msgstr "缺少电子邮件" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_notification__failure_type__mail_email_missing +msgid "Missing email address" +msgstr "缺少电子邮件地址" + #. module: account +#. odoo-python #: code:addons/account/models/account_partial_reconcile.py:0 #, python-format msgid "Missing foreign currencies on partials having ids: %s" @@ -19583,35 +48121,391 @@ msgstr "在可计算的采购订单行上缺少必输字段" msgid "Missing required product and UoM on accountable sale quote line." msgstr "在责任销售报价上缺少所需产品和计量单位。" +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Missing required value for the field '%s'" +msgstr "找不到字段 '%s' 所需的值" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Missing required value for the field '%s' (%s)" +msgstr "找不到字段 '%s' (%s)所需的值" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Missing view architecture." +msgstr "缺少视图结构." + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_mister +msgid "Mister" +msgstr "先生" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_immediate_production__mo_ids msgid "Mo" msgstr "" -#. modules: maintenance, account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: model:ir.model.fields,field_description:base.field_res_company__mobile +#: model:ir.model.fields,field_description:base.field_res_partner__mobile +#: model:ir.model.fields,field_description:base.field_res_users__mobile +#: model:ir.module.module,shortdesc:base.module_web_mobile +#: model_terms:ir.ui.view,arch_db:base.contact +#, python-format +msgid "Mobile" +msgstr "手机" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Mobile:" +msgstr "手机:" + +#. modules: account, base_import, mail, base, maintenance +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 #: model:ir.model.fields,field_description:account.field_account_reconcile_model_line__model_id #: model:ir.model.fields,field_description:account.field_account_reconcile_model_line_template__model_id #: model:ir.model.fields,field_description:account.field_account_reconcile_model_partner_mapping__model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_report__model_id +#: model:ir.model.fields,field_description:base.field_ir_actions_server__model_id +#: model:ir.model.fields,field_description:base.field_ir_cron__model_id +#: model:ir.model.fields,field_description:base.field_ir_filters__model_id +#: model:ir.model.fields,field_description:base.field_ir_model__model +#: model:ir.model.fields,field_description:base.field_ir_model_access__model_id +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__model +#: model:ir.model.fields,field_description:base.field_ir_model_fields__model_id +#: model:ir.model.fields,field_description:base.field_ir_model_relation__model +#: model:ir.model.fields,field_description:base.field_ir_rule__model_id +#: model:ir.model.fields,field_description:base.field_ir_ui_view__model +#: model:ir.model.fields,field_description:base_import.field_base_import_import__res_model +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__res_model +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__res_model #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__model +#: model_terms:ir.ui.view,arch_db:base.act_report_xml_search_view +#: model_terms:ir.ui.view,arch_db:base.ir_access_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_search +#: model_terms:ir.ui.view,arch_db:base.view_model_data_search +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_search +#: model_terms:ir.ui.view,arch_db:base.view_model_search +#: model_terms:ir.ui.view,arch_db:base.view_rule_search +#: model_terms:ir.ui.view,arch_db:base.view_server_action_search +#: model_terms:ir.ui.view,arch_db:base.view_view_search +#: model_terms:ir.ui.view,arch_db:mail.view_email_template_search +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_search +#, python-format msgid "Model" msgstr "模型" -#. module: account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Model %s does not exist" +msgstr "模型 %s 不存在" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Model %s does not exist!" +msgstr "模型 %s 不存在!" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Model '%s' contains module data and cannot be removed." +msgstr "模型 '%s' 包含了模块数据,不能被删除." + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "Model Access" +msgstr "模型访问" + +#. module: base +#: model:ir.model,name:base.model_ir_model_constraint +msgid "Model Constraint" +msgstr "模型约束" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_constraint +#: model:ir.ui.menu,name:base.ir_model_constraint_menu +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_form +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_list +msgid "Model Constraints" +msgstr "模型约束" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +#: model:ir.model.fields,field_description:base.field_ir_ui_view__model_data_id +msgid "Model Data" +msgstr "模型数据" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model__name +#: model_terms:ir.ui.view,arch_db:base.view_model_form +#: model_terms:ir.ui.view,arch_db:base.view_model_search +#: model_terms:ir.ui.view,arch_db:base.view_model_tree +msgid "Model Description" +msgstr "模型说明" + +#. modules: base, account +#: model:ir.model.fields,field_description:base.field_ir_actions_report__model +#: model:ir.model.fields,field_description:base.field_ir_actions_server__model_name +#: model:ir.model.fields,field_description:base.field_ir_cron__model_name +#: model:ir.model.fields,field_description:base.field_ir_model_data__model +#: model:ir.model.fields,field_description:base.field_ir_model_fields__model #: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_form msgid "Model Name" msgstr "模型名称" +#. module: base +#: model:ir.actions.report,name:base.report_ir_model_overview +msgid "Model Overview" +msgstr "模型概览" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_server__crud_model_id +#: model:ir.model.fields,help:base.field_ir_cron__crud_model_id +msgid "" +"Model for record creation / update. Set this field only to specify a " +"different model than the base model." +msgstr "记录创建 / 更新的模型。设置此字段仅仅定义了一个与base模型不一样的模型。" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__res_model_change +msgid "Model has change" +msgstr "模型已更改" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__res_model +msgid "Model name of the object to open in the view window" +msgstr "在新窗口打开的对象的模型名称" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Model not found: %(model)s" +msgstr "没有找到模型: %(model)s" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_wizard_invite__res_model +msgid "Model of the followed resource" +msgstr "关注资源的模型" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_server__model_id +#: model:ir.model.fields,help:base.field_ir_cron__model_id +msgid "Model on which the server action runs." +msgstr "服务器动作运行的模型." + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__res_model +msgid "" +"Model the subtype applies to. If False, this subtype applies to all models." +msgstr "子类型适用的模型:如果错误,子类型适用于所有模型." + +#. modules: mail, base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:mail.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +#: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall +msgid "Models" +msgstr "模型" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view__arch_updated +#: model_terms:ir.ui.view,arch_db:base.view_view_search +msgid "Modified Architecture" +msgstr "修改的体系结构" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_cash_rounding__strategy__biggest_tax msgid "Modify tax amount" msgstr "修改税金额" +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_form +msgid "" +"Modifying the model can have an impact on existing activities using this " +"activity type, be careful." +msgstr "注意,这个活动类型修改模型会影响现有活动." + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: model:ir.model.fields,field_description:base.field_base_module_uninstall__module_id +#: model:ir.model.fields,field_description:base.field_ir_demo_failure__module_id +#: model:ir.model.fields,field_description:base.field_ir_model_constraint__module +#: model:ir.model.fields,field_description:base.field_ir_model_data__module +#: model:ir.model.fields,field_description:base.field_ir_model_relation__module +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency__module_id +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__module_id +#: model_terms:ir.ui.view,arch_db:base.module_form +#: model_terms:ir.ui.view,arch_db:base.view_model_constraint_search +#: model_terms:ir.ui.view,arch_db:base.view_model_data_search +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Module" +msgstr "模块" + +#. module: base +#. odoo-python +#: code:addons/base/models/assetsbundle.py:0 +#: code:addons/base/models/assetsbundle.py:0 +#, python-format +msgid "" +"Module %r not loaded or inexistent (try to inherit %r), or templates of " +"addon being loaded %r are misordered (template %r)" +msgstr "模块%r未加载或不存在(尝试承接%r),或加载%r的ADDON模板顺序错误(模板%r)" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_module_category_form +#: model_terms:ir.ui.view,arch_db:base.view_module_category_tree +msgid "Module Category" +msgstr "模块类别" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.module_view_kanban +msgid "Module Info" +msgstr "模块信息" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__shortdesc +#: model_terms:ir.ui.view,arch_db:base.module_form +msgid "Module Name" +msgstr "模块名称" + +#. module: base +#: model:ir.model,name:base.model_report_base_report_irmodulereference +msgid "Module Reference Report (base)" +msgstr "模块参考报告(基础)" + +#. module: mail +#: model:ir.model,name:mail.model_base_module_uninstall +msgid "Module Uninstall" +msgstr "模块卸载" + +#. module: base +#: model:ir.actions.act_window,name:base.action_view_base_module_update +msgid "Module Update" +msgstr "模块更新" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_update +msgid "Module Update Result" +msgstr "模块更新结果" + +#. module: base +#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install +msgid "Module Upgrade Install" +msgstr "模块升级安装" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "模块依赖" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_exclusion +msgid "Module exclusion" +msgstr "模块排除" + +#. module: base +#. odoo-python +#: code:addons/convert.py:0 +#, python-format +msgid "" +"Module loading %s failed: file %s could not be processed:\n" +" %s" +msgstr "" +"模块装入 %s 失败: 文件 %s 不能处理:\n" +" %s" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_category__module_ids +msgid "Modules" +msgstr "模块" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#, python-format +msgid "Modules \"%s\" and \"%s\" are incompatible." +msgstr "模块「%s」和「%s」不兼容." + +#. module: base +#: model:res.country,name:base.md +msgid "Moldova" +msgstr "摩尔多瓦" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "摩纳哥" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_lang__week_start__1 +msgid "Monday" +msgstr "周一" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_column__figure_type__monetary #: model:ir.model.fields.selection,name:account.selection__account_report_expression__figure_type__monetary msgid "Monetary" msgstr "货币" +#. module: base +#: model:ir.module.module,description:base.module_theme_monglia +msgid "Monglia Catering Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_monglia +msgid "Monglia Theme" +msgstr "" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "蒙古" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mn +msgid "Mongolia - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mn_reports +msgid "Mongolia - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_project_mrp +msgid "Monitor MRP using project" +msgstr "使用项目监控 MRP" + +#. module: base +#: model:ir.module.module,summary:base.module_project_purchase +msgid "Monitor purchase in project" +msgstr "使用项目监控 采购" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Monitor your product margins from invoices" @@ -19620,24 +48514,68 @@ msgstr "从结算单中监视产品利润" #. module: maintenance #: model:maintenance.equipment.category,name:maintenance.equipment_monitor msgid "Monitors" -msgstr "显示器" +msgstr "AGV小车" + +#. module: base +#: model:res.country,name:base.me +msgid "Montenegro" +msgstr "蒙特内哥罗" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_move__auto_post__monthly msgid "Monthly" msgstr "每月" -#. modules: quality_control, account +#. modules: mail, base, quality_control, account #: model:ir.model.fields,field_description:account.field_account_payment_term_line__months +#: model:ir.model.fields.selection,name:base.selection__ir_cron__interval_type__months +#: model:ir.model.fields.selection,name:mail.selection__ir_actions_server__activity_date_deadline_range_type__months #: model:ir.model.fields.selection,name:quality_control.selection__quality_point__measure_frequency_unit__month msgid "Months" msgstr "月" -#. modules: account, stock +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__font__montserrat +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "蒙哲腊" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#: code:addons/mail/static/src/components/call_action_list/call_action_list.xml:0 +#, python-format +msgid "More" +msgstr "更多" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "摩洛哥" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ma +msgid "Morocco - Accounting" +msgstr "摩洛哥-会计" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mother" +msgstr "母亲" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mount Fuji" +msgstr "富士山" + +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_invoice_report__move_id #: model:ir.model.fields,field_description:account.field_account_move_reversal__move_ids #: model:ir.model.fields,field_description:account.field_account_resequence_wizard__move_ids -#: model:ir.model.fields,field_description:stock.field_report_stock_quantity__move_ids #: model:ir.model.fields,field_description:stock.field_stock_assign_serial__move_id #: model:ir.model.fields,field_description:stock.field_stock_package_level__move_ids #: model:ir.model.fields,field_description:stock.field_stock_return_picking_line__move_id @@ -19667,7 +48605,7 @@ msgstr "移动详情" msgid "Move Entire Packages" msgstr "移动整个包裹" -#. modules: account, stock +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__move_line_ids #: model:ir.model.fields,field_description:stock.field_product_label_layout__move_line_ids #: model:ir.model.fields,field_description:stock.field_stock_move__move_line_ids @@ -19715,11 +48653,6 @@ msgstr "创建退回调拨的调拨" msgid "Move types" msgstr "移动类型" -#. module: stock_account -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree -msgid "Moved Quantity" -msgstr "" - #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_return_picking__product_return_moves #: model_terms:ir.ui.view,arch_db:stock.view_move_tree @@ -19746,6 +48679,26 @@ msgstr "通过此订购补货点创建的库存调拨将放在此补货组中。 msgid "Moves to Track" msgstr "待追踪的产品" +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "莫三比克" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mz +msgid "Mozambique - Accounting" +msgstr "莫桑比克 - 会计" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mz_reports +msgid "Mozambique - Accounting Reports" +msgstr "" + +#. module: base +#: model:res.partner.title,shortcut:base.res_partner_title_mister +msgid "Mr." +msgstr "" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_consumption_warning__mrp_consumption_warning_line_ids msgid "Mrp Consumption Warning Line" @@ -19763,6 +48716,57 @@ msgstr "MRP生产" msgid "Mrp Production Count" msgstr "Mrp生产计数" +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_repair +msgid "Mrp Repairs" +msgstr "MRP 维修" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mrs Claus" +msgstr "Claus太太" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mrs Santa Claus" +msgstr "Santa Claus太太" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: model:res.partner.title,shortcut:base.res_partner_title_madam +#, python-format +msgid "Mrs." +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Mrs. Claus" +msgstr "Claus太太" + +#. module: base +#: model:res.groups,name:base.group_multi_company +#: model_terms:ir.ui.view,arch_db:base.view_users_form +msgid "Multi Companies" +msgstr "多公司" + +#. module: base +#: model:res.groups,name:base.group_multi_currency +msgid "Multi Currencies" +msgstr "多币种" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_multilang +msgid "Multi Language Chart of Accounts" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report__filter_multi_company msgid "Multi-Company" @@ -19793,6 +48797,13 @@ msgstr "一种包裹类型的多种容量规则。" msgid "Multiple capacity rules for one product." msgstr "一个产品有多种能力规则。" +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Multiple errors occurred" +msgstr "发生多个错误" + #. module: account #: model:ir.model.fields,help:account.field_account_bank_statement_line__direction_sign #: model:ir.model.fields,help:account.field_account_move__direction_sign @@ -19802,13 +48813,40 @@ msgid "" "balance" msgstr "乘数取决于文档类型,将价格转换为余额" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Munch" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Muslim" +msgstr "伊斯兰教徒" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_action_list_view.js:0 +#, python-format +msgid "Mute" +msgstr "静音" + +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__my_activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_journal__my_activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_move__my_activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_payment__my_activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__my_activity_date_deadline #: model:ir.model.fields,field_description:account.field_res_partner_bank__my_activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__my_activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_res_partner__my_activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_res_users__my_activity_date_deadline #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__my_activity_date_deadline #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__my_activity_date_deadline #: model:ir.model.fields,field_description:mrp.field_mrp_production__my_activity_date_deadline @@ -19827,17 +48865,47 @@ msgstr "我的活动截止时间" msgid "My Alerts" msgstr "我的警报" +#. module: stock +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"My Company (Chicago) undertakes to do its best to supply performant services" +" in due time in accordance with the agreed timeframes. However, none of its " +"obligations can be considered as being an obligation to achieve results. My " +"Company (Chicago) cannot under any circumstances, be required by the client " +"to appear as a third party in the context of any claim for damages filed " +"against the client by an end consumer." +msgstr "" +"我公司(芝加哥)承诺尽最大努力按照商定的时间框架在适当的时候提供有效的服务。然而,它的任何义务都不能被认为是取得成果的义务。在任何情况下,我公司(芝加哥)不能被客户要求作为第三方出现在最终消费者对客户提出的任何损害索赔中。" + +#. module: base +#: model_terms:res.company,invoice_terms_html:base.main_company +msgid "" +"My Company (San Francisco) undertakes to do its best to supply performant " +"services in due time in accordance with the agreed timeframes. However, none" +" of its obligations can be considered as being an obligation to achieve " +"results. My Company (San Francisco) cannot under any circumstances, be " +"required by the client to appear as a third party in the context of any " +"claim for damages filed against the client by an end consumer." +msgstr "" +"我的公司(旧金山)承诺按照约定的时间框架,在适当的时候提供高性能服务. 但是,它的任何义务都不能被视为取得成果的义务. " +"在任何情况下,我的公司(旧金山)都不能被客户要求在最终消费者对客户提出的任何损害索赔中作为第三方出现." + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.quant_search_view msgid "My Counts" msgstr "我的计数" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search +msgid "My Document(s)" +msgstr "我的文件" + #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "My Draft RFQs" -msgstr "" +msgstr "我的草稿询价" #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search @@ -19851,11 +48919,11 @@ msgid "My Invoices" msgstr "我的结算单" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "My Late RFQs" -msgstr "" +msgstr "我迟到的询价" #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_search @@ -19873,11 +48941,11 @@ msgid "My Purchases" msgstr "我的采购单" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "My RFQs" -msgstr "" +msgstr "我的询价" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search @@ -19885,10 +48953,30 @@ msgid "My Transfers" msgstr "我的调拨" #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 #, python-format msgid "My Waiting RFQs" +msgstr "我等待中的询价" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_filters_view_search +msgid "My filters" +msgstr "我的筛选" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "缅甸" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_N +msgid "N - ADMINISTRATIVE AND SUPPORT SERVICE ACTIVITIES" +msgstr "N - 行政和支持服务活动" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_us_payment_nacha +msgid "NACHA Payments" msgstr "" #. module: account @@ -19898,7 +48986,53 @@ msgstr "" msgid "NET" msgstr "净" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "NEW" +msgstr "新建" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "NEW button" +msgstr "NEW按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "NG" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "NG button" +msgstr "NG按钮" + +#. module: base +#: model:res.country,vat_label:base.co model:res.country,vat_label:base.gt +msgid "NIT" +msgstr "" + +#. module: base +#: model:res.country,vat_label:base.id +msgid "NPWP" +msgstr "" + +#. modules: purchase, mrp, account, base_import, quality, mail, base, stock, +#. maintenance +#. odoo-python +#. odoo-javascript +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 #: code:addons/purchase/controllers/portal.py:0 #: model:ir.model.fields,field_description:account.field_account_account_template__name #: model:ir.model.fields,field_description:account.field_account_cash_rounding__name @@ -19916,6 +49050,40 @@ msgstr "净" #: model:ir.model.fields,field_description:account.field_account_root__name #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__bank_name #: model:ir.model.fields,field_description:account.field_account_tax_group__name +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__group_by_name +#: model:ir.model.fields,field_description:base.field_ir_actions_todo__name +#: model:ir.model.fields,field_description:base.field_ir_asset__name +#: model:ir.model.fields,field_description:base.field_ir_attachment__name +#: model:ir.model.fields,field_description:base.field_ir_cron__cron_name +#: model:ir.model.fields,field_description:base.field_ir_logging__name +#: model:ir.model.fields,field_description:base.field_ir_mail_server__name +#: model:ir.model.fields,field_description:base.field_ir_model_access__name +#: model:ir.model.fields,field_description:base.field_ir_model_fields_selection__name +#: model:ir.model.fields,field_description:base.field_ir_module_category__name +#: model:ir.model.fields,field_description:base.field_ir_module_module_dependency__name +#: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__name +#: model:ir.model.fields,field_description:base.field_ir_property__name +#: model:ir.model.fields,field_description:base.field_ir_rule__name +#: model:ir.model.fields,field_description:base.field_ir_sequence__name +#: model:ir.model.fields,field_description:base.field_report_layout__name +#: model:ir.model.fields,field_description:base.field_report_paperformat__name +#: model:ir.model.fields,field_description:base.field_res_bank__name +#: model:ir.model.fields,field_description:base.field_res_country_group__name +#: model:ir.model.fields,field_description:base.field_res_currency__full_name +#: model:ir.model.fields,field_description:base.field_res_groups__name +#: model:ir.model.fields,field_description:base.field_res_lang__name +#: model:ir.model.fields,field_description:base.field_res_partner__name +#: model:ir.model.fields,field_description:base.field_res_partner_bank__bank_name +#: model:ir.model.fields,field_description:base.field_res_partner_industry__name +#: model:ir.model.fields,field_description:base.field_res_users__name +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m__name +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__name +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__name +#: model:ir.model.fields,field_description:mail.field_mail_activity_type__name +#: model:ir.model.fields,field_description:mail.field_mail_channel__name +#: model:ir.model.fields,field_description:mail.field_mail_followers__name +#: model:ir.model.fields,field_description:mail.field_mail_guest__name +#: model:ir.model.fields,field_description:mail.field_mail_template__name #: model:ir.model.fields,field_description:maintenance.field_maintenance_stage__name #: model:ir.model.fields,field_description:mrp.field_mrp_document__name #: model:ir.model.fields,field_description:quality.field_quality_alert__name @@ -19928,6 +49096,11 @@ msgstr "净" #: model:ir.model.fields,field_description:stock.field_stock_track_line__product_display_name #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__name #: model_terms:ir.ui.view,arch_db:account.view_account_tax_search +#: model_terms:ir.ui.view,arch_db:base.ir_profile_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_property_view_search +#: model_terms:ir.ui.view,arch_db:base.view_currency_form +#: model_terms:ir.ui.view,arch_db:base.view_currency_tree +#: model_terms:ir.ui.view,arch_db:base.view_partner_tree #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_category_view_tree #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form #, python-format @@ -19939,11 +49112,67 @@ msgstr "名称" msgid "Name Searchable" msgstr "名称可搜索" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "" +"Name or id %(name_or_id)r in %(use)s must be present in view but is missing." +msgstr "%(use)s 中的名称或 ID %(name_or_id)r 必须出现在视图中但丢失." + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__report_name +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" +"用于生成的报表文件的名称(可能包含占位符)\n" +"可以省略扩展,然后来自报表类型。" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description +msgid "Name your key" +msgstr "命名您的密钥" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Name, TIN, Email, or Reference" msgstr "名称, 税号, 邮箱, 或 参考" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Name:" +msgstr "名称:" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "纳米比亚" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_nano +msgid "Nano Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_nano +msgid "Nano Theme - Responsive Bootstrap Theme for Odoo CMS" +msgstr "" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Narrow" +msgstr "变窄" + +#. module: base +#: model:res.country,name:base.nr +msgid "Nauru" +msgstr "诺鲁" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Navigate easily through reports and see what is behind the numbers" @@ -19966,6 +49195,20 @@ msgstr "移动进数量" msgid "Nbr Moves Out" msgstr "移动出数量" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__needaction +#: model:ir.model.fields,field_description:mail.field_mail_message__needaction +#: model_terms:ir.ui.view,arch_db:mail.view_message_search +msgid "Need Action" +msgstr "需要行动" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Need Help?" +msgstr "需要帮助?" + #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__needed_terms #: model:ir.model.fields,field_description:account.field_account_move__needed_terms @@ -20001,19 +49244,45 @@ msgstr "负数库存" msgid "Negative value of amount field if payment_type is outbound" msgstr "如果payment_type为outbound,则金额字段为负值" +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "尼泊尔" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__net_weight msgid "Net Weight" msgstr "净重量" -#. modules: account, stock +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "荷兰" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_nl +msgid "Netherlands - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_nl_reports +msgid "Netherlands - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_nl_intrastat +msgid "Netherlands Intrastat Declaration" +msgstr "" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__account_report__filter_hierarchy__never #: model:ir.model.fields.selection,name:account.selection__res_company__early_pay_discount_computation__excluded #: model:ir.model.fields.selection,name:stock.selection__stock_picking_type__create_backorder__never msgid "Never" msgstr "从不" -#. modules: quality, quality_control, stock, mrp +#. modules: stock, mrp, quality_control, quality +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #: code:addons/mrp/models/mrp_production.py:0 #: code:addons/mrp/models/mrp_production.py:0 @@ -20048,12 +49317,30 @@ msgstr "从不" msgid "New" msgstr "新建" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "New API Key" +msgstr "新 API 密钥" + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia" +msgstr "新喀里多尼亚" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/discuss/discuss.xml:0 +#, python-format +msgid "New Channel" +msgstr "新频道" + #. module: mrp_workorder #: model:ir.model.fields,field_description:mrp_workorder.field_propose_change__note msgid "New Instruction" msgstr "" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "New Instruction suggested by %(user_name)s" @@ -20064,7 +49351,16 @@ msgstr "" msgid "New Journal Name" msgstr "新日记账名称" +#. module: base +#. odoo-python +#: code:addons/base/wizard/base_export_language.py:0 +#: code:addons/base/wizard/base_export_language.py:0 +#, python-format +msgid "New Language (Empty translation template)" +msgstr "新语言(空翻译模板)" + #. module: sf_manufacturing +#. odoo-python #: code:addons/sf_manufacturing/models/mrp_production.py:0 #: code:addons/sf_manufacturing/models/mrp_workorder.py:0 #, python-format @@ -20077,11 +49373,23 @@ msgid "New Move" msgstr "新凭证" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move_line.py:0 #, python-format msgid "New Move:" msgstr "新移动:" +#. module: base +#: model:ir.model.fields,field_description:base.field_change_password_own__new_password +#: model:ir.model.fields,field_description:base.field_change_password_user__new_passwd +msgid "New Password" +msgstr "新密码" + +#. module: base +#: model:ir.model.fields,field_description:base.field_change_password_own__confirm_password +msgid "New Password (Confirmation)" +msgstr "新密码(确认)" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_change_product_qty__new_quantity msgid "New Quantity on Hand" @@ -20093,12 +49401,14 @@ msgid "New Request" msgstr "新的请求" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/models/quality.py:0 #, python-format msgid "New Step suggested by %(user_name)s" msgstr "" #. module: mrp_workorder +#. odoo-python #: code:addons/mrp_workorder/wizard/propose_change.py:0 #, python-format msgid "New Title suggested:" @@ -20114,22 +49424,88 @@ msgstr "新建交易" msgid "New Transfer" msgstr "新调拨" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_char +msgid "New Value Char" +msgstr "新字符值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_datetime +msgid "New Value Datetime" +msgstr "新日期时间值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_float +msgid "New Value Float" +msgstr "新浮点值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_integer +msgid "New Value Integer" +msgstr "新整数值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_monetary +msgid "New Value Monetary" +msgstr "新货币值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__new_value_text +msgid "New Value Text" +msgstr "新文本值" + #. module: account #: model:ir.model.fields,field_description:account.field_account_resequence_wizard__new_values msgid "New Values" msgstr "新值" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value -msgid "New value" -msgstr "新价值" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_url__target__new +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__new +#: model:ir.model.fields.selection,name:base.selection__ir_actions_client__target__new +msgid "New Window" +msgstr "新窗口" -#. module: stock_account -#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty -msgid "New value by quantity" +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "纽西兰" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_nz +msgid "New Zealand - Accounting" msgstr "" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/messaging_menu/messaging_menu.xml:0 +#: code:addons/mail/static/src/models/chat_window.js:0 +#: code:addons/mail/static/src/models/messaging_notification_handler.js:0 +#, python-format +msgid "New message" +msgstr "新建消息" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "New messages" +msgstr "新建消息" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "New messages appear here." +msgstr "新消息出现在这里." + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_tracking_value_form +msgid "New values" +msgstr "新值" + #. module: purchase +#. odoo-python #: code:addons/purchase/controllers/portal.py:0 #, python-format msgid "Newest" @@ -20141,24 +49517,54 @@ msgstr "最新" msgid "Newest first" msgstr "最新第一" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_mass_mailing +msgid "Newsletter Subscribe Button" +msgstr "新闻信订阅按钮" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_mass_mailing_sms +msgid "Newsletter Subscribe SMS Template" +msgstr "新闻信订阅SMS模板" + #. modules: quality_control, mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp_workorder.quality_check_view_form_tablet #: model_terms:ir.ui.view,arch_db:quality_control.view_quality_check_wizard msgid "Next" msgstr "下一页" -#. module: mrp +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#, python-format +msgid "Next (Right-Arrow)" +msgstr "下一步 (右箭头)" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_tree +msgid "Next Activities" +msgstr "下一步活动" + +#. modules: mail, mrp +#. odoo-javascript +#: code:addons/mail/static/src/js/activity.js:0 +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_tree_view +#, python-format msgid "Next Activity" msgstr "下一个活动" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_journal__activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_move__activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_payment__activity_date_deadline #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_date_deadline #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_date_deadline +#: model:ir.model.fields,field_description:mail.field_res_users__activity_date_deadline #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_date_deadline #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_date_deadline #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_date_deadline @@ -20172,13 +49578,17 @@ msgstr "下一个活动" msgid "Next Activity Deadline" msgstr "下一活动截止日期" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_summary #: model:ir.model.fields,field_description:account.field_account_journal__activity_summary #: model:ir.model.fields,field_description:account.field_account_move__activity_summary #: model:ir.model.fields,field_description:account.field_account_payment__activity_summary #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_summary #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_summary +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_summary +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_summary +#: model:ir.model.fields,field_description:mail.field_res_users__activity_summary #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_summary #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_summary #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_summary @@ -20192,13 +49602,17 @@ msgstr "下一活动截止日期" msgid "Next Activity Summary" msgstr "下一活动摘要" -#. modules: maintenance, mrp_workorder, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance, +#. mrp_workorder #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__activity_type_id #: model:ir.model.fields,field_description:account.field_account_journal__activity_type_id #: model:ir.model.fields,field_description:account.field_account_move__activity_type_id #: model:ir.model.fields,field_description:account.field_account_payment__activity_type_id #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__activity_type_id #: model:ir.model.fields,field_description:account.field_res_partner_bank__activity_type_id +#: model:ir.model.fields,field_description:mail.field_mail_activity_mixin__activity_type_id +#: model:ir.model.fields,field_description:mail.field_res_partner__activity_type_id +#: model:ir.model.fields,field_description:mail.field_res_users__activity_type_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__activity_type_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__activity_type_id #: model:ir.model.fields,field_description:mrp.field_mrp_production__activity_type_id @@ -20217,37 +49631,113 @@ msgstr "下一活动类型" msgid "Next Check" msgstr "下一检查" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron__nextcall +msgid "Next Execution Date" +msgstr "下一执行日期" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__next_inventory_date msgid "Next Expected Inventory" msgstr "预计下一次盘点" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_sequence__number_next +#: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__number_next +#: model_terms:ir.ui.view,arch_db:base.sequence_view +#: model_terms:ir.ui.view,arch_db:base.sequence_view_tree +msgid "Next Number" +msgstr "下一号码" + #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form msgid "Next Preventive Maintenance" msgstr "下次预防保养" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_activity__has_recommended_activities +msgid "Next activities available" +msgstr "下一活动可用" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_quant__inventory_date msgid "Next date the On Hand Quantity should be counted." msgstr "应计算下一个日期的在手数量。" -#. modules: purchase_stock, stock +#. module: base +#: model:ir.model.fields,help:base.field_ir_sequence__number_next +#: model:ir.model.fields,help:base.field_ir_sequence_date_range__number_next +msgid "Next number of this sequence" +msgstr "本序列的下一号码" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_sequence__number_next_actual +#: model:ir.model.fields,help:base.field_ir_sequence_date_range__number_next_actual +msgid "" +"Next number that will be used. This number can be incremented frequently so " +"the displayed value might already be obsolete" +msgstr "下一个编号将被使用. 这个编号经常增加,所以显示的值可能已经被废弃" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_cron__nextcall +msgid "Next planned execution date for this job." +msgstr "此任务的下一次计划的执行日期." + +#. modules: stock, purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.exception_on_po #: model_terms:ir.ui.view,arch_db:stock.exception_on_picking msgid "Next transfer(s) impacted:" msgstr "影响到的下一步调拨:" -#. module: account +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "尼加拉瓜" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +msgid "Nice work! Your configuration is done." +msgstr "干得好!设置已完成." + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "尼日" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "奈及利亚" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "纽埃岛" + +#. modules: mail, stock_barcode, account +#. odoo-javascript +#: code:addons/mail/static/src/models/tracking_value_item.js:0 #: model:ir.model.fields.selection,name:account.selection__account_move__auto_post__no +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_put_in_pack__no +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_dest_location__no +#, python-format msgid "No" msgstr "否" +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#: code:addons/stock_barcode/models/stock_picking.py:0 +#, python-format +msgid "No %(picking_type)s ready for this %(barcode_type)s" +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/report/report_stock_reception.py:0 #, python-format msgid "No %s selected or a delivery order selected" -msgstr "" +msgstr "未选择%s 或已选择交货单" #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.view_assign_serial_numbers_production @@ -20256,18 +49746,44 @@ msgstr "" msgid "No Backorder" msgstr "没有欠单" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_country +msgid "No Country Found!" +msgstr "未找到国家!" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_notification.py:0 +#, python-format +msgid "No Error" +msgstr "没有错误" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__blocked msgid "No Follow-up" msgstr "无催款" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/follower_list_menu/follower_list_menu.xml:0 +#, python-format +msgid "No Followers" +msgstr "无关注者" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_column__figure_type__none #: model:ir.model.fields.selection,name:account.selection__account_report_expression__figure_type__none msgid "No Formatting" msgstr "无格式" -#. modules: stock, account, purchase +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#, python-format +msgid "No IM status available" +msgstr "没有可用的 IM 状态" + +#. modules: stock, purchase, account #: model:ir.model.fields.selection,name:account.selection__res_partner__invoice_warn__no-message #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_line_warn__no-message #: model:ir.model.fields.selection,name:purchase.selection__res_partner__purchase_warn__no-message @@ -20280,7 +49796,25 @@ msgstr "没消息" msgid "No Purchase Analysis" msgstr "没有采购分析" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template_preview__no_record +msgid "No Record" +msgstr "没有记录" + +#. module: stock_barcode +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_source_location__no +msgid "No Scan" +msgstr "" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/js/import_action.js:0 +#, python-format +msgid "No Separator" +msgstr "没有分隔符" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "No Stock On Hand" @@ -20297,7 +49831,7 @@ msgid "No Tracking" msgstr "不追溯" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/components/reception_report_main/stock_reception_report_main.xml:0 #: model_terms:ir.ui.view,arch_db:stock.report_reception_body #, python-format @@ -20305,6 +49839,7 @@ msgid "No allocation need found." msgstr "无需预留库存" #. module: account +#. odoo-python #: code:addons/account/models/account_journal.py:0 #, python-format msgid "No attachment was provided" @@ -20315,13 +49850,34 @@ msgstr "没有提供附件" msgid "No bill of materials found. Let's create one!" msgstr "还没有BOM。 让我们创建一个!" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/webclient/commands/mail_providers.js:0 +#, python-format +msgid "No channel found" +msgstr "未找到相应的频道" + #. module: quality_control #: model:ir.model.fields.selection,name:quality_control.selection__stock_move_line__check_state__no_checks msgid "No checks" msgstr "检查" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/discuss/discuss.xml:0 +#, python-format +msgid "No conversation selected." +msgstr "未选择对话。" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_list/notification_list.xml:0 +#, python-format +msgid "No conversation yet..." +msgstr "暂无对话..." + #. module: mrp -#. openerp-web +#. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_table/mrp_bom_overview_table.xml:0 #: model_terms:ir.ui.view,arch_db:mrp.report_mrp_bom #, python-format @@ -20341,7 +49897,58 @@ msgstr "还没有数据耶" msgid "No data yet!" msgstr "还没有数据耶!" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "No default view of type '%s' could be found !" +msgstr "类型'%s' 无默认视图 !" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/emoji_grid_no_search_content_view.js:0 +#, python-format +msgid "No emoji match your search" +msgstr "没有符合您的搜索的表情符号" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_sequence__implementation__no_gap +msgid "No gap" +msgstr "无间隔" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "No group currently allows this operation." +msgstr "当前没有组允许此操作." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "No history messages" +msgstr "没有历史讯息" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#, python-format +msgid "" +"No internal operation type. Please configure one in warehouse settings." +msgstr "没有内部作业类型。 请在仓库设置中配置一个。" + +#. module: base +#. odoo-python +#: code:addons/fields.py:0 +#, python-format +msgid "No inverse field %r found for %r" +msgstr "未找到%r对应的字段%r" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "" @@ -20359,17 +49966,72 @@ msgstr "还没有制造订单。 让我们创建一个。" msgid "No manufacturing steps defined yet!" msgstr "尚未定义生产步骤!" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"No matching record found for %(field_type)s '%(value)s' in field " +"'%%(field)s'" +msgstr "在字段'%%(field)s'中没找到匹配的记录%(field_type)s '%(value)s'" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_fields.py:0 +#: code:addons/base/models/ir_fields.py:0 +#, python-format +msgid "" +"No matching record found for %(field_type)s '%(value)s' in field " +"'%%(field)s' and the following error was encountered when we attempted to " +"create one: %(error_message)s" +msgstr "" +"没有找到匹配的记录在 %(field_type)s '%(value)s' 字段 '%%(field)s' " +"并且当我们试图创建一个错误时,遇到了以下错误: %(error_message)s" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "No matching records found for" +msgstr "未找到对应的资料" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "No matching records found for the following" +msgstr "没有发现以下的匹配记录" + #. module: quality_control #: model:ir.model.fields.selection,name:quality_control.selection__quality_check__measure_success__none msgid "No measure" msgstr "没有测量" +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_resend_message.py:0 +#, python-format +msgid "No message_id found in context" +msgstr "上下文中没有找到message_id" + +#. module: base +#: model_terms:ir.actions.act_window,help:base.open_module_tree +msgid "No module found!" +msgstr "没有找到模块!" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_move_line.py:0 #, python-format msgid "No negative quantities allowed" msgstr "不允许负数" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window__view_ids +msgid "No of Views" +msgstr "视图号码" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.report_stock_inventory msgid "No operation made on this lot." @@ -20381,32 +50043,59 @@ msgid "No operations found. Let's create a transfer !" msgstr "没有作业单。让我们创建一个作业单!" #. module: account +#. odoo-python #: code:addons/account/models/ir_actions_report.py:0 #, python-format msgid "" -"No original vendor bills could be found for any of the selected vendor " -"bills." -msgstr "没有找到任何所选供应商账单的原始供应商账单。" +"No original purchase document could be found for any of the selected " +"purchase documents." +msgstr "找不到任何选定采购文件的原始采购文件。" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#, python-format +msgid "No picking or location or product corresponding to barcode %(barcode)s" +msgstr "没有找到对应条码%(barcode)s的分拣单或库存产品或产品" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#: code:addons/stock_barcode/controllers/stock_barcode.py:0 +#, python-format +msgid "No picking or product corresponding to barcode %(barcode)s" +msgstr "没有找到对应的条码%(barcode)s的分拣单或者产品" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "No possible action found with the selected lines." msgstr "未找到所选行的可能动作。" -#. modules: purchase, stock, mrp +#. modules: stock, purchase, mrp #: model_terms:ir.actions.act_window,help:mrp.product_template_action #: model_terms:ir.actions.act_window,help:purchase.product_normal_action_puchased #: model_terms:ir.actions.act_window,help:stock.product_template_action_product msgid "No product found. Let's create one!" msgstr "现在还没有产品, 我们先创建一个!" +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#: code:addons/stock_barcode/models/stock_picking.py:0 +#, python-format +msgid "No product or package found for barcode %s" +msgstr "" + #. module: mrp #: model_terms:ir.actions.act_window,help:mrp.mrp_workcenter_productivity_report_blocked msgid "No productivity loss for this equipment" msgstr "该设备无生产力损失" #. module: stock +#. odoo-python #: code:addons/stock/wizard/stock_picking_return.py:0 #, python-format msgid "" @@ -20451,6 +50140,7 @@ msgid "No quality control point found" msgstr "没有找到质量控制点" #. module: quality +#. odoo-python #: code:addons/quality/models/quality.py:0 #: code:addons/quality/models/quality.py:0 #, python-format @@ -20461,6 +50151,13 @@ msgstr "" "找不到此公司的质量团队。\n" "请先转到“配置”并创建一个。" +#. module: mail +#. odoo-python +#: code:addons/mail/wizard/mail_compose_message.py:0 +#, python-format +msgid "No recipient found." +msgstr "没有找到收件人。" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_orderpoint msgid "No reordering rule found" @@ -20471,7 +50168,31 @@ msgstr "没有重订货规则" msgid "No request for quotation found. Let's create one!" msgstr "没有找到询价,我们先创建一个" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_mail_server.py:0 +#: code:addons/base/models/ir_mail_server.py:0 +#, python-format +msgid "" +"No response received. Check server address and port number.\n" +" %s" +msgstr "" +"没有收到响应. 检查服务器地址和端口地址.\n" +" %s" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/fetchmail.py:0 +#, python-format +msgid "" +"No response received. Check server information.\n" +" %s" +msgstr "" +"没有收到回应。 检查服务器信息。\n" +" %s" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "" @@ -20479,13 +50200,29 @@ msgid "" "Verify the routes configuration on the product." msgstr "没有找到在“%s”中补充“%s”的规则。验证产品上的路线配置。" -#. modules: sf_manufacturing, stock +#. modules: stock, sf_manufacturing +#. odoo-python #: code:addons/sf_manufacturing/models/stock.py:0 #: code:addons/stock/models/stock_rule.py:0 #, python-format msgid "No source location defined on stock rule: %s!" msgstr "库存规则:%s没有定义来源位置!" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_actions.py:0 +#: code:addons/base/models/ir_actions.py:0 +#, python-format +msgid "No spaces allowed in view_mode: %r" +msgstr "于 view_mode 中不允许有空格: %r" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_list/message_list.xml:0 +#, python-format +msgid "No starred messages" +msgstr "没有已加星标的消息" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.stock_move_action msgid "No stock move found" @@ -20503,6 +50240,12 @@ msgid "" "localization module." msgstr "找不到此国家/地区的税务模板。请安装相应的本地化模块。" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__reply_to_force_new +#: model:ir.model.fields,field_description:mail.field_mail_message__reply_to_force_new +msgid "No threading for answers" +msgstr "无响应" + #. module: stock #: model_terms:ir.actions.act_window,help:stock.action_picking_form #: model_terms:ir.actions.act_window,help:stock.action_picking_tree_all @@ -20520,6 +50263,20 @@ msgstr "没有仓库调拨。 让我们创建一个!" msgid "No unbuild order found" msgstr "没有拆解单" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/webclient/commands/mail_providers.js:0 +#, python-format +msgid "No user found" +msgstr "未找到相应的用户" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/channel_invitation_form/channel_invitation_form.xml:0 +#, python-format +msgid "No user found that is not already a member of this channel." +msgstr "未找到尚未成为此频道成员的用户。" + #. module: account #: model:ir.model.fields,help:account.field_res_company__tax_lock_date msgid "" @@ -20527,6 +50284,15 @@ msgid "" "this date." msgstr "没有用户可以编辑与此日期之前和之前相关的税收相关的会计凭证。" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#: code:addons/mail/static/src/js/m2x_avatar_user.js:0 +#: code:addons/mail/static/src/views/fields/assign_user_command_hook.js:0 +#, python-format +msgid "No users found" +msgstr "未找到相应的用户" + #. module: account #: model:ir.model.fields,help:account.field_res_company__fiscalyear_lock_date msgid "" @@ -20553,6 +50319,11 @@ msgstr "没有生产的工单。单击以将工作中心标记为阻塞。" msgid "No. of Digits to use for account code" msgstr "科目代码使用数字" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_res_config_settings__barcode_nomenclature_id +msgid "Nomenclature" +msgstr "命名规则" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__non_trade msgid "Non Trade" @@ -20568,6 +50339,11 @@ msgstr "非贸易应付" msgid "Non Trade Receivable" msgstr "非贸易应收账款" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_data__noupdate +msgid "Non Updatable" +msgstr "不可更新" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__asset_non_current #: model:ir.model.fields.selection,name:account.selection__account_account_template__account_type__asset_non_current @@ -20580,12 +50356,59 @@ msgstr "非流动资产" msgid "Non-current Liabilities" msgstr "非流动负债" -#. module: account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Non-relational field %(field)r in path %(field_path)r in %(use)s)" +msgstr "%(use)s 中路径 %(field_path)r 中的非关系字段 %(field)r)" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Non-relational field %r in dependency %r" +msgstr "依赖%r中无相关的字段%r" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Non-relational field name '%s' in related field '%s'" +msgstr "非关系字段名称 '%s' 在关联字段 '%s'" + +#. module: base +#: model:ir.module.module,description:base.module_test_testing_utilities +msgid "" +"Non-trivial testing utilities can require models & all\n" +" \n" +"This here module is useful to validate that they're doing what they're \n" +"supposed to do\n" +" " +msgstr "" +"非一般的测试实用程序可能需要模型和全部\n" +" \n" +"这个模块有助于验证他们正在做他们所做的\n" +"和应该做的事情\n" +" " + +#. modules: mail, base, account +#. odoo-javascript +#: code:addons/mail/static/src/models/tracking_value_item.js:0 #: model:ir.model.fields.selection,name:account.selection__account_tax__type_tax_use__none #: model:ir.model.fields.selection,name:account.selection__account_tax_template__type_tax_use__none +#: model:ir.model.fields.selection,name:base.selection__ir_mail_server__smtp_encryption__none +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_type__category__default +#, python-format msgid "None" msgstr "无" +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "诺福克岛" + #. module: quality_control #: model:ir.model.fields,field_description:quality_control.field_quality_point__norm msgid "Norm" @@ -20598,7 +50421,9 @@ msgstr "正常" msgid "Norm Unit" msgstr "正常单位" -#. modules: maintenance, purchase, mrp, stock, quality +#. modules: purchase, mrp, quality, base, stock, maintenance +#. odoo-python +#: code:addons/base/models/res_bank.py:0 code:addons/base/models/res_bank.py:0 #: model:ir.model.fields.selection,name:maintenance.selection__maintenance_request__priority__2 #: model:ir.model.fields.selection,name:mrp.selection__mrp_document__priority__0 #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__priority__0 @@ -20607,6 +50432,7 @@ msgstr "正常单位" #: model:ir.model.fields.selection,name:quality.selection__quality_alert__priority__0 #: model:ir.model.fields.selection,name:stock.selection__stock_move__priority__0 #: model:ir.model.fields.selection,name:stock.selection__stock_picking__priority__0 +#, python-format msgid "Normal" msgstr "正常" @@ -20615,13 +50441,57 @@ msgstr "正常" msgid "Normal Debtor" msgstr "普通的债务人" +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_gateway_allowed__email_normalized +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__email_normalized +#: model:ir.model.fields,field_description:mail.field_res_partner__email_normalized +#: model:ir.model.fields,field_description:mail.field_res_users__email_normalized +msgid "Normalized Email" +msgstr "规范化邮件" + +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "北韩" + +#. module: base +#: model:res.country,name:base.mk +msgid "North Macedonia" +msgstr "北马其顿" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "北马利安纳群岛" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "挪威" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_no +msgid "Norway - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_no_reports +msgid "Norway - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_no_saft +msgid "Norwegian Standard Audit File for Tax" +msgstr "" + #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search msgid "Not Acknowledged" msgstr "未通知" #. modules: stock, mrp -#. openerp-web +#. odoo-python +#. odoo-javascript #: code:addons/mrp/models/mrp_production.py:0 #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #: code:addons/stock/models/stock_picking.py:0 @@ -20631,6 +50501,11 @@ msgstr "未通知" msgid "Not Available" msgstr "不可用" +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__fetchmail_server__state__draft +msgid "Not Confirmed" +msgstr "未确认" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_label__not_contains #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_note__not_contains @@ -20642,11 +50517,20 @@ msgid "Not Contains" msgstr "不包含" #. module: account +#. odoo-python #: code:addons/account/models/account_journal_dashboard.py:0 #, python-format msgid "Not Due" msgstr "没有到期" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__state__uninstalled +#: model:ir.model.fields.selection,name:base.selection__ir_module_module_dependency__state__uninstalled +#: model:ir.model.fields.selection,name:base.selection__ir_module_module_exclusion__state__uninstalled +#: model_terms:ir.ui.view,arch_db:base.view_module_filter +msgid "Not Installed" +msgstr "未安装" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_invoice_report__payment_state__not_paid #: model:ir.model.fields.selection,name:account.selection__account_move__payment_state__not_paid @@ -20663,7 +50547,7 @@ msgstr "未收到" msgid "Not Snoozed" msgstr "没有延后" -#. module: account +#. modules: base, account #: model:ir.model.fields.selection,name:account.selection__res_company__account_dashboard_onboarding_state__not_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_invoice_onboarding_state__not_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_onboarding_create_invoice_state__not_done @@ -20674,14 +50558,35 @@ msgstr "没有延后" #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_coa_state__not_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_fy_data_state__not_done #: model:ir.model.fields.selection,name:account.selection__res_company__account_setup_taxes_state__not_done +#: model:ir.model.fields.selection,name:base.selection__res_company__base_onboarding_company_state__not_done msgid "Not done" msgstr "尚未完成" -#. modules: maintenance, purchase, sale_management, stock, quality, -#. quality_control, account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_model.py:0 code:addons/base/models/ir_model.py:0 +#, python-format +msgid "Not enough access rights on the external ID:" +msgstr "外部ID访问权限不足:" + +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#, python-format +msgid "Not the expected scan" +msgstr "" + +#. modules: purchase, quality_control, sale_management, account, quality, +#. mail, stock, maintenance +#. odoo-javascript +#: code:addons/mail/static/src/models/message.js:0 #: model:ir.model.fields,field_description:account.field_account_account_template__note #: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_note #: model:ir.model.fields,field_description:account.field_account_reconcile_model_template__match_note +#: model:ir.model.fields,field_description:mail.field_ir_actions_server__activity_note +#: model:ir.model.fields,field_description:mail.field_ir_cron__activity_note +#: model:ir.model.fields,field_description:mail.field_mail_activity__note #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__note #: model:ir.model.fields,field_description:quality.field_quality_check__note #: model:ir.model.fields,field_description:quality.field_quality_point__note @@ -20689,12 +50594,14 @@ msgstr "尚未完成" #: model:ir.model.fields.selection,name:account.selection__account_move_line__display_type__line_note #: model:ir.model.fields.selection,name:purchase.selection__purchase_order_line__display_type__line_note #: model:ir.model.fields.selection,name:sale_management.selection__sale_order_template_line__display_type__line_note +#: model:mail.message.subtype,name:mail.mt_note #: model_terms:ir.ui.view,arch_db:account.view_account_reconcile_model_form #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:quality.quality_point_view_form #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form #: model_terms:ir.ui.view,arch_db:stock.view_picking_form +#, python-format msgid "Note" msgstr "笔记" @@ -20705,19 +50612,30 @@ msgid "Note Parameter" msgstr "注意参数" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workcenter.py:0 #, python-format msgid "" "Note that archived work center(s): '%s' is/are still linked to active Bill " "of Materials, which means that operations can still be planned on it/them. " "To prevent this, deletion of the work center is recommended instead." -msgstr "请注意,已归档的工作中心:'%s'仍然与活动的BOM相联系,这意味着仍然可以对它/它们进行作业安排。为了防止这种情况,建议删除该工作中心。" +msgstr "" +"注意!! 已归档的工作中心: '%s' 仍然链接到启用的物料清单, 这意味著仍然可以在其上计划制程. 为防止这种情况, 推荐改为删除工作中心." #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_assign_serial_numbers_production msgid "Note that components" msgstr "备注那些部件" +#. module: mrp +#. odoo-python +#: code:addons/mrp/models/product.py:0 code:addons/mrp/models/product.py:0 +#, python-format +msgid "" +"Note that product(s): '%s' is/are still linked to active Bill of Materials, " +"which means that the product can still be used on it/them." +msgstr "注意!! 产品: '%s' 仍然链接到有效的物料清单, 这意味著该产品仍可用于它/它们." + #. module: account #: model_terms:ir.actions.act_window,help:account.action_move_out_refund_type msgid "" @@ -20734,49 +50652,120 @@ msgid "" "directly from the vendor bill." msgstr "请注意,创建供应商贷方通知单的最简单方法是直接从供应商账单中创建。" -#. modules: purchase, stock, quality, quality_control, account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_rule.py:0 code:addons/base/models/ir_rule.py:0 +#, python-format +msgid "Note: this might be a multi-company issue." +msgstr "注意: 这可能是一个多公司问题." + +#. modules: purchase, quality_control, account, quality, base, stock #: model:ir.model.fields,field_description:account.field_account_fiscal_position__note #: model:ir.model.fields,field_description:account.field_account_fiscal_position_template__note +#: model:ir.model.fields,field_description:base.field_res_partner__comment +#: model:ir.model.fields,field_description:base.field_res_users__comment #: model:ir.model.fields,field_description:stock.field_stock_picking__note +#: model:ir.module.category,name:base.module_category_productivity_notes +#: model:ir.module.module,shortdesc:base.module_note +#: model_terms:ir.ui.view,arch_db:base.view_groups_form +#: model_terms:ir.ui.view,arch_db:base.view_model_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:quality.quality_point_view_form #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form msgid "Notes" msgstr "备注" +#. module: base +#: model:ir.module.module,description:base.module_theme_notes +#: model:ir.module.module,shortdesc:base.module_theme_notes +msgid "Notes & Play Theme" +msgstr "" + #. module: purchase #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__no msgid "Nothing to Bill" msgstr "无需开单" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Nothing to check the availability for." msgstr "没有产品需要检查可用量。" -#. module: account +#. module: mail +#: model:ir.model.fields,field_description:mail.field_res_users__notification_type +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_view_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search +msgid "Notification" +msgstr "通知" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__is_notification +msgid "Notification Email" +msgstr "通知电子邮件" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_message_schedule__notification_parameters +msgid "Notification Parameter" +msgstr "通知参数" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_notification__notification_type +msgid "Notification Type" +msgstr "通知类型" + +#. module: mail +#: model:ir.actions.server,name:mail.ir_cron_delete_notification_ir_actions_server +#: model:ir.cron,cron_name:mail.ir_cron_delete_notification +msgid "Notification: Delete Notifications older than 6 Month" +msgstr "通知:删除超过6个月的通知" + +#. module: mail +#: model:ir.actions.server,name:mail.ir_cron_send_scheduled_message_ir_actions_server +#: model:ir.cron,cron_name:mail.ir_cron_send_scheduled_message +msgid "Notification: Send scheduled message notifications" +msgstr "通知:发送计划消息通知" + +#. module: mail +#: model:ir.actions.act_window,name:mail.mail_notification_action +#: model:ir.model.fields,field_description:mail.field_mail_mail__notification_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__notification_ids +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__notification_ids +#: model:ir.ui.menu,name:mail.mail_notification_menu +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_view_tree +msgid "Notifications" +msgstr "通知" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__notify +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__notify msgid "Notify followers" msgstr "通知关注者" -#. module: account +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__notify +#: model:ir.model.fields,help:mail.field_mail_compose_message__notify msgid "Notify followers of the document (mass post only)" msgstr "通知此单据的关注者(只用于批量发送)" -#. modules: account, stock +#. module: base +#: model:ir.module.module,summary:base.module_website_sale_stock_wishlist +msgid "Notify the user when a product is back in stock" +msgstr "当产品有货时通知用户" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__11 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__11 msgid "November" msgstr "十一月" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Now, we'll create your first invoice." -msgstr "" +msgstr "现在,我们将创建您的第一个结算单。" #. module: account #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__num_journals_without_account @@ -20792,7 +50781,7 @@ msgstr "无账户Num日记账" msgid "Number" msgstr "号码" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_needaction_counter #: model:ir.model.fields,field_description:account.field_account_account_template__message_needaction_counter #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_needaction_counter @@ -20803,6 +50792,13 @@ msgstr "号码" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_needaction_counter #: model:ir.model.fields,field_description:account.field_res_company__message_needaction_counter #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_res_partner__message_needaction_counter +#: model:ir.model.fields,field_description:mail.field_res_users__message_needaction_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_needaction_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_needaction_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_needaction_counter @@ -20820,6 +50816,21 @@ msgstr "号码" msgid "Number of Actions" msgstr "动作数量" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_category__module_nr +msgid "Number of Apps" +msgstr "应用程序数量" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_cron__numbercall +msgid "Number of Calls" +msgstr "调用次数" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__companies_count +msgid "Number of Companies" +msgstr "公司数量" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_stock_picking_type__count_mo_late msgid "Number of Manufacturing Orders Late" @@ -20871,6 +50882,11 @@ msgstr "SN编码" msgid "Number of Unbuilds" msgstr "未建立数量" +#. module: base +#: model:ir.model.fields,help:base.field_res_users__accesses_count +msgid "Number of access rights that apply to the current user" +msgstr "应用于当前用户的访问权限" + #. module: account #: model:ir.model.fields,help:account.field_account_payment_term_line__discount_days msgid "Number of days before the early payment proposition expires" @@ -20888,12 +50904,19 @@ msgstr "用于报价有效日期计算的天数" msgid "Number of days to send reminder email before the promised receipt date" msgstr "在承诺的收货日期,提前发送提醒邮件的天数" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_activity_type__delay_count +msgid "" +"Number of days/week/month before executing the action. It allows to plan the" +" action deadline." +msgstr "在执行该操作前几天/周/月,允许操的截止日期。" + #. module: account #: model:ir.model.fields,field_description:account.field_account_reconcile_model__number_entries msgid "Number of entries related to this model" msgstr "与此模型相关的分录数" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,field_description:account.field_account_account__message_has_error_counter #: model:ir.model.fields,field_description:account.field_account_account_template__message_has_error_counter #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__message_has_error_counter @@ -20904,6 +50927,13 @@ msgstr "与此模型相关的分录数" #: model:ir.model.fields,field_description:account.field_account_setup_bank_manual_config__message_has_error_counter #: model:ir.model.fields,field_description:account.field_res_company__message_has_error_counter #: model:ir.model.fields,field_description:account.field_res_partner_bank__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_mail_blacklist__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_mail_channel__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread_blacklist__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_mail_thread_cc__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_res_partner__message_has_error_counter +#: model:ir.model.fields,field_description:mail.field_res_users__message_has_error_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__message_has_error_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__message_has_error_counter #: model:ir.model.fields,field_description:maintenance.field_maintenance_request__message_has_error_counter @@ -20926,6 +50956,11 @@ msgstr "错误数" msgid "Number of generated MO" msgstr "生成的MO数量" +#. module: base +#: model:ir.model.fields,help:base.field_res_users__groups_count +msgid "Number of groups that apply to the current user" +msgstr "应用于当前用户的组数" + #. module: stock #: model:ir.model.fields,help:stock.field_product_product__nbr_moves_in #: model:ir.model.fields,help:stock.field_product_template__nbr_moves_in @@ -20937,7 +50972,7 @@ msgstr "在过去12个月中,进货的数量" msgid "Number of maintenance requests" msgstr "维护请求的数量" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,help:account.field_account_account__message_needaction_counter #: model:ir.model.fields,help:account.field_account_account_template__message_needaction_counter #: model:ir.model.fields,help:account.field_account_bank_statement_line__message_needaction_counter @@ -20948,6 +50983,13 @@ msgstr "维护请求的数量" #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__message_needaction_counter #: model:ir.model.fields,help:account.field_res_company__message_needaction_counter #: model:ir.model.fields,help:account.field_res_partner_bank__message_needaction_counter +#: model:ir.model.fields,help:mail.field_mail_blacklist__message_needaction_counter +#: model:ir.model.fields,help:mail.field_mail_channel__message_needaction_counter +#: model:ir.model.fields,help:mail.field_mail_thread__message_needaction_counter +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__message_needaction_counter +#: model:ir.model.fields,help:mail.field_mail_thread_cc__message_needaction_counter +#: model:ir.model.fields,help:mail.field_res_partner__message_needaction_counter +#: model:ir.model.fields,help:mail.field_res_users__message_needaction_counter #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__message_needaction_counter #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__message_needaction_counter #: model:ir.model.fields,help:maintenance.field_maintenance_request__message_needaction_counter @@ -20965,7 +51007,7 @@ msgstr "维护请求的数量" msgid "Number of messages which requires an action" msgstr "需要作业消息数量" -#. modules: maintenance, purchase, mrp, stock, quality, account +#. modules: purchase, mrp, account, quality, mail, stock, maintenance #: model:ir.model.fields,help:account.field_account_account__message_has_error_counter #: model:ir.model.fields,help:account.field_account_account_template__message_has_error_counter #: model:ir.model.fields,help:account.field_account_bank_statement_line__message_has_error_counter @@ -20976,6 +51018,13 @@ msgstr "需要作业消息数量" #: model:ir.model.fields,help:account.field_account_setup_bank_manual_config__message_has_error_counter #: model:ir.model.fields,help:account.field_res_company__message_has_error_counter #: model:ir.model.fields,help:account.field_res_partner_bank__message_has_error_counter +#: model:ir.model.fields,help:mail.field_mail_blacklist__message_has_error_counter +#: model:ir.model.fields,help:mail.field_mail_channel__message_has_error_counter +#: model:ir.model.fields,help:mail.field_mail_thread__message_has_error_counter +#: model:ir.model.fields,help:mail.field_mail_thread_blacklist__message_has_error_counter +#: model:ir.model.fields,help:mail.field_mail_thread_cc__message_has_error_counter +#: model:ir.model.fields,help:mail.field_res_partner__message_has_error_counter +#: model:ir.model.fields,help:mail.field_res_users__message_has_error_counter #: model:ir.model.fields,help:maintenance.field_maintenance_equipment__message_has_error_counter #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__message_has_error_counter #: model:ir.model.fields,help:maintenance.field_maintenance_request__message_has_error_counter @@ -20993,6 +51042,16 @@ msgstr "需要作业消息数量" msgid "Number of messages with delivery error" msgstr "发送错误的消息数量" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_module_update__added +msgid "Number of modules added" +msgstr "已增加的模块数量" + +#. module: base +#: model:ir.model.fields,field_description:base.field_base_module_update__updated +msgid "Number of modules updated" +msgstr "已更新的模块数量" + #. module: account #: model:ir.model.fields,help:account.field_account_reconcile_model__past_months_limit msgid "" @@ -21011,6 +51070,11 @@ msgstr "在过去的12个月里,股票的出手次数" msgid "Number of pieces that can be produced in parallel for this product." msgstr "本产品可并行生产的件数。" +#. module: base +#: model:ir.model.fields,help:base.field_res_users__rules_count +msgid "Number of record rules that apply to the current user" +msgstr "应用于当前用户的记录规则数" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_production__mrp_production_source_count msgid "Number of source MO" @@ -21021,6 +51085,34 @@ msgstr "源MO数量" msgid "Numbers of days in advance that replenishments demands are created." msgstr "创建补货需求所需的前置天数。" +#. module: base +#: model:ir.module.module,summary:base.module_theme_kiddo +msgid "Nursery, Toys, Games, Kids, Boys, Girls, Stores" +msgstr "" + +#. module: base +#: model:res.country,vat_label:base.pf +msgid "N° Tahiti" +msgstr "北大溪地" + +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_O +msgid "O - PUBLIC ADMINISTRATION AND DEFENCE; COMPULSORY SOCIAL SECURITY" +msgstr "O - 公共管理和国防;强制性社会安全" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "O button (blood type)" +msgstr "O按钮(血型)" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_oauth +msgid "OAuth2 Authentication" +msgstr "OAuth2身份验证" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_kanban msgid "OEE" @@ -21036,27 +51128,1772 @@ msgstr "OEE 目标" msgid "OFX Import" msgstr "OFX 导入" -#. module: quality_control +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_syscohada_reports +msgid "OHADA (révisé) - Accounting Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_syscohada +msgid "OHADA - Accounting" +msgstr "" + +#. modules: mail, quality_control +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_wizard_form_failure +#, python-format msgid "OK" msgstr "" -#. modules: account, stock +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "OK button" +msgstr "OK按钮" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "OK hand" +msgstr "OK手势" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ON" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ON!" +msgstr "" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "ON! arrow" +msgstr "ON!箭头" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Oberon" +msgstr "" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form +msgid "Object" +msgstr "对像" + +#. module: base +#. odoo-python +#: code:addons/model.py:0 +#, python-format +msgid "Object %s doesn't exist" +msgstr "对像%s 不存在" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.report_irmodeloverview +msgid "Object:" +msgstr "对象:" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Objects" +msgstr "物体" + +#. modules: stock, account #: model:ir.model.fields.selection,name:account.selection__res_company__fiscalyear_last_month__10 #: model:ir.model.fields.selection,name:stock.selection__res_company__annual_inventory_month__10 msgid "October" msgstr "十月" -#. module: account +#. modules: mail, account #: model:ir.model.fields.selection,name:account.selection__account_journal__invoice_reference_model__odoo +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_layout +#: model_terms:ir.ui.view,arch_db:mail.mail_notification_light msgid "Odoo" msgstr "" +#. module: base +#: model:ir.module.module,description:base.module_website_blog +msgid "" +"Odoo Blogs\n" +"----------\n" +"\n" +"Write, Design, Promote and Engage with Odoo Blogs.\n" +"\n" +"Express yourself with the Odoo enterprise grade blogging platform. Write\n" +"beautiful blog posts, engage with visitors, translate content and moderate\n" +"social streams.\n" +"\n" +"Get your blog posts efficiently referenced in Google and translated in mutiple\n" +"languages in just a few clicks.\n" +"\n" +"Write Beautiful Blog Posts\n" +"--------------------------\n" +"\n" +"Drag & Drop well designed *'Building Blocks'* to create beautifull blog posts\n" +"that perfectly integrates images, videos, call-to-actions, quotes, banners,\n" +"etc.\n" +"\n" +"With our unique *'edit inline'* approach, you don't need to be a designer to\n" +"create awsome, good-looking, content. Each blog post will look like it's\n" +"designed by a professional designer.\n" +"\n" +"Automated Translation by Professionals\n" +"--------------------------------------\n" +"\n" +"Get your blog posts translated in multiple languages with no effort. Our\n" +"translation \"on demand\" feature allows you to benefit from professional\n" +"translators to translate all your changes automatically. (\\$0.05 per word)\n" +"Translated versions are updated automatically once translated by professionals\n" +"(around 32 hours).\n" +"\n" +"Engage With Your Visitors\n" +"-------------------------\n" +"\n" +"The integrated website live chat feature allows you to start chatting in real time with\n" +"your visitors to get feedback on your recent posts or get ideas to write new\n" +"posts.\n" +"\n" +"Engaging with your visitors is also a great way to convert visitors into\n" +"customers.\n" +"\n" +"Build Visitor Loyalty\n" +"---------------------\n" +"\n" +"The one click *follow* button will allow visitors to receive your blog posts by\n" +"email with no effort, without having to register. Social media icons allow\n" +"visitors to share your best blog posts easily.\n" +"\n" +"Google Analytics Integration\n" +"----------------------------\n" +"\n" +"Get a clear visibility of your sales funnel. Odoo's Google Analytics trackers\n" +"are configured by default to track all kinds of events related to shopping\n" +"carts, call-to-actions, etc.\n" +"\n" +"As Odoo marketing tools (mass mailing, campaigns, etc) are also linked with\n" +"Google Analytics, you get a 360° view of your business.\n" +"\n" +"SEO Optimized Blog Posts\n" +"------------------------\n" +"\n" +"SEO tools are ready to use, with no configuration required. Odoo suggests\n" +"keywords for your titles according to Google's most searched terms, Google\n" +"Analytics tracks interests of your visitors, sitemaps are created automatically\n" +"for quick Google indexing, etc.\n" +"\n" +"The system even creates structured content automatically to promote your\n" +"products and events effectively in Google.\n" +"\n" +"Designer-Friendly Themes\n" +"------------------------\n" +"\n" +"Themes are awesome and easy to design. You don't need to develop to create new\n" +"pages, themes or building blocks. We use a clean HTML structure, a\n" +"[bootstrap](http://getbootstrap.com/) CSS and our modularity allows you to\n" +"distribute your themes easily.\n" +"\n" +"The building block approach allows the website to remain clean after end-users\n" +"start creating new contents.\n" +"\n" +"Easy Access Rights\n" +"------------------\n" +"\n" +"Not everyone requires the same access to your website. Designers manage the\n" +"layout of the site, editors approve content and authors write that content.\n" +"This lets you organize your publishing process according to your needs.\n" +"\n" +"Other access rights are related to business objects (products, people, events,\n" +"etc) and directly following Odoo's standard access rights management, so you do\n" +"not have to configure things twice.\n" +msgstr "" +"Odoo 部落格\n" +"---------\n" +"\n" +"编写、设计、推广和参和 Odoo 部落格.\n" +"\n" +"用 Odoo 企业级部落格平台表达自己. 写\n" +"漂亮的博文,和访客交互,翻译内容和适度\n" +"社交流.\n" +"\n" +"让您的博文在 Google 中得到有效引用和进行多次翻译\n" +"只需点击几下即可获得语言.\n" +"\n" +"写出漂亮的博文\n" +"--------------------------\n" +"\n" +"拖放精心设计的 *'Building Blocks'* 以创建精美的博文\n" +"完美地集成了图像、影片、号召性用语、报价、横幅,\n" +"等等\n" +"\n" +"使用我们独特的 *'edit inline'* 方法,您无需成为设计师即可\n" +"创建令人敬畏的、好看的内容. 每篇博文看起来都是\n" +"由专业设计师设计.\n" +"\n" +"由专业人员自动翻译\n" +"-------------------------------------\n" +"\n" +"毫不费力地将您的博文翻译成多种语言. 我们的\n" +"翻译\"按需\"功能让您受益于专业\n" +"翻译器自动翻译您的所有更改. (\\$0.05 每字)\n" +"翻译后的版本会在专业人员翻译后自动更新\n" +"(大约 32 小时).\n" +"\n" +"和您的访客交互\n" +"-------------------------\n" +"\n" +"集成的网站即时聊天功能让您可以开始和\n" +"即时聊天您的访客获得对您最近帖子的反馈或获得撰写新文章的想法\n" +"帖子.\n" +"\n" +"和访客交互也是将访客转化为\n" +"的好方法客户.\n" +"\n" +"创建访客会员度\n" +"---------\n" +"\n" +"一键 *follow* 按钮将允许访客通过\n" +"收到您的博文无需注册即可轻松发送电子邮件. 允许使用社交媒体图标\n" +"访客可以轻松分享您最好的博文.\n" +"\n" +"Google Analytics 集成\n" +"----------------\n" +"\n" +"清楚地了解您的销售渠道. Odoo 的 Google Analytics 追踪器\n" +"默认为追踪和购物相关的各种事件\n" +"购物车、号召性用语等.\n" +"\n" +"由于 Odoo 营销工具(群发邮件、活动等)也和\n" +"相关联Google Analytics,您可以 360 度全方位了解您的业务.\n" +"\n" +"SEO 优化博文\n" +"------------\n" +"\n" +"SEO 工具已准备好使用,无需设置. Odoo 推荐\n" +"根据 Google 搜索最多的字词,您的标题的关键字,Google\n" +"Analytics 跟踪访客的兴趣,站点地图是自动创建的\n" +"用于快速的 Google 索引等.\n" +"\n" +"系统甚至会自动创建结构化内容来宣传您的\n" +"Google 中有效的产品和活动.\n" +"\n" +"设计师友好的主题\n" +"------------\n" +"\n" +"主题很棒且易于设计. 您无需开发即可创建新主题\n" +"网页、主题或构建构建块. 我们使用干净的 HTML 结构,a\n" +"[bootstrap](http://getbootstrap.com/) CSS 和我们的构建块化允许您\n" +"轻松分发您的主题.\n" +"\n" +"构建构建块方法允许网站在最终用户之后保持干净\n" +"开始创建新内容.\n" +"\n" +"轻松访问权限\n" +"--------\n" +"\n" +"不是每个人都需要对您的网站具有相同的访问权限. 设计师管理\n" +"网站布局,编辑批准内容,作者编写该内容.\n" +"这使您可以根据需要组织发布过程.\n" +"\n" +"其它访问权限和业务对象(产品、人员、事件,\n" +"等) 和直接遵循 Odoo 的标准访问权限管理,所以您这样做\n" +"不必设置两次.\n" + +#. module: base +#: model:ir.module.module,description:base.module_crm +msgid "" +"Odoo CRM\n" +"--------\n" +"\n" +"Boost sales productivity, improve win rates, grow revenue with the Odoo\n" +"Open Source CRM.\n" +"\n" +"Manage your sales funnel with no effort. Attract leads, follow-up on phone\n" +"calls and meetings. Analyse the quality of your leads to make informed\n" +"decisions and save time by integrating emails directly into the application.\n" +"\n" +"Your Sales Funnel, The Way You Like It\n" +"--------------------------------------\n" +"\n" +"Track your opportunities pipeline with the revolutionary kanban view. Work\n" +"inside your sales funnel and get instant visual information about next actions,\n" +"new messages, top opportunities and expected revenues.\n" +"\n" +"Lead Management Made Easy\n" +"-------------------------\n" +"\n" +"Create leads automatically from incoming emails. Analyse leads efficiency and\n" +"compare performance by campaigns, channels or Sales Team.\n" +"\n" +"Find duplicates, merge leads and assign them to the right salesperson in one\n" +"operation. Spend less time on administration and more time on qualifying leads.\n" +"\n" +"Organize Your Opportunities\n" +"---------------------------\n" +"\n" +"Get your opportunities organized to stay focused on the best deals. Manage all\n" +"your customer interactions from the opportunity like emails, phone calls,\n" +"internal notes, meetings and quotations.\n" +"\n" +"Follow opportunities that interest you to get notified upon specific events:\n" +"deal won or lost, stage changed, new customer demand, etc.\n" +"\n" +"Email Integration and Automation\n" +"--------------------------------\n" +"\n" +"Work with the email applications you already use every day. Whether your\n" +"company uses Microsoft Outlook or Gmail, no one needs to change the way they\n" +"work, so everyone stays productive.\n" +"\n" +"Route, sort and filter incoming emails automatically. Odoo CRM handles incoming\n" +"emails and route them to the right opportunities or Sales Team. New leads are\n" +"created on the fly and interested salespersons are notified automatically.\n" +"\n" +"Collaborative Agenda\n" +"--------------------\n" +"\n" +"Schedule your meetings and phone calls using the integrated calendar. You can\n" +"see your agenda and your colleagues' in one view. As a manager, it's easy to\n" +"see what your team is busy with.\n" +"\n" +"Lead Automation and Marketing Campaigns\n" +"---------------------------------------\n" +"\n" +"Drive performance by automating tasks with Odoo CRM.\n" +"\n" +"Use our marketing campaigns to automate lead acquisition, follow ups and\n" +"promotions. Define automated actions (e.g. ask a salesperson to call, send an\n" +"email, ...) based on triggers (no activity since 20 days, answered a\n" +"promotional email, etc.)\n" +"\n" +"Optimize campaigns from lead to close, on every channel. Make smarter decisions\n" +"about where to invest and show the impact of your marketing activities on your\n" +"company's bottom line.\n" +"\n" +"Customize Your Sales Cycle\n" +"--------------------------\n" +"\n" +"Customize your sales cycle by configuring sales stages that perfectly fit your\n" +"sales approach. Control statistics to get accurate forecasts to improve your\n" +"sales performance at every stage of your customer relationship.\n" +"\n" +"Drive Engagement with Gamification\n" +"----------------------------------\n" +"\n" +"### Leverage your team's natural desire for competition\n" +"\n" +"Reinforce good habits and improve win rates with real-time recognition and\n" +"rewards inspired by [game mechanics](http://en.wikipedia.org/wiki/Gamification).\n" +"Align Sales Teams around clear business objectives with challenges, personal\n" +"objectives and team leader boards.\n" +"\n" +"### Leaderboards\n" +"\n" +"Promote leaders and competition amongst Sales Team with performance ratios.\n" +"\n" +"### Personal Objectives\n" +"\n" +"Assign clear goals to users to align them with the company objectives.\n" +"\n" +"### Team Targets\n" +"\n" +"Compare revenues with forecasts and budgets in real time.\n" +"\n" +msgstr "" +"Odoo CRM\n" +"--------\n" +"\n" +"使用 Odoo 提高销售效率、提高胜率、增加收入\n" +"开放源码 CRM.\n" +"\n" +"轻松管理您的销售漏斗. 吸引潜在客户,电话跟进\n" +"电话和会议. 分析潜在客户的质量以了解情况\n" +"通过将电子邮件直接集成到应用程序中来做出决定并节省时间.\n" +"\n" +"您的销售漏斗,您喜欢的方式\n" +"-------------------------------------\n" +"\n" +"使用革命性的看板视图追踪您的机会管道. 工作\n" +"在您的销售漏斗中获取有关下一步动作的即时视觉消息,\n" +"新消息、主要机会和预期收入.\n" +"\n" +"让领管道理变得简单\n" +"-------------------------\n" +"\n" +"从收到的电子邮件中自动创建潜在客户. 分析潜在客户的效率和\n" +"按活动、渠道或销售团队比较绩效.\n" +"\n" +"查找重复项、合并潜在客户并将其配置给合适的销售人员\n" +"动作. 在管理上花费更少的时间,而在合格的潜在客户上花费更多的时间.\n" +"\n" +"组织您的机会\n" +"---------------\n" +"\n" +"让您的机会井井有条,专注于最优惠的交易. 管理所有\n" +"您通过电子邮件、电话等机会与客户进行的交互,\n" +"内部说明、会议和报价.\n" +"\n" +"关注您感兴趣的机会,以获得有关特定事件的通知: \n" +"交易赢或输、阶段变化、新客户需求等.\n" +"\n" +"电子邮件集成和自动化\n" +"--------------------------------\n" +"\n" +"使用您每天都在使用的电子邮件应用程序. 无论您的\n" +"公司使用 Microsoft Outlook 或 Gmail,没有人需要改变他们的方式\n" +"工作,所以每个人都保持高效.\n" +"\n" +"自动路由、排序和筛选传入的电子邮件. Odoo CRM 处理传入\n" +"发送电子邮件并将其路由到正确的机会或销售团队. 新的潜在客户是\n" +"动态创建并自动通知感兴趣的销售人员.\n" +"\n" +"合作议程\n" +"--------\n" +"\n" +"使用集成日历安排会议和电话. 您可以\n" +"在一个视图中视图您的议程和同事的议程. 作为经理,很容易\n" +"看看您的团队在忙什么.\n" +"\n" +"领导自动化和营销活动\n" +"----------------------------------------\n" +"\n" +"通过使用 Odoo CRM 自动执行任务来提高绩效.\n" +"\n" +"使用我们的营销活动来自动获取潜在客户、跟进和\n" +"促销. 定义自动化动作(例如,让销售人员打电话,发送一个\n" +"电子邮件,...)基于触发器(自 20 天以来没有活动,回答了一个\n" +"促销电子邮件等)\n" +"\n" +"在每个渠道上优化从潜在客户到结束的营销活动. 做出更明智的决策\n" +"关于在哪里投资并展示您的营销活动对您的影响\n" +"公司的下划线.\n" +"\n" +"自定义您的销售循环\n" +"--------------------------\n" +"\n" +"通过设置完全适合您的销售阶段来自定义您的销售循环\n" +"销售方法. 控制统计数据以获得准确的预测以改善您的\n" +"客户关系每个阶段的销售业绩.\n" +"\n" +"通过游戏化提高参与度\n" +"----------------------\n" +"\n" +"### 利用您的团队对竞争的自然渴望\n" +"\n" +"通过即时标识强化良好习惯并提高获胜率和\n" +"受 [游戏机制](http://en.wikipedia.org/wiki/Gamification) 启发的奖励.\n" +"使销售团队围绕明确的业务目标与挑战保持一致,个人\n" +"目标和团队领导委员会.\n" +"\n" +"### 排行榜\n" +"\n" +"通过绩效比率促进销售团队之间的领导者和竞争.\n" +"\n" +"### 个人目标\n" +"\n" +"为用户配置明确的目标,使其与公司目标保持一致.\n" +"\n" +"### 团队目标\n" +"\n" +"即时比较收入与预测和预算.\n" +"\n" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report_expression__engine__domain msgid "Odoo Domain" msgstr "Odoo 域" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__oeel-1 +msgid "Odoo Enterprise Edition License v1.0" +msgstr "Odoo 企业版授权协议 v1.0" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_module__to_buy +msgid "Odoo Enterprise Module" +msgstr "Odoo 企业版专属模块" + +#. module: base_import +#. odoo-javascript +#: code:addons/base_import/static/src/legacy/xml/base_import.xml:0 +#, python-format +msgid "Odoo Field" +msgstr "字段" + +#. module: base +#: model:ir.module.module,description:base.module_hr +msgid "" +"Odoo Human Resources\n" +"--------------------\n" +"\n" +"With Odoo Human Resources,\n" +"manage the most important asset in your company: People\n" +"\n" +"Get all your HR operations managed easily: knowledge sharing, recruitments,\n" +"appraisals, timesheets, contracts, attendances, payroll, etc.\n" +"\n" +"Each need is provided by a specific app that you activate on demand.\n" +"\n" +"Manage Your Employees\n" +"---------------------\n" +"\n" +"Oversee all important information in your company address book. Some\n" +"information are restricted to HR managers, others are public to easily look\n" +"colleagues.\n" +"\n" +"Record employee contracts and get alerts when they have to be renewed.\n" +"\n" +"Streamline Your Recruitment Process\n" +"-----------------------------------\n" +"\n" +"Index resumes, track applicants, search profiles with Odoo HR.\n" +"\n" +"Post job offers and keep track of each application received. Follow applicants\n" +"in your recruitment process with the smart kanban view.\n" +"\n" +"Save time by automating some communications with email templates. Resumes are\n" +"indexed automatically, allowing you to easily find for specific profiles.\n" +"\n" +"Enterprise Social Network\n" +"-------------------------\n" +"\n" +"Break down information silos. Share knowledge and best practices amongst all\n" +"employees. Follow specific people or documents and join groups of interests to\n" +"share expertise and documents.\n" +"\n" +"Interact with your coworkers in real time with website live chat.\n" +"\n" +"Track time and attendances\n" +"--------------------------\n" +"\n" +"Keep track of the time spent by project, client or task. It's easy to record\n" +"timesheets or check attendances for each employee. Get your analytic accounting\n" +"posted automatically based on time spent on your projects.\n" +"\n" +"Time Off Management\n" +"-----------------\n" +"\n" +"Keep track of the vacation days accrued by each employee. Employees enter their\n" +"requests (paid time off, sick time off, etc), for managers to approve and\n" +"validate. It's all done in just a few clicks. The agenda of each employee is\n" +"updated accordingly.\n" +"\n" +"Keep Track of Employee Expenses\n" +"-------------------------------\n" +"\n" +"Get rid of the paper work and follow employee's expenses directly in Odoo.\n" +"Don't loose time or money by controlling the full flow: expense validation,\n" +"reimbursement of employees, posting in the accounting and re-invoicing to\n" +"customers.\n" +"\n" +"Follow Periodic Appraisals\n" +"--------------------------\n" +"\n" +"Set-up appraisals plans and/or surveys for your employees and watch their\n" +"evolution. Define steps for interviews and Odoo will notify managers or\n" +"subordinates automatically to prepare appraisals. Keep track of the progress of\n" +"your staff periodically.\n" +"\n" +"Boost Engagement With Gamification\n" +"----------------------------------\n" +"\n" +"### Define clear objective and provide real time feedback\n" +"\n" +"Inspire achievement with challenges, goals and rewards. Define clear objectives\n" +"and provide real time feedback and tangible results. Showcase the top\n" +"performers to the entire channel and publicly recognize a job well done.\n" +"\n" +"### Leaderboards\n" +"\n" +"Promote leaders and competition amongst Sales Team with performance ratios.\n" +"\n" +"### Personal Objectives\n" +"\n" +"Assign clear goals to users to align them with the company objectives.\n" +"\n" +"### Team Targets\n" +"\n" +"Compare revenues with forecasts and budgets in real time.\n" +"\n" +msgstr "" +"Odoo 人力资源\n" +"--------\n" +"\n" +"与 Odoo 人力资源,\n" +"管理您公司中最重要的资产: 人员\n" +"\n" +"轻松管理您的所有人力资源运营: 知识共享、招聘,\n" +"评估、时间表、合约、出勤率、工资册等.\n" +"\n" +"每个需求都由您按需启用的特定应用程序提供.\n" +"\n" +"管理您的员工\n" +"---------\n" +"\n" +"监督您公司通讯录中的所有重要信息. 一些\n" +"消息仅限人力资源经理查看,其它人查看\n" +"同事公开信息.\n" +"\n" +"记录员工合约并在必须续签时收到提醒.\n" +"\n" +"简化您的招聘流程\n" +"------------------------------------\n" +"\n" +"使用 Odoo HR 索引履历、追踪申请人、搜索个人数据.\n" +"\n" +"发布工作机会并追踪收到的每个申请. 订阅申请人\n" +"在您的招聘过程中使用智慧看板视图.\n" +"\n" +"通过使用电子邮件模板自动进行一些通信来节省时间. 履历是\n" +"自动索引,让您轻松搜索特定设置文件.\n" +"\n" +"企业社交网络\n" +"-------------------------\n" +"\n" +"打破消息孤岛. 在所有人之间分享知识和最佳实践\n" +"员工. 关注特定的人或文件并加入兴趣组\n" +"分享专业知识和文件.\n" +"\n" +"通过网站即时聊天与您的同事即时交互.\n" +"\n" +"追踪时间和出勤情况\n" +"--------------------------\n" +"\n" +"追踪项目、客户或任务所花费的时间. 很容易记录\n" +"每个员工的时间表或检查出勤. 获取您的分析会计\n" +"根据您在项目上花费的时间自动发布.\n" +"\n" +"休假管理\n" +"-----\n" +"\n" +"追踪每个员工累积的假期. 员工导入他们的\n" +"请求(带薪休假、病假等),供经理批准和\n" +"验证. 只需点击几下即可完成. 每个员工的议程是\n" +"相应更新.\n" +"\n" +"追踪员工费用\n" +"-------------------\n" +"\n" +"摆脱文书工作,直接在 Odoo 中追踪员工的开支.\n" +"不要通过控制整个流程来浪费时间或金钱: 费用验证,\n" +"员工报销,记帐并重新开立文件到\n" +"客户.\n" +"\n" +"遵循定期评估\n" +"--------------------------\n" +"\n" +"为您的员工设置评估计划和/或调查并观察他们\n" +"进化. 定义面试步骤,Odoo 将通知经理或\n" +"下属自动准备评估. 追踪\n" +"的进度您的员工定期.\n" +"\n" +"通过游戏化提高参与度\n" +"----------------------\n" +"\n" +"### 定义明确的目标并提供即时反馈\n" +"\n" +"通过挑战、目标和奖励激发成就. 定义明确的目标\n" +"并提供即时反馈和切实的结果. 展示顶部\n" +"整个频道的表演者,并公开承认出色的工作.\n" +"\n" +"### 排行榜\n" +"\n" +"通过绩效比促进销售团队之间的领导者和竞争.\n" +"\n" +"### 个人目标\n" +"\n" +"为用户配置明确的目标,使其与公司目标保持一致.\n" +"\n" +"### 团队目标\n" +"\n" +"即时比较收入与预测和预算.\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_mrp +msgid "" +"Odoo Manufacturing Resource Planning\n" +"------------------------------------\n" +"\n" +"Manage Bill of Materials, plan manufacturing orders, track work orders with the\n" +"Odoo Open Source MRP app.\n" +"\n" +"Get all your assembly or manufacturing operations managed by Odoo. Schedule\n" +"manufacturing orders and work orders automatically. Review the proposed\n" +"planning with the smart kanban and gantt views. Use the advanced analytics\n" +"features to detect bottleneck in resources capacities and inventory locations.\n" +"\n" +"Schedule Manufacturing Orders Efficiently\n" +"-----------------------------------------\n" +"\n" +"Get manufacturing orders and work orders scheduled automatically based on your\n" +"procurement rules, quantities forecasted and dependent demand (demand for this\n" +"part based on another part consuming it).\n" +"\n" +"Define Flexible Master Data\n" +"---------------------------\n" +"\n" +"Get the flexibility to create multi-level bill of materials, optional routing,\n" +"version changes and phantom bill of materials. You can use BoM for kits or for\n" +"manufacturing orders.\n" +"\n" +"Get Flexibility In All Operations\n" +"---------------------------------\n" +"\n" +"Edit manually all proposed operations at any level of the progress. With Odoo,\n" +"you will not be frustrated by a rigid system.\n" +"\n" +"Schedule Work Orders\n" +"--------------------\n" +"\n" +"Check resources capacities and fix bottlenecks. Define routings and plan the\n" +"working time and capacity of your resources. Quickly identify resource\n" +"requirements and bottlenecks to ensure your production meets your delivery\n" +"schedule dates.\n" +"\n" +"\n" +"A Productive User Interface\n" +"---------------------------\n" +"\n" +"Organize manufacturing orders and work orders the way you like it. Process next\n" +"orders from the list view, control in the calendar view and edit the proposed\n" +"schedule in the Gantt view.\n" +"\n" +"\n" +"Inventory & Manufacturing Analytics\n" +"-----------------------------------\n" +"\n" +"Track the evolution of the stock value, according to the level of manufacturing\n" +"activities as they progress in the transformation process.\n" +"\n" +"Fully Integrated with Operations\n" +"--------------------------------\n" +"\n" +"Get your manufacturing resource planning accurate with it's full integration\n" +"with sales and purchases apps. The accounting integration allows real time\n" +"accounting valuation and deeper reporting on costs and revenues on your\n" +"manufacturing operations.\n" +"\n" +msgstr "" +"Odoo制造资源计划\n" +"------------------------------------\n" +"\n" +"用Odoo开源MRP应用程序管理物料清单,计划制造订单,跟踪工单。\n" +"Odoo开源MRP应用程序管理物料清单,计划制造订单,跟踪工作订单。\n" +"\n" +"用Odoo来管理您所有的装配或制造业务。安排\n" +"自动安排制造订单和工作订单。通过智能看板和甘特图视图建议的\n" +"计划,使用智能看板和甘特视图。使用先进的分析技术\n" +"探测资源能力和库存位置的瓶颈。\n" +"\n" +"有效地安排制造订单\n" +"-----------------------------------------\n" +"\n" +"根据您的采购规则、预测计数和依赖性需求(该需求),自动安排制造订单和工作订单。\n" +"采购规则、预测的计数和依赖性需求(基于另一个零件的消耗,对这个零件的需求\n" +"基于另一部件的消耗对这一部件的需求)。\n" +"\n" +"定义灵活的主数据\n" +"---------------------------\n" +"\n" +"获得创建多级物料清单的灵活性,可选的路由。\n" +"版本变更和幻象物料清单。您可以将物料清单用于成套设备或用于\n" +"制造订单。\n" +"\n" +"在所有作业中获得灵活性\n" +"---------------------------------\n" +"\n" +"在进度的任何一级手动编辑所有建议的作业。有了Odoo。\n" +"您将不会因为僵硬的系统而感到沮丧。\n" +"\n" +"安排工单\n" +"--------------------\n" +"\n" +"检查资源能力,解决瓶颈问题。 定义路线和计划\n" +"资源的工作时间和能力。快速确定资源\n" +"要求和瓶颈,以确保您的生产符合您的交货\n" +"计划日期。\n" +"\n" +"\n" +"一个富有成效的用户界面\n" +"---------------------------\n" +"\n" +"以您喜欢的方式组织生产订单和工作订单。处理下一个\n" +"在列表视图中处理下一个订单,在日历视图中控制,在甘特图视图中编辑拟议的\n" +"在甘特图视图中编辑拟议的时间表。\n" +"\n" +"\n" +"库存和制造分析\n" +"-----------------------------------\n" +"\n" +"追踪库存价值的演变,根据制造活动的水平\n" +"追踪存货价值的变化,根据制造活动的水平,因为它们在转化过程中的进展。\n" +"\n" +"和运营完全集成\n" +"--------------------------------\n" +"\n" +"通过它和销售和采购应用程序的完全集成,使您的制造资源计划准确无误。\n" +"和销售和采购应用程序的完全集成,使您的制造资源计划更加准确。会计集成允许实时的\n" +"会计估价和更深入的成本和收入报告,对您的\n" +"制造业务。\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_mass_mailing +msgid "" +"Odoo Mass Mailing\n" +"-----------------\n" +"\n" +"Easily send mass mailing to your leads, opportunities or customers\n" +"with Odoo Email Marketing. Track\n" +"marketing campaigns performance to improve conversion rates. Design\n" +"professional emails and reuse templates in a few clicks.\n" +"\n" +"Send Professional Emails\n" +"------------------------\n" +"\n" +"Import database of prospects or filter on existing leads, opportunities and\n" +"customers in just a few clicks.\n" +"\n" +"Define email templates to reuse content or specific design for your newsletter.\n" +"Setup several email servers with their own IP/domain to optimise opening rates.\n" +"\n" +"Organize Marketing Campaigns\n" +"----------------------------\n" +"\n" +"Design, Send, Track by Campaigns with our Lead Automation app.\n" +"\n" +"Get real time statistics on campaigns performance to improve your conversion\n" +"rate. Track mails sent, received, opened and answered.\n" +"\n" +"Easily manage your marketing campaigns, discussion groups, leads and\n" +"opportunities in one simple and powerful platform.\n" +"\n" +"Integrated with Odoo Apps\n" +"-------------------------\n" +"\n" +"Get access to mass mailing features from every Odoo app to improve the way your\n" +"users communicate.\n" +"\n" +"Send template of emails from Odoo CRM opportunities, select leads based\n" +"on marketing segments, send job offers and automate\n" +"answers to applicants, reuse email template in the lead automation marketing\n" +"campaigns.\n" +"\n" +"Answers to your emails appears automatically in the history of every document\n" +"with the social network module.\n" +"\n" +"Clean Your Lead Database\n" +"------------------------\n" +"\n" +"Get a clean lead database that improves over the time using the performance of\n" +"your mails. Odoo handle bounce mails efficiently, flag erroneous leads\n" +"accordingly and gives you statistics on the quality of your leads.\n" +"\n" +"One click emails send\n" +"---------------------\n" +"\n" +"The marketing department will love working on campaigns. But you can also give\n" +"a one click mass mailing facility to all others users on their own prospects or\n" +"documents.\n" +"\n" +"Select a few documents (e.g. leads, support tickets, suppliers, applicants,\n" +"...) and send emails to their contacts in one click, reusing existing emails\n" +"templates.\n" +"\n" +"Follow-up On Answers\n" +"--------------------\n" +"\n" +"The chatter feature enables you to communicate faster and more efficiently with\n" +"your customer. Get documents created automatically (leads, opportunities,\n" +"tasks, ...) based on answers to your mass mailing campaigns Follow the\n" +"discussion directly on the business documents within Odoo or via email.\n" +"\n" +"Get all the negotiations and discussions attached to the right document and\n" +"relevent managers notified on specific events.\n" +"\n" +"Campaigns Dashboard\n" +"-------------------\n" +"\n" +"Get the insights you need to make smarter marketing campaign. Track statistics\n" +"per campaign: bounce rates, sent mails, best content, etc. The clear dashboards\n" +"gives you a direct overview of your campaign performance.\n" +"\n" +"Fully Integrated With Others Apps\n" +"---------------------------------\n" +"\n" +"Define automated actions (e.g. ask a salesperson to call, send an email, ...)\n" +"based on triggers (no activity since 20 days, answered a promotional email,\n" +"etc.)\n" +"\n" +"Optimize campaigns from lead to close, on every channel. Make smarter decisions\n" +"about where to invest and show the impact of your marketing activities on your\n" +"company's bottom line.\n" +"\n" +"Integrate a contact form in your website easily. Forms submissions create leads\n" +"automatically in Odoo CRM. Leads can be used in marketing campaigns.\n" +"\n" +"Manage your sales funnel with no\n" +"effort. Attract leads, follow-up on phone calls and meetings. Analyse the\n" +"quality of your leads to make informed decisions and save time by integrating\n" +"emails directly into the application.\n" +"\n" +msgstr "" +"Odoo 群发邮件\n" +"-----\n" +"\n" +"轻松向您的潜在客户、商机或客户发送群发邮件\n" +"使用 Odoo 电子邮件营销. 追踪\n" +"提高转化率的营销活动效果. 设计\n" +"只需点击几下,即可获得专业的电子邮件和重复使用模板.\n" +"\n" +"发送专业电子邮件\n" +"------------\n" +"\n" +"导入潜在客户数据库或筛选现有线索、机会和\n" +"只需点击几下即可获得客户.\n" +"\n" +"定义电子邮件模板以重复使用您的时事新闻信的内容或特定设计.\n" +"使用自己的 IP/域设置多个电子邮件服务器以提升点阅率.\n" +"\n" +"组织营销活动\n" +"----------------\n" +"\n" +"使用我们的 Lead Automation 应用程序设计、发送、追踪活动.\n" +"\n" +"获取有关广告系列效果的即时统计消息,以提高您的转化率\n" +"rate. 追踪发送、接收、打开和回复的邮件.\n" +"\n" +"轻松管理您的营销活动、讨论组、潜在客户和\n" +"一个简单而强大的平台中的机会.\n" +"\n" +"与 Odoo 应用程序集成\n" +"-------------------------\n" +"\n" +"从每个 Odoo 应用程序中访问群发邮件功能,以改善您的方式\n" +"用户交流.\n" +"\n" +"从 Odoo CRM 机会 发送电子邮件模板,选择基于潜在客户\n" +"在营销领域,发送 工作机会 并自动化\n" +"答复申请人,在潜在客户自动化营销中重复使用电子邮件模板\n" +"活动.\n" +"\n" +"对您的电子邮件的答复会自动出现在每个文件的历史记录中\n" +"使用社交网络应用.\n" +"\n" +"清理您的潜在客户数据库\n" +"------------\n" +"\n" +"获得一个干净的潜在客户数据据库,该数据库使用\n" +"的性能随著时间的推移而改进您的邮件. Odoo 有效地处理退回邮件,标记错误的线索\n" +"相应地,并为您提供有关潜在客户质量的统计消息.\n" +"\n" +"一键发送电子邮件\n" +"---------\n" +"\n" +"营销部门会喜欢开展活动. 但您也可以给予\n" +"一键向所有其它用户发送邮件,发送给他们自己的潜在客户或\n" +"文件.\n" +"\n" +"选择一些文件(例如线索、支持票、供应商、申请人,\n" +"...) 并一键发送电子邮件给他们的联系人,重复使用现有的电子邮件\n" +"模板.\n" +"\n" +"跟进答案\n" +"--------\n" +"\n" +"聊天功能使您能够更快、更有效地与\n" +"进行交流您的客户. 获取自动创建的文件(潜在客户、机会,\n" +"任务,...) 基于对您的群发邮件活动的回答 订阅\n" +"直接在 Odoo 中或通过电子邮件讨论业务文件.\n" +"\n" +"将所有谈判和讨论附加到正确的文件中,然后\n" +"通知特定事件的相关经理.\n" +"\n" +"活动仪表板\n" +"--------\n" +"\n" +"获取您需要的洞察力,以开展更明智的营销活动. 追踪统计数据\n" +"每个广告系列: 跳出率、已发送邮件、最佳内容等. 清晰的仪表板\n" +"让您直接了解您的广告系列效果.\n" +"\n" +"与其它应用程序完全集成\n" +"---------------------\n" +"\n" +"定义自动化动作(例如,让销售人员打电话、发送电子邮件……)\n" +"基于触发器(自 20 天以来没有任何活动,恢复了促销电子邮件,\n" +"等等)\n" +"\n" +"在每个渠道上优化从潜在客户到结束的营销活动. 做出更明智的决策\n" +"关于在哪里投资并展示您的营销活动对您的影响\n" +"公司的下划线.\n" +"\n" +"在您的网站中轻松集成联系表单. 表单提交创建潜在客户\n" +"自动在 Odoo CRM 中. 线索可用于营销活动.\n" +"\n" +"管理您的销售漏斗,没有\n" +"努力. 吸引潜在客户,跟进电话和会议. 分析\n" +"您的潜在客户的质量可以通过集成做出明智的决定并节省时间\n" +"直接向应用程序发送电子邮件.\n" +"\n" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_reports +msgid "Odoo Mexican Localization Reports" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_xml_polizas +msgid "Odoo Mexican XML Polizas Export" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_landing +msgid "Odoo Mexico Localization for Stock/Landing" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_web_mobile +msgid "Odoo Mobile Core module" +msgstr "Odoo 手机核心模块" + +#. module: base +#: model:ir.module.module,description:base.module_note +msgid "" +"Odoo Notes\n" +"----------\n" +"\n" +"Organize yourself with efficient todo lists and notes.\n" +"From personal tasks to collaborative meeting minutes, increase your user's\n" +"productivity by giving them the tools to prioritize their work, share their\n" +"ideas and collaborate on documents.\n" +"\n" +"Personal to-do lists that works\n" +"-------------------------------\n" +"\n" +"Quickly create to-dos, organize horizontally for the mid-term (today, this week, this month, ...), prioritize vertically for the short term and group by assigning colors. The kanban approach allows a simple visual organization of your to-dos.\n" +"\n" +"### Beat Work Overload\n" +"\n" +"Feel how good it is to rely on a structured way to organize your work instead of keeping everything in memory. Use notes to [Get Things Done](http://en.wikipedia.org/wiki/Getting_Things_Done).\n" +"\n" +"### Prioritize Efficiently\n" +"\n" +"Most people are lost in the flow of urgent daily tasks and have difficulties to work on important, long-term tasks. Notes gives you a simple way to allocate time very day to do important, but less urgent tasks.\n" +"\n" +"### Find Motivation to Close Tasks\n" +"\n" +"People used to work on tasks they like and not on important tasks. Start feeling good by checking tasks as done.\n" +"\n" +"Adapts to Your Creative Process\n" +"-------------------------------\n" +"\n" +"### Customize to your own workflow\n" +"\n" +"Everyone has their own way to organize activities. Odoo Notes' smart kanban approach allows every user to customize their own steps to process it's to-dos and notes.\n" +"\n" +"### A Creative Person\n" +"\n" +"A creative person will organize notes based on idea's maturity level: Draft Ideas ** Mature Ideas ** Specified **To Do\n" +"\n" +"### A Frequent Traveler\n" +"\n" +"An employee travelling a lot can organize their tasks based on the context to perform the task: U.S. Office | London's Office | To Review during Flights | At Home\n" +"\n" +"### A Manager\n" +"\n" +"A manager will organize their high number of tasks based on prioritizations: Todo Today | This Week | This Month | Later\n" +"\n" +"Personnal Notes\n" +"---------------\n" +"\n" +"### Notes are private but can be shared\n" +"\n" +"Write down your ideas in pads, keep your notes at your finger tips, attach related documents and use tags and colors to organize the information. Once your ideas are mature, you can share them to others users, start discussing it and collaborate by improving the specification in the pad.\n" +"\n" +"Collaborative Meeting Minutes\n" +"-----------------------------\n" +"\n" +"### Real-time sharing and editing of notes\n" +"\n" +"The real time collaborative writings on notes makes it the perfect tool to collaborate on meeting minutes. Attendees will be able to contribute to the minutes, attach important documents or discuss on the related thread.\n" +"\n" +msgstr "" +"Odoo 备注\n" +"---------\n" +"\n" +"用高效的待办事项列表和备注整理自己.\n" +"从个人任务到协作会议记录,增加用户的\n" +"通过为他们提供工具来优先考虑他们的工作,分享他们的\n" +"创意和文件协作.\n" +"\n" +"有效的个人待办事项列表\n" +"-------------------\n" +"\n" +"快速创建待办事项,为中期(今天、本周、本月……)横向组织,为短期纵向排列优先级,并通过配置颜色进行分组. 看板方法允许简单的视觉组织您的待办事项.\n" +"\n" +"### 击败工作超负荷\n" +"\n" +"感觉依靠结构化的方式来组织您的工作而不是把所有的东西都记住是多么好. 使用备注来[完成工作](http://en.wikipedia.org/wiki/Getting_Things_Done).\n" +"\n" +"### 有效地优先排序\n" +"\n" +"大多数人都沉浸在紧迫的日常任务中,难以处理重要的长期任务. Notes 为您提供了一种简单的方法,可以在一天内配置时间来完成重要但不太紧急的任务.\n" +"\n" +"### 找到完成任务的动力\n" +"\n" +"人们过去常常做他们喜欢的任务,而不是重要的任务. 通过检查任务是否完成来开始感觉良好.\n" +"\n" +"适应您的创作过程\n" +"-------------------\n" +"\n" +"### 自定义您自己的工作流程\n" +"\n" +"每个人都有自己的方式来组织活动. Odoo Notes 的智慧看板方法允许每个用户自定义他们自己的步骤来处理它的待办事项和备注.\n" +"\n" +"### 一个有创造力的人\n" +"\n" +"一个有创造力的人会根据想法的成熟度来组织备注: 草稿想法**成熟的想法**指定**待办事项\n" +"\n" +"### 经常旅客\n" +"\n" +"经常出差的员工可以根据执行任务的上下文来组织他们的任务: 美国办公室 | 伦敦办公室 | 飞行期间视图 | 在家\n" +"\n" +"### 经理\n" +"\n" +"经理将根据优先级组织大量任务: 今天的待办事项 | 本周 | 本月 | 稍后\n" +"\n" +"个人备注\n" +"---------------\n" +"\n" +"### 备注是私人的,但可以共享\n" +"\n" +"在便笺本上写下您的想法,让您的备注触手可及,附加相关文件并使用标签和颜色来组织消息. 一旦您的想法成熟,您可以将它们分享给其它用户,开始讨论它并通过改进进行协作平台中的规范.\n" +"\n" +"协作会议纪要\n" +"-----------------------------\n" +"\n" +"### 即时分享和编辑备注\n" +"\n" +"在备注上的即时协作写作使其成为在会议纪要上进行协作的完美工具. 与会者将能够为会议纪要做出贡献、附加重要文件或在相关行程上进行讨论.\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_point_of_sale +msgid "" +"Odoo Point of Sale\n" +"-----------------------------\n" +"\n" +"Odoo's Point of Sale\n" +"introduces a super clean interface with no installation required that runs\n" +"online and offline on modern hardwares.\n" +"\n" +"It's full integration with the company inventory and accounting, gives you real\n" +"time statistics and consolidations amongst all shops without the hassle of\n" +"integrating several applications.\n" +"\n" +"Work with the hardware you already have\n" +"---------------------------------------\n" +"\n" +"### In your web browser\n" +"\n" +"Odoo's POS is a web application that can run on any device that can display\n" +"websites with little to no setup required.\n" +"\n" +"### Touchscreen or Keyboard ?\n" +"\n" +"The Point of Sale works perfectly on any kind of touch enabled device, whether\n" +"it's multi-touch tablets like an iPad or keyboardless resistive touchscreen\n" +"terminals.\n" +"\n" +"### Scales and Printers\n" +"\n" +"Barcode scanners and printers are supported out of the box with no setup\n" +"required. Scales, cashboxes, and other peripherals can be used with the proxy\n" +"API.\n" +"\n" +"Online and Offline\n" +"------------------\n" +"\n" +"### Odoo's POS stays reliable even if your connection isn't\n" +"\n" +"Deploy new stores with just an internet connection: **no installation, no\n" +"specific hardware required**. It works with any **iPad, Tablet PC, laptop** or\n" +"industrial POS machine.\n" +"\n" +"While an internet connection is required to start the Point of Sale, it will\n" +"stay operational even after a complete disconnection.\n" +"\n" +"\n" +"A super clean user interface\n" +"----------------------------\n" +"\n" +"### Simple and beautiful\n" +"\n" +"Say goodbye to ugly, outdated POS software and enjoy the Odoo web interface\n" +"designed for modern retailer.\n" +"\n" +"### Designed for Productivity\n" +"\n" +"Whether it's for a restaurant or a shop, you can activate the multiple orders\n" +"in parallel to not make your customers wait.\n" +"\n" +"### Blazing fast search\n" +"\n" +"Scan products, browse through hierarchical categories, or get quick information\n" +"about products with the blasting fast filter across all your products.\n" +"\n" +"Integrated Inventory Management\n" +"-------------------------------\n" +"\n" +"Consolidate all your Sales Teams in real time: stores, ecommerce, sales\n" +"teams. Get real time control of the inventory and accurate forecasts to manage\n" +"procurements.\n" +"\n" +"A full warehouse management system at your fingertips: get information about\n" +"products availabilities, trigger procurement requests, etc.\n" +"\n" +"Deliver in-store customer services\n" +"----------------------------------\n" +"\n" +"Give your shopper a strong experience by integrating in-store customer\n" +"services. Handle reparations, track warantees, follow customer claims, plan\n" +"delivery orders, etc.\n" +"\n" +"Invoicing & Accounting Integration\n" +"----------------------------------\n" +"\n" +"Produce customer invoices in just a few clicks. Control sales and cash in real\n" +"time and use Odoo's powerful reporting to make smarter decisions to improve\n" +"your store's efficiency.\n" +"\n" +"No more hassle of having to integrate softwares: get all your sales and\n" +"inventory operations automatically posted in your G/L.\n" +"\n" +"Unified Data Amongst All Shops\n" +"------------------------------\n" +"\n" +"Get new products, pricing strategies and promotions applied automatically to\n" +"selected stores. Work on a unified customer base. No complex interface is\n" +"required to pilot a global strategy amongst all your stores.\n" +"\n" +"With Odoo as a backend, you have a system proven to be perfectly suitable for\n" +"small stores or large multinationals.\n" +"\n" +"Know your customers - in store and out\n" +"--------------------------------------\n" +"\n" +"Successful brands integrates all their customer relationship accross all their\n" +"channels to develop accurate customer profile and communicate with shoppers as\n" +"they make buying decisions, in store or online.\n" +"\n" +"With Odoo, you get a 360° customer view, including cross-channel sales,\n" +"interaction history, profiles, and more.\n" +"\n" +msgstr "" +"Odoo 销售点\n" +"-----------------------------\n" +"\n" +"Odoo 的 销售点\n" +"引入了一个超级干净的界面,无需安装即可运行\n" +"在现代硬件上上线和脱机. \n" +"\n" +"它和公司库存和会计完全集成,给您真实的\n" +"所有商店的时间统计和合和,没有\n" +"的麻烦集成多个应用程序. \n" +"\n" +"使用您已有的硬件\n" +"----------------------------------------\n" +"\n" +"### 在您的网络浏览器中\n" +"\n" +"Odoo 的 POS 是一个 Web 应用程序,可以在任何可以显示的设备上运行\n" +"几乎不需要设置的网站. \n" +"\n" +"### 触摸屏幕或键盘? \n" +"\n" +"销售点完美适用于任何类型的触控设备,无论\n" +"它是多点触控平板计算机,例如 iPad 或无键盘电阻式触摸屏幕\n" +"终端. \n" +"\n" +"### 秤和打印机\n" +"\n" +"开箱即用支持条码扫描仪和打印机,无需设置\n" +"必需. 天平、钱箱和其它外围设备可以和代理一起使用\n" +"API. \n" +"\n" +"上线和脱机\n" +"--------\n" +"\n" +"### Odoo 的 POS 保持可靠,即使您的连接不可用\n" +"\n" +"仅通过 Internet 连接部署新商店: **无需安装,无需\n" +"需要特定硬件**. 它适用于任何**iPad、平板计算机、笔记本**或\n" +"工业 POS 机. \n" +"\n" +"虽然需要 Internet 连接才能引导 POS,但它会\n" +"即使在完全断开连接后仍保持运行. \n" +"\n" +"\n" +"超级干净的用户界面\n" +"----------------\n" +"\n" +"### 简单漂亮\n" +"\n" +"告别丑陋、过时的 POS 软件,享受 Odoo 网络界面\n" +"专为现代零售商设计. \n" +"\n" +"### 为生产力而设计\n" +"\n" +"无论是餐厅还是商店,您都可以启用多个订单\n" +"同时不让您的客户等待. \n" +"\n" +"### 极速搜索\n" +"\n" +"扫描产品、浏览分层类型或快速获取消息\n" +"关于在您的所有产品中使用快速筛选的产品. \n" +"\n" +"集成库存管理\n" +"-------------------\n" +"\n" +"即时集成所有销售团队: 商店、电子商务、销售\n" +"团队. 获得对库存的即时控制和准确的预测以进行管理\n" +"采购. \n" +"\n" +"触手可和的完整仓库管理系统: 获取有关\n" +"的消息产品可用性、触发采购请求等. \n" +"\n" +"提供店内客户服务\n" +"----------------------\n" +"\n" +"通过集成店内客户,为您的购物者提供强大的体验\n" +"服务. 处理赔偿、跟踪保修、遵循客户索赔、计划\n" +"送货单等\n" +"\n" +"开票单和会计集成\n" +"----------------------\n" +"\n" +"只需点击几下即可生成客户开票单. 控制销售和现金\n" +"时间和使用 Odoo 的强大报告做出更明智的决策以改进\n" +"您商店的效率. \n" +"\n" +"不再需要集成软件: 获得所有销售和\n" +"库存动作自动过帐到您的总帐中. \n" +"\n" +"全店统一数据\n" +"-----------------------------\n" +"\n" +"获取自动应用到的新产品、定价策略和促销活动\n" +"选定的商店. 在统一的客户群上工作. 没有复杂的界面\n" +"需要在您的所有商店中试行全球战略. \n" +"\n" +"使用 Odoo 作为后端,您的系统被证明非常适合\n" +"小商店或大型跨国公司. \n" +"\n" +"了解您的客户 - 店内和店外\n" +"-------------------------------------\n" +"\n" +"成功的品牌集成了他们所有的客户关系\n" +"创建准确的客户单据和和购物者交流的渠道\n" +"他们在实体店或上线做出购买决定. \n" +"\n" +"使用 Odoo,您可以获得 360° 客户视图,包括跨渠道销售,\n" +"交互历史、配置等. \n" +"\n" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__opl-1 +msgid "Odoo Proprietary License v1.0" +msgstr "Odoo 专用许可授权协议 v1.0" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_alert/notification_alert.xml:0 +#, python-format +msgid "" +"Odoo Push notifications have been blocked. Go to your browser settings to " +"allow them." +msgstr "Odoo推送通知已被阻止。请转到您的浏览器设置以允许它们。" + +#. module: base +#: model:ir.module.module,description:base.module_purchase +msgid "" +"Odoo Supply Chain\n" +"-----------------\n" +"\n" +"Automate requisition-to-pay, control invoicing with the Odoo\n" +"Open Source Supply Chain.\n" +"\n" +"Automate procurement propositions, launch request for quotations, track\n" +"purchase orders, manage vendors' information, control products reception and\n" +"check vendors' invoices.\n" +"\n" +"Automated Procurement Propositions\n" +"----------------------------------\n" +"\n" +"Reduce inventory level with procurement rules. Get the right purchase\n" +"proposition at the right time to reduce your inventory level. Improve your\n" +"purchase and inventory performance with procurement rules depending on stock\n" +"levels, logistic rules, sales orders, forecasted manufacturing orders, etc.\n" +"\n" +"Send requests for quotations or purchase orders to your vendor in one click.\n" +"Get access to product receptions and invoices from your purchase order.\n" +"\n" +"Purchase Tenders\n" +"----------------\n" +"\n" +"Launch purchase tenders, integrate vendor's answers in the process and\n" +"compare propositions. Choose the best offer and send purchase orders easily.\n" +"Use reporting to analyse the quality of your vendors afterwards.\n" +"\n" +"\n" +"Email integrations\n" +"------------------\n" +"\n" +"Integrate all vendor's communications on the purchase orders (or RfQs) to get\n" +"a strong traceability on the negotiation or after sales service issues. Use the\n" +"claim management module to track issues related to vendors.\n" +"\n" +"Standard Price, Average Price, FIFO\n" +"-----------------------------------\n" +"\n" +"Use the costing method that reflects your business: standard price, average\n" +"price, fifo or lifo. Get your accounting entries and the right inventory\n" +"valuation in real-time; Odoo manages everything for you, transparently.\n" +"\n" +"Import Vendor Pricelists\n" +"--------------------------\n" +"\n" +"Take smart purchase decisions using the best prices. Easily import vendor's\n" +"pricelists to make smarter purchase decisions based on promotions, prices\n" +"depending on quantities and special contract conditions. You can even base your\n" +"sale price depending on your vendor's prices.\n" +"\n" +"Control Products and Invoices\n" +"-----------------------------\n" +"\n" +"No product or order is left behind, the inventory control allows you to manage\n" +"back orders, refunds, product reception and quality control. Choose the right\n" +"control method according to your need.\n" +"\n" +"Control vendor bills with no effort. Choose the right method according to\n" +"your need: pre-generate draft invoices based on purchase orders, on products\n" +"receptions, create invoices manually and import lines from purchase orders,\n" +"etc.\n" +"\n" +msgstr "" +"Odoo供应链\n" +"-----------------\n" +"\n" +"利用Odoo开源供应链,实现从请购到付款的自动化,控制开票单开具。\n" +"开源供应链。\n" +"\n" +"自动化采购建议,启动询价,跟踪\n" +"采购订单,管理供应商的信息,控制产品接收和\n" +"检查供应商的开票单。\n" +"\n" +"自动化采购建议\n" +"----------------------------------\n" +"\n" +"用采购规则降低库存水平。在正确的时间获得正确的采购\n" +"在正确的时间获得正确的采购建议,以减少您的库存水平。改善您的\n" +"根据库存水平、物流规则、销售订单、预测的生产订单等,利用采购规则来提高您的采购和库存绩效。\n" +"级别、物流规则、销售订单、预测的生产订单等,利用采购规则提高您的采购和库存绩效。\n" +"\n" +"一键发送报价请求或采购订单给您的供应商。\n" +"从您的采购订单中获取产品接收和开票单。\n" +"\n" +"采购招标\n" +"----------------\n" +"\n" +"发起采购招标,在这个过程中集成供应商的答案,并对建议进行比较。\n" +"比较建议。选择最佳报价并轻松发送采购订单。\n" +"使用报告来分析您的供应商的质量。\n" +"\n" +"\n" +"电子邮件集成\n" +"------------------\n" +"\n" +"集成所有供应商在采购订单(或RfQs)上的通信,以获得\n" +"谈判或售后服务问题上的强大可追溯性。使用\n" +"索赔管理模块来跟踪与供应商有关的问题。\n" +"\n" +"标准价格、平均价格、先进先出\n" +"-----------------------------------\n" +"\n" +"使用反映您业务的成本计算方法:标准价、平均价、先进先出或终身制。\n" +"价格、FIFO或LIFE。获得您的会计分录和正确的库存\n" +"实时估价;Odoo为您透明地管理一切。\n" +"\n" +"导入供应商价格表\n" +"--------------------------\n" +"\n" +"利用最佳价格做出明智的采购决策。 轻松地导入供应商的\n" +"价格表,以便根据促销活动、价格和特殊合同条件做出更明智的采购决定。\n" +"根据计数和特殊的合同条件。您甚至可以基于您的\n" +"销售价格取决于您的供应商的价格。\n" +"\n" +"控制产品和开票单\n" +"-----------------------------\n" +"\n" +"没有任何产品或订单被遗漏,库存控制使您能够管理\n" +"退货订单、退款、产品接收和质量控制。选择正确的\n" +"控制方法,以满足您的需要。\n" +"\n" +"不费吹灰之力就能控制供应商的账单。根据您的需要选择正确的方法\n" +"根据您的需要选择合适的方法:根据采购订单、产品、收据预先生成开票单草稿。\n" +"接收,手动创建开票单并从采购订单导入行。\n" +"等。\n" +"\n" + +#. module: base +#: model:ir.module.module,description:base.module_website +msgid "" +"Odoo Website Builder\n" +"--------------------\n" +"\n" +"Get an awesome and free website,\n" +"easily customizable with the Odoo website builder.\n" +"\n" +"Create enterprise grade website with our super easy builder. Use finely\n" +"designed building blocks and edit everything inline.\n" +"\n" +"Benefit from out-of-the-box business features; e-Commerce, events, blogs, jobs\n" +"announces, customer references, call-to-actions, etc.\n" +"\n" +"Edit Anything Inline\n" +"--------------------\n" +"\n" +"Create beautiful websites with no technical knowledge. Odoo's unique *'edit\n" +"inline'* approach makes website creation surprisingly easy. No more complex\n" +"backend; just click anywhere to change any content.\n" +"\n" +"\"Want to change the price of a product? or put it in bold? Want to change a\n" +"blog title?\" Just click and change. What you see is what you get. Really.\n" +"\n" +"Awesome. Astonishingly Beautiful.\n" +"---------------------------------\n" +"\n" +"Odoo's building blocks allow to design modern websites that are not possible\n" +"with traditional WYSIWYG page editors.\n" +"\n" +"Whether it's for products descriptions, blogs or static pages, you don't need\n" +"to be a professional designer to create clean contents. Just drag and drop and\n" +"customize predefined building blocks.\n" +"\n" +"Enterprise-Ready, out-of-the-box\n" +"--------------------------------\n" +"\n" +"Activate ready-to-use enterprise features in just a click; e-commerce,\n" +"call-to-actions, jobs announces, events, customer references, blogs, etc.\n" +"\n" +"Traditional eCommerce and CMS have poorly designed backends as it's not their\n" +"core focus. With the Odoo integration, you benefit from the best management\n" +"software to follow-up on your orders, your jobs applicants, your leads, etc.\n" +"\n" +"A Great Mobile Experience\n" +"-------------------------\n" +"\n" +"Get a mobile friendly website thanks to our responsive design based on\n" +"bootstrap. All your pages adapt automatically to the screen size. (mobile\n" +"phones, tablets, desktop) You don't have to worry about mobile contents, it\n" +"works by default.\n" +"\n" +"SEO tools at your finger tips\n" +"-----------------------------\n" +"\n" +"The *Promote* tool suggests keywords according to Google most searched terms.\n" +"Search Engine Optimization tools are ready to use, with no configuration\n" +"required.\n" +"\n" +"Google Analytics tracks your shopping cart events by default. Sitemap and\n" +"structured content are created automatically for Google indexation.\n" +"\n" +"Multi-Languages Made Easy\n" +"-------------------------\n" +"\n" +"Get your website translated in multiple languages with no effort. Odoo proposes\n" +"and propagates translations automatically across pages, following what you edit\n" +"on the master page.\n" +"\n" +"Designer-Friendly Templates\n" +"---------------------------\n" +"\n" +"Templates are awesome and easy to design. You don't need to develop to create\n" +"new pages, themes or building blocks. We use a clean HTML structure, a\n" +"[bootstrap](http://getbootstrap.com/) CSS.\n" +"\n" +"Customize every page on the fly with the integrated template editor. Distribute\n" +"your work easily as an Odoo module.\n" +"\n" +"Fluid Grid Layouting\n" +"--------------------\n" +"\n" +"Design perfect pages by drag and dropping building blocks. Move and scale them\n" +"to fit the layout you are looking for.\n" +"\n" +"Building blocks are based on a responsive, mobile friendly fluid grid system\n" +"that appropriately scales up to 12 columns as the device or viewport size\n" +"increases.\n" +"\n" +"Professional Themes\n" +"-------------------\n" +"\n" +"Design a custom theme or reuse pre-defined themes to customize the look and\n" +"feel of your website.\n" +"\n" +"Test new color scheme easily; you can change your theme at any time in just a\n" +"click.\n" +"\n" +"Integrated With Odoo Apps\n" +"-------------------------\n" +"\n" +"### e-Commerce\n" +"\n" +"Promote products, sell online, optimize visitors' shopping experience.\n" +"\n" +"\n" +"### Blogs\n" +"\n" +"Write news, attract new visitors, build customer loyalty.\n" +"\n" +"\n" +"### Online Events\n" +"\n" +"Schedule, organize, promote or sell events online; conferences, trainings, webinars, etc.\n" +msgstr "" +"Odoo 网站建设\n" +"--------\n" +"\n" +"获取一个很棒的免费网站,\n" +"使用 Odoo 网站构建器轻松定制.\n" +"\n" +"使用我们超级简单的构建器创建企业级网站. 好好使用\n" +"设计构建应用并线上上编辑所有内容.\n" +"\n" +"受益于开箱即用的业务功能;电子商务、活动、部落格、工作\n" +"公告、客户推荐、号召性用语等.\n" +"\n" +"线上上编辑任何内容\n" +"--------\n" +"\n" +"在没有技术知识的情况下创建漂亮的网站. Odoo 独特的 *'edit\n" +"inline'* 方法使网站创建变得异常简单. 不再复杂\n" +"后端;只需点击任意位置即可更改任何内容.\n" +"\n" +"\"想要更改产品的价格? 还是加粗? 想换一个\n" +"部落格标题? \"只需点击并更改. 您所看到的就是您得到的. 真的.\n" +"\n" +"太棒了. 美得惊人.\n" +"---------------------\n" +"\n" +"Odoo 的构建应用允许设计不可能的现代网站\n" +"使用传统的所见即所得网页编辑器.\n" +"\n" +"无论是产品描述、部落格还是静态网页,您都不需要\n" +"做一个专业的设计师来创造干净的内容. 只需拖放和\n" +"自定义预定义的构建应用.\n" +"\n" +"企业就绪,开箱即用\n" +"--------------------------------\n" +"\n" +"只需点击即可激活即用型企业功能;电子商务,\n" +"号召性用语、工作公告、活动、客户推荐、部落格等.\n" +"\n" +"传统电子商务和 CMS 的后端设计不佳,因为它不是他们的\n" +"核心焦点. 通过 Odoo 集成,您将受益于最佳管理\n" +"跟踪您的订单、求职者、潜在客户等的软件.\n" +"\n" +"出色的移动体验\n" +"-------------------------\n" +"\n" +"我们的响应式设计基于\n" +",因此获得了一个适合移动设备的网站引导程序. 您的所有网页都会自动适应屏幕尺寸. (移动设备\n" +"手机、平板计算机、台式机)您不必担心移动内容,它\n" +"默认工作.\n" +"\n" +"触手可及的 SEO 工具\n" +"-----------------------------\n" +"\n" +"*Promote* 工具根据 Google 搜索最多的字词推荐关键字.\n" +"搜索引擎优化工具即可使用,无需设置\n" +"必需.\n" +"\n" +"默认情况下,Google Analytics 会跟踪您的购物车事件. 站点地图和\n" +"为 Google 索引自动创建结构化内容.\n" +"\n" +"多语言变得简单\n" +"-------------------------\n" +"\n" +"毫不费力地将您的网站翻译成多种语言. Odoo 推荐\n" +"并根据您编辑的内容自动跨网页传播翻译\n" +"在母版页上.\n" +"\n" +"设计师友好的模板\n" +"---------------\n" +"\n" +"模板很棒且易于设计. 您无需开发即可创建\n" +"新网页、主题或构建构建块. 我们使用干净的 HTML 结构,a\n" +"[引导程序](http://getbootstrap.com/) CSS.\n" +"\n" +"使用集成的模板编辑器即时自定义每个网页. 分发\n" +"您的工作很容易作为一个 Odoo 应用.\n" +"\n" +"流体网格布局\n" +"--------\n" +"\n" +"通过拖放构建应用设计完美的网页. 移动和缩放它们\n" +"以适应您正在搜索的布局.\n" +"\n" +"构建应用基于响应迅速、移动友好的流体网格系统\n" +"根据设备或窗口尺寸适当地扩展到 12 列\n" +"增加.\n" +"\n" +"专业主题\n" +"--------\n" +"\n" +"设计自定义主题或重复使用预定义的主题来自定义外观和\n" +"感觉您的网站.\n" +"\n" +"轻松测试新的配色方案;您可以在任何时间更改您的主题\n" +"点击.\n" +"\n" +"与 Odoo 应用程序集成\n" +"-------------------------\n" +"\n" +"### 电子商务\n" +"\n" +"推广产品,线上销售,优化访客的购物体验.\n" +"\n" +"\n" +"### 部落格\n" +"\n" +"撰写新闻,吸引新访客,创建客户会员度.\n" +"\n" +"\n" +"### 线上活动\n" +"\n" +"线上安排、组织、推广或销售活动;会议、培训、网络研讨会等.\n" + #. module: account #: model_terms:ir.actions.act_window,help:account.action_bank_statement_tree msgid "" @@ -21066,8 +52903,322 @@ msgstr "" "Odoo 允许您直接将帐单明细与\n" " 相关的销售或采购购买应收付结算单对帐调节." -#. module: account +#. module: base +#: model:ir.module.module,description:base.module_website_sale +msgid "" +"Odoo e-Commerce\n" +"---------------\n" +"\n" +"### Optimize sales with an awesome online store.\n" +"\n" +"Odoo is an Open Source eCommerce\n" +"unlike anything you have ever seen before. Get an awesome catalog of products\n" +"and great product description pages.\n" +"\n" +"It's full-featured, integrated with your management software, fully\n" +"customizable and super easy.\n" +"\n" +"Create Awesome Product Pages\n" +"----------------------------\n" +"\n" +"Odoo's unique *'edit inline'* and building blocks approach makes product pages\n" +"creation surprisingly easy. \"Want to change the price of a product? or put it\n" +"in bold? Want to add a banner for a specific product?\" just click and change.\n" +"What you see is what you get. Really.\n" +"\n" +"Drag & Drop well designed *'Building Blocks'* to create beautifull product\n" +"pages that your customer will love.\n" +"\n" +"Increase Your Revenue Per Order\n" +"-------------------------------\n" +"\n" +"The built-in cross-selling feature helps you offer extra products related to\n" +"what the shopper put in his cart. (e.g. accessories)\n" +"\n" +"Odoo's upselling algorythm allows you to show visitors similar but more\n" +"expensive products than the one in view, with incentives.\n" +"\n" +"The inline editing feature allows you to easily change a price, launch a\n" +"promotion or fine tune the description of a product, in a just a click.\n" +"\n" +"A Clean Google Analytics Integration\n" +"------------------------------------\n" +"\n" +"Get a clear visibility of your sales funnel. Odoo's Google Analytics trackers\n" +"are configured by default to track all kind of events related to shopping\n" +"carts, call-to-actions, etc.\n" +"\n" +"As Odoo marketing tools (mass mailing, campaigns, etc) are also linked with\n" +"Google Analytics, you get a complete view of your business.\n" +"\n" +"Target New Markets\n" +"------------------\n" +"\n" +"Get your website translated in multiple languages with no effort. Odoo proposes\n" +"and propagates translations automatically across pages.\n" +"\n" +"Our translation \"on demand\" features allows you to benefit from professional\n" +"translators to translate all your changes automatically. Just change any part\n" +"of your website (a new blog post, a page modification, product descriptions,\n" +"...) and the translated versions are updated automatically in around 32 hours.\n" +"\n" +"Fine Tune Your Catalog\n" +"----------------------\n" +"\n" +"Get full control on how you display your products in the catalog page:\n" +"promotional ribbons, related size of products, discounts, variants, grid/list\n" +"view, etc.\n" +"\n" +"Edit any product inline to make your website evolve with your customer need.\n" +"\n" +"Acquire New Customers\n" +"---------------------\n" +"\n" +"SEO tools are ready to use, with no configuration required. Odoo suggests\n" +"keywords according to Google most searched terms, Google Analytics tracks your\n" +"shopping cart events, sitemap are created automatically for Google indexation,\n" +"etc.\n" +"\n" +"We even do structured content automatically to promote your product and events\n" +"efficiently in Google.\n" +"\n" +"Leverage Social Media\n" +"---------------------\n" +"\n" +"Create new landing pages easily with the Odoo inline editing feature. Send\n" +"visitors of your different marketing campaigns to specific landing pages to\n" +"optimize conversions.\n" +"\n" +"Manage a Reseller Network\n" +"-------------------------\n" +"\n" +"Manage a reseller network to target new market, have local presences or broaden\n" +"your distribution. Give them access to your reseller portal for an efficient\n" +"collaboration.\n" +"\n" +"Promote your resellers online, forward leads to resellers (with built-in\n" +"geolocalisation feature), define specific pricelists, launch a loyalty program\n" +"(offer specific discounts to your best customers or resellers), etc.\n" +"\n" +"Benefit from the power of Odoo, in your online store: a powerfull tax engine,\n" +"flexible pricing structures, a real inventory management solution, a reseller\n" +"interface, support for products with different behaviours; physical goods,\n" +"events, services, variants and options, etc.\n" +"\n" +"You don't need to interface with your warehouse, sales or accounting software.\n" +"Everything is integrated with Odoo. No pain, real time.\n" +"\n" +"A Clean Checkout Process\n" +"------------------------\n" +"\n" +"Convert most visitor interests into real orders with a clean checkout process\n" +"with a minimal number of steps and a great useability on every page.\n" +"\n" +"Customize your checkout process to fit your business needs: payment modes,\n" +"delivery methods, cross-selling, special conditions, etc.\n" +"\n" +"And much more...\n" +"----------------\n" +"\n" +"### Online Sales\n" +"\n" +"- Mobile Interface\n" +"- Sell products, events or services\n" +"- Flexible pricelists\n" +"- Product multi-variants\n" +"- Multiple stores\n" +"- Great checkout process\n" +"\n" +"### Customer Service\n" +"\n" +"- Customer Portal to track orders\n" +"- Assisted shopping with website live chats\n" +"- Returns management\n" +"- Advanced shipping rules\n" +"- Coupons or gift certificates\n" +"\n" +"### Order Management\n" +"\n" +"- Advanced warehouse management features\n" +"- Invoicing and accounting integration\n" +"- Mass mailing and customer segmentations\n" +"- Lead automation and marketing campaigns\n" +"- Persistent shopping cart\n" +"\n" +"Fully Integrated With Other Apps\n" +"--------------------------------\n" +"\n" +"### CMS\n" +"\n" +"Easily create awesome websites with no technical knowledge required.\n" +"\n" +"### Blogs\n" +"\n" +"Write news, attract new visitors, build customer loyalty.\n" +"\n" +"### Online Events\n" +"\n" +"Schedule, organize, promote or sell events online; conferences, webinars, trainings, etc.\n" +"\n" +msgstr "" +"Odoo 电子商务\n" +"---------------\n" +"\n" +"### 通过出色的线上商店优化销售.\n" +"\n" +"Odoo 是一个开放源码电子商务\n" +"不同于您以前见过的任何东西. 获取一个很棒的产品目录\n" +"和很棒的产品描述网页.\n" +"\n" +"它功能齐全,和您的管理软件集成,完全\n" +"可定制且超级简单.\n" +"\n" +"创建很棒的产品网页\n" +"----------------\n" +"\n" +"Odoo 独特的 *'edit inline'* 和构建应用方法使产品网页\n" +"创作出奇的容易. 想改变一个产品的价格? 或者把它\n" +"以黑体显示? 想要为特定产品增加横幅? \"只需点击和更改.\n" +"所见即所得. 真的.\n" +"\n" +"拖放精心设计的 *'Building Blocks'* 以创造精美的产品\n" +"您的客户会喜欢的网页.\n" +"\n" +"增加每个订单的收入\n" +"-------------------\n" +"\n" +"内置的交叉销售功能可帮助您提供和\n" +"相关的额外产品购物者放入购物车的物品. (例如配饰)\n" +"\n" +"Odoo 的加售销售算法允许您向访客展示相似但更多\n" +"比您看到的更贵的产品,有奖励措施.\n" +"\n" +"线上编辑功能可让您轻松更改价格,引导\n" +"只需点击一下,即可推广或微调产品描述.\n" +"\n" +"一个干净的 Google Analytics 集成\n" +"------------------------------------\n" +"\n" +"清楚地了解您的销售渠道. Odoo 的 Google Analytics 跟踪器\n" +"默认设置为跟踪和购物相关的所有类型的事件\n" +"购物车、号召性用语等.\n" +"\n" +"由于 Odoo 营销工具(群发邮件、活动等)也和\n" +"相关联Google Analytics,您可以全面了解您的业务.\n" +"\n" +"瞄准新市场\n" +"--------\n" +"\n" +"毫不费力地将您的网站翻译成多种语言. Odoo 推荐\n" +"和自动跨网页传播翻译.\n" +"\n" +"我们的翻译\"按需\"功能让您受益于专业\n" +"翻译器自动翻译您的所有更改. 只需更改任何部分\n" +"关于您的网站(一篇新博文、一次网页修改、产品描述,\n" +"...) 和且翻译版本会在大约 32 小时内自动更新.\n" +"\n" +"微调您的目录\n" +"---------------------\n" +"\n" +"完全控制您如何在目录网页中显示您的产品:\n" +"促销丝带、产品的相关尺寸、折扣、变体、网格/列表\n" +"视图等.\n" +"\n" +"线上编辑任何产品,使您的网站随客户需求而发展.\n" +"\n" +"获取新客户\n" +"---------\n" +"\n" +"SEO 工具已准备好使用,无需设置. Odoo 推荐\n" +"根据谷歌搜索最多的关键词,谷歌分析跟踪您的\n" +"购物车事件、站点地图是自动为 Google 索引创建的,\n" +"等等\n" +"\n" +"我们甚至会自动制作结构化内容来宣传您的产品和活动\n" +"在 Google 中效率很高.\n" +"\n" +"利用社交媒体\n" +"---------\n" +"\n" +"使用 Odoo 线上编辑功能轻松创建新的登录网页. 发送\n" +"您的不同营销活动的访客到特定目标网页到\n" +"优化转换.\n" +"\n" +"管理经销商网络\n" +"-------------------------\n" +"\n" +"管理经销商网络以瞄准新市场、在当地开展业务或扩大\n" +"您的发行版. 让他们访问您的经销商门户以获得高效\n" +"合作.\n" +"\n" +"线上推广您的经销商,将潜在客户转发给经销商(内置\n" +"地理定位功能),定义具体的价格表,引导会员计划\n" +"(向您的最佳客户或经销商提供特定折扣)等.\n" +"\n" +"在您的线上商店中受益于 Odoo 的强大功能:强大的税务引擎,\n" +"灵活的定价结构、真正的库存管理解决方案、经销商\n" +"接口,支持不同行为的产品;实物,\n" +"事件、服务、变体和选项等.\n" +"\n" +"您无需和仓库、销售或会计软件交互.\n" +"一切都和 Odoo 集成. 没有痛苦,即时.\n" +"\n" +"一个干净的结帐过程\n" +"------------\n" +"\n" +"通过干净的结帐流程将大多数访客兴趣转化为真实订单\n" +"步骤最少,每一页都有很好的可用性.\n" +"\n" +"自定义结帐流程以满足您的业务需求:付款方式,\n" +"配送方式、交叉销售、特殊条件等\n" +"\n" +"还有更多……\n" +"----------------\n" +"\n" +"### 线上销售\n" +"\n" +"- 移动界面\n" +"- 销售产品、活动或服务\n" +"- 灵活的价目表\n" +"- 产品多变体\n" +"- 多个商店\n" +"- 很棒的结帐过程\n" +"\n" +"### 客户服务\n" +"\n" +"- 跟踪订单的客户门户\n" +"- 通过网站即时聊天协助购物\n" +"- 退货管理\n" +"- 高级运输规则\n" +"- 优惠券或礼券\n" +"\n" +"### 订单管理\n" +"\n" +"- 高级仓库管理功能\n" +"- 开票和会计集成\n" +"- 群发邮件和客户细分\n" +"- 领导自动化和营销活动\n" +"- 持久购物车\n" +"\n" +"和其它应用程序完全集成\n" +"--------------------------------\n" +"\n" +"### CMS\n" +"\n" +"无需技术知识即可轻松创建出色的网站.\n" +"\n" +"### 博客\n" +"\n" +"撰写新闻,吸引新访客,创建客户会员.\n" +"\n" +"### 线上活动\n" +"\n" +"线上安排、组织、推广或销售活动;会议、网络研讨会、培训等.\n" +"\n" + +#. modules: base, account #: model_terms:ir.actions.act_window,help:account.res_partner_action_customer +#: model_terms:ir.actions.act_window,help:base.action_partner_customer_form msgid "Odoo helps you easily track all activities related to a customer." msgstr "Odoo 帮助您轻松跟进与客户相关的所有活动。" @@ -21076,7 +53227,30 @@ msgstr "Odoo 帮助您轻松跟进与客户相关的所有活动。" msgid "Odoo helps you easily track all activities related to a supplier." msgstr "Odoo帮助您轻松跟踪与供应商相关的所有活动。" +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_supplier_form +msgid "Odoo helps you easily track all activities related to a vendor." +msgstr "Odoo 帮助您轻松跟踪与供应商相关的所有活动." + +#. module: base +#: model_terms:ir.actions.act_window,help:base.action_partner_form +msgid "Odoo helps you track all activities related to your contacts." +msgstr "Odoo可帮助您跟踪与您的联系人相关的所有活动。" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 +#, python-format +msgid "" +"Odoo is currently processing a scheduled action.\n" +"Module operations are not possible at this time, please try again later or contact your system administrator." +msgstr "" +"Odoo 当前正在处理计划的动作.\n" +"此时不能进行模块动作,请稍后重试或联系您的系统管理员." + #. module: purchase_stock +#. odoo-python #: code:addons/purchase_stock/models/stock_move.py:0 #, python-format msgid "" @@ -21084,6 +53258,40 @@ msgid "" " %s is zero." msgstr "Odoo不能生成 anglo saxon 条目。%s 的总估值为零。" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_actions_report.py:0 +#: code:addons/base/models/ir_actions_report.py:0 +#, python-format +msgid "Odoo is unable to merge the generated PDFs." +msgstr "Odoo无法合并创建的PDF。" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_sequence__padding +msgid "" +"Odoo will automatically adds some '0' on the left of the 'Next Number' to " +"get the required padding size." +msgstr "Odoo将自动增加几个「0」在「下一个数字」的左侧以满足填充要求." + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_request/notification_request.js:0 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "没有权限在该设备上发送本地通知。" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mail_bot +msgid "OdooBot" +msgstr "Odoo机器人" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_im_livechat_mail_bot +msgid "OdooBot for livechat" +msgstr "即时聊天使用 Odoo机器人" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__oee msgid "Oee" @@ -21105,14 +53313,82 @@ msgstr "资产负债表" msgid "Office Chair" msgstr "办公椅子" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Office Supplies" +msgstr "办公共品" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/persona_im_status_icon/persona_im_status_icon.xml:0 +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#: code:addons/mail/static/src/models/channel_member_list_category_view.js:0 +#, python-format +msgid "Offline" +msgstr "离线" + +#. modules: mail, base +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_delete_confirm/attachment_delete_confirm.xml:0 +#: code:addons/mail/static/src/components/link_preview_delete_confirm_view/link_preview_delete_confirm_view.xml:0 +#: model_terms:ir.ui.view,arch_db:base.demo_failures_dialog +#, python-format +msgid "Ok" +msgstr "确定" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_char +msgid "Old Value Char" +msgstr "旧字符值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_datetime +msgid "Old Value DateTime" +msgstr "旧日期时间值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_float +msgid "Old Value Float" +msgstr "旧浮点值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_integer +msgid "Old Value Integer" +msgstr "旧整数值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_monetary +msgid "Old Value Monetary" +msgstr "旧货币值" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_tracking_value__old_value_text +msgid "Old Value Text" +msgstr "旧文本值" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_tracking_value_form +msgid "Old values" +msgstr "旧值" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__matching_order__old_first #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model_template__matching_order__old_first msgid "Oldest first" msgstr "最老的第一个" +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "阿曼" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_model_fields__on_delete +msgid "On Delete" +msgstr "在删除时" + #. modules: stock, mrp -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_header.xml:0 #: model:ir.model.fields,field_description:stock.field_stock_quant__on_hand #: model:ir.model.fields,field_description:stock.field_stock_warehouse_orderpoint__qty_on_hand @@ -21130,6 +53406,17 @@ msgstr "在手" msgid "On Hand Quantity" msgstr "在手数量" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_act_window_view__multi +#: model:ir.model.fields,field_description:base.field_ir_actions_report__multi +msgid "On Multiple Doc." +msgstr "在多个单据." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_model_fields__on_delete +msgid "On delete property for many2one fields" +msgstr "多对一(many2one)字段的 on delete 属性" + #. module: account #: model:ir.model.fields.selection,name:account.selection__res_company__early_pay_discount_computation__included msgid "On early payment" @@ -21167,6 +53454,11 @@ msgstr "" msgid "On received quantities" msgstr "收到数量" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_sale_picking +msgid "On site Payment & Picking" +msgstr "现场付款和取货" + #. module: purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.vendor_delay_report_view_graph msgid "On-Time Delivery" @@ -21196,26 +53488,45 @@ msgstr "准时交货" msgid "On-time Rate" msgstr "准时率" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.onboarding_container +msgid "Onboarding Tips" +msgstr "入门提示" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_onboarding +msgid "Onboarding toolbox" +msgstr "入门工具箱" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/js/tours/mail.js:0 +#, python-format +msgid "" +"Once a message has been starred, you can come back and review it at any time" +" here." +msgstr "如果消息已生效,您可以返回并随时在此对它进行检查。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.account_tour_upload_bill_email_confirm msgid "Once done, press continue." msgstr "完成后,按继续。" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Once everything is as you want it, validate." -msgstr "" +msgstr "一旦一切都如您所愿,验证一下。" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "" "Once everything is set, you are good to continue. You will be able to edit " "this later in the Customers menu." -msgstr "" +msgstr "一旦一切都设置好,您很好继续。您将能够在\"客户\"菜单的编辑。" #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form @@ -21224,14 +53535,21 @@ msgid "" "settings.This adds a button to import from the Accounting dashboard." msgstr "一旦安装,设置 '银行提要' 到 '文件导入' 在银行账户设置。这增加了从会计仪表板导入的按钮。" +#. module: base +#: model:ir.module.module,description:base.module_sale_stock_margin +msgid "" +"Once the delivery is validated, update the cost on the SO to have an exact " +"margin computation." +msgstr "验证交付后,更新 SO 上的成本以进行精确的毛利计算." + #. module: purchase -#. openerp-web +#. odoo-javascript #: code:addons/purchase/static/src/js/tours/purchase.js:0 #, python-format msgid "" "Once you get the price from the vendor, you can complete the purchase order " "with the right price." -msgstr "" +msgstr "当您从供应商得到价格您可以用合适的价格完成下采购订单" #. module: purchase #: model_terms:ir.actions.act_window,help:purchase.purchase_form_action @@ -21241,28 +53559,35 @@ msgid "" msgstr "当您下单到您的供应商,确定您的询价它会变成采购订单" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/js/tours/account.js:0 #, python-format msgid "Once your invoice is ready, press CONFIRM." -msgstr "" +msgstr "结算单准备好后,按\"确认\"。" + +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "" +"One of the documents you are trying to access has been deleted, please try " +"again after refreshing." +msgstr "一个您试图访问的单据已经被删除,请刷新后重试." #. module: account #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form msgid "One or more Bank Accounts set on this partner are also used by other" msgstr "在此合作伙伴上设置的一个或多个银行账户也被其他人使用" -#. module: account -#: code:addons/account/models/account_move_line.py:0 +#. module: base +#. odoo-python +#: code:addons/base/models/ir_module.py:0 +#: code:addons/base/models/ir_module.py:0 #, python-format -msgid "One or more lines require a 100% analytic distribution." -msgstr "一条或多条线需要 100% 的分析分布。" - -#. module: account -#: code:addons/account/models/account_bank_statement.py:0 -#, python-format -msgid "One or more selected lines already belong to a complete statement." -msgstr "一个或多个选定的行已属于完整语句。" +msgid "" +"One or more of the selected modules have already been uninstalled, if you " +"believe this to be an error, you may try again later or contact support." +msgstr "一个或多个选定的模块已被卸载,如果您认为这是一个错误,您可以稍后重试或联系客服人员." #. module: stock #: model:ir.model.fields.selection,name:stock.selection__lot_label_layout__label_quantity__lots @@ -21274,6 +53599,65 @@ msgstr "每批次/序列号一个" msgid "One per unit" msgstr "每单元一个" +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_res_users_settings_unique_user_id +msgid "One user should only have one mail user settings." +msgstr "一个用户应该只有一个邮件用户设置。" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "" +"One2Many fields cannot be synchronized as part of `commercial_fields` or " +"`address fields`" +msgstr "一对多字段不能作为「commercial_fields」或「地址字段」的一部分进行同步" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/persona_im_status_icon/persona_im_status_icon.xml:0 +#: code:addons/mail/static/src/components/thread_icon/thread_icon.xml:0 +#: code:addons/mail/static/src/models/channel_member_list_category_view.js:0 +#, python-format +msgid "Online" +msgstr "线上" + +#. module: base +#: model:ir.module.category,name:base.module_category_marketing_online_appointment +msgid "Online Appointment" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_online_synchronization +msgid "Online Bank Statement Synchronization" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_booth_sale +msgid "Online Event Booth Sale" +msgstr "线上活动展位销售" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_booth +msgid "Online Event Booths" +msgstr "线上活动展位" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_event_sale +msgid "Online Event Ticketing" +msgstr "线上活动门票" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_hr_recruitment +msgid "Online Jobs" +msgstr "线上工作" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_membership +msgid "Online Members Directory" +msgstr "线上会员目录" + #. module: sale_management #: model:ir.model.fields,field_description:sale_management.field_sale_order_template__require_payment msgid "Online Payment" @@ -21284,12 +53668,18 @@ msgstr "线上支付" msgid "Online Signature" msgstr "线上签字" +#. module: base +#: model:ir.module.module,shortdesc:base.module_website_form_project +msgid "Online Task Submission" +msgstr "线上任务提交" + #. module: sale_management #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_template_view_form msgid "Online confirmation" msgstr "线上确认" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "" @@ -21303,16 +53693,7 @@ msgid "Only Tax Exigible Lines" msgstr "仅适用税项" #. module: account -#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner_category_ids -msgid "Only Those Partner Categories" -msgstr "只有那些业务伙伴类别" - -#. module: account -#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner_ids -msgid "Only Those Partners" -msgstr "只有那些业务伙伴" - -#. module: account +#. odoo-python #: code:addons/account/models/account_report.py:0 #, python-format msgid "" @@ -21321,36 +53702,149 @@ msgid "" msgstr "只有没有自己的根报告的报告才能被选为根报告。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "Only a stock manager can validate an inventory adjustment." msgstr "只有库存经理可以验证库存调整。" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_message.py:0 +#, python-format +msgid "Only administrators are allowed to export mail message" +msgstr "只允许管理员导出邮件消息" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_message.py:0 +#, python-format +msgid "Only administrators are allowed to use grouped read on message model" +msgstr "仅允许管理员在消息模型上使用分组阅读" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_config.py:0 +#: code:addons/base/models/res_config.py:0 +#, python-format +msgid "Only administrators can change the settings" +msgstr "只有管理员能改变设置" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_attachment.py:0 +#: code:addons/base/models/ir_attachment.py:0 +#, python-format +msgid "Only administrators can execute this action." +msgstr "只有系统管理员可以执行此动作." + #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Only administrators can load a chart of accounts" msgstr "只有管理员才能加载会计科目表" +#. module: base +#. odoo-python +#: code:addons/fields.py:0 +#, python-format +msgid "Only admins can upload SVG files." +msgstr "只有管理员可以上传SVG文件." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_ui_view__mode +msgid "" +"Only applies if this view inherits from an other one (inherit_id is not False/Null).\n" +"\n" +"* if extension (default), if this view is requested the closest primary view\n" +"is looked up (via inherit_id), then all views inheriting from it with this\n" +"view's model are applied\n" +"* if primary, the closest primary view is fully resolved (even if it uses a\n" +"different model than this one), then this view's inheritance specs\n" +"() are applied, and the result is used as if it were this view's\n" +"actual arch.\n" +msgstr "" +"仅适用于此视图继承于另一个视图的情况(inherit_id 不为 False/Null)。\n" +"\n" +"* 扩展(默认)情况下,如果请求此视图作为(通过inherit_id)\n" +"所视图的最近主视图时,则应用继承\n" +"此视图模型的所有视图\n" +"* 如果是主视图,且最接近的主视图已完全解析(即使它使用\n" +"与此视图不同的模型),则将应用此视图的继承规范\n" +"(),并将结果用作该视图的\n" +"实际arch。\n" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/ir_model.py:0 +#, python-format +msgid "Only custom models can be modified." +msgstr "仅有自定义模型能被修改." + +#. module: mail +#: model:ir.model.constraint,message:mail.constraint_res_users_notification_type +msgid "Only internal user can receive notifications in Odoo" +msgstr "只有内部用户才能在Odoo中接收通知" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "Only internal users can create API keys" +msgstr "只有内部用户可以创建 API 密钥" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: code:addons/account/models/ir_actions_report.py:0 #, python-format msgid "Only invoices could be printed." msgstr "只能打印结算单。" +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Only logged notes can have their content updated on model '%s'" +msgstr "只有记录的备注才能在模型“%s”上更新其内容" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "" "Only manufacturing orders in either a draft or confirmed state can be %s." -msgstr "" +msgstr "只有处于草稿或确认状态的制造订单才可以%s。" #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_production.py:0 #, python-format msgid "Only manufacturing orders with a Bill of Materials can be %s." -msgstr "" +msgstr "只有有物料清单的制造订单才能%s。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_thread.py:0 +#, python-format +msgid "Only messages type comment can have their content updated" +msgstr "只有消息类型的备注才能更新其内容" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_channel.py:0 +#, python-format +msgid "" +"Only messages type comment can have their content updated on model " +"'mail.channel'" +msgstr "只有消息类型的备注才能在模型“mail.channel”上更新其内容" + +#. module: base +#: model:ir.model.constraint,message:base.constraint_res_currency_rate_unique_name_per_day +msgid "Only one currency rate per day allowed!" +msgstr "每天只允许一种货币汇率!" #. module: account #: model:ir.model.fields,help:account.field_account_payment_register__group_payment @@ -21359,6 +53853,41 @@ msgid "" "billy." msgstr "合作伙伴(银行)只会创建一笔付款,而不是每笔付款。" +#. module: base +#: model:ir.model.constraint,message:base.constraint_decimal_precision_name_uniq +msgid "Only one value can be defined for each given usage!" +msgstr "每个用途只能定义一个值!" + +#. module: base +#. odoo-python +#: code:addons/base/wizard/base_partner_merge.py:0 +#: code:addons/base/wizard/base_partner_merge.py:0 +#, python-format +msgid "" +"Only the destination contact may be linked to existing Journal Items. Please" +" ask the Administrator if you need to merge several contacts linked to " +"existing Journal Items." +msgstr "只有目标联系人可连结到现有日志项. 如果您需要合并几个联系人连结到现有日志项,请询问管理员." + +#. module: base +#. odoo-python +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#, python-format +msgid "" +"Only the portal users can delete their accounts. The user(s) %s can not be " +"deleted." +msgstr "仅门户用户可以删除其帐户。用户%s无法删除。" + +#. module: mail +#. odoo-python +#: code:addons/mail/models/mail_render_mixin.py:0 +#: code:addons/mail/models/mail_render_mixin.py:0 +#: code:addons/mail/models/mail_render_mixin.py:0 +#, python-format +msgid "Only users belonging to the \"%s\" group can modify dynamic templates." +msgstr "只有属于“%s”组的用户才能修改动态模板。" + #. module: account #: model:ir.model.fields,help:account.field_res_company__period_lock_date msgid "" @@ -21368,33 +53897,124 @@ msgid "" msgstr "只有带有 '顾问' 角色的用户可以编辑从以前到今天的账户。例如,在一个开放的会计年度内使用它进行周期锁定。" #. module: account +#. odoo-python #: code:addons/account/controllers/terms.py:0 #, python-format msgid "Oops" msgstr "哎呀" -#. module: account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.demo_force_install_form +msgid "Oops, no!" +msgstr "哎呀!" + +#. modules: mail, base, account +#: model:ir.model.fields,field_description:base.field_ir_profile__speedscope_url #: model:ir.model.fields.selection,name:account.selection__account_invoice_report__state__posted #: model:ir.model.fields.selection,name:account.selection__account_journal__invoice_reference_type__none +#: model:ir.model.fields.selection,name:mail.selection__mail_channel_member__fold_state__open msgid "Open" msgstr "打开" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_base_module_update +msgid "Open Apps" +msgstr "打开应用程序" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_view_form_popup +#: model_terms:ir.ui.view,arch_db:mail.mail_message_view_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_form +#: model_terms:ir.ui.view,arch_db:mail.view_mail_form +msgid "Open Document" +msgstr "打开单据" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_mail_alias_form +msgid "Open Parent Document" +msgstr "打开上级单据" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__font__open_sans +msgid "Open Sans" +msgstr "打开 Sans" + +#. module: base +#: model:ir.actions.client,name:base.action_client_base_menu +msgid "Open Settings Menu" +msgstr "打开设置菜单" + #. module: mrp_workorder #: model_terms:ir.ui.view,arch_db:mrp_workorder.mrp_production_workorder_tree_editable_view_inherit_workorder msgid "Open Tablet View" msgstr "" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_window_action_tree +msgid "Open Window" +msgstr "打开窗口" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_tree_editable_view msgid "Open Work Order" msgstr "打开工单" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_window_action_form +#: model_terms:ir.ui.view,arch_db:base.view_window_action_search +msgid "Open a Window" +msgstr "打开一个窗口" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/channel_member_view.js:0 +#: code:addons/mail/static/src/models/message_view.js:0 +#, python-format +msgid "Open chat" +msgstr "打开聊天" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/call_systray_menu.js:0 +#, python-format +msgid "Open conference: %s" +msgstr "打开会议:%s" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/chat_window_header/chat_window_header.xml:0 +#, python-format +msgid "Open in Discuss" +msgstr "在讨论打开" + #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Open list" msgstr "打开列表" +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.picking_view_kanban_inherit_barcode +msgid "Open picking" +msgstr "打开分拣单" + +#. module: stock_barcode +#. odoo-python +#: code:addons/stock_barcode/models/stock_picking.py:0 +#: code:addons/stock_barcode/models/stock_picking.py:0 +#: model:ir.actions.act_window,name:stock_barcode.open_picking +#, python-format +msgid "Open picking form" +msgstr "打开拣货表单" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models/message_view.js:0 +#, python-format +msgid "Open profile" +msgstr "打开个人资料" + #. module: account #: model:ir.model.fields,field_description:account.field_account_account__opening_balance msgid "Opening Balance" @@ -21431,6 +54051,7 @@ msgid "Opening Journal" msgstr "期初日记账" #. module: account +#. odoo-python #: code:addons/account/models/company.py:0 #: model:ir.model.fields,field_description:account.field_res_company__account_opening_move_id #, python-format @@ -21443,13 +54064,14 @@ msgid "Opening Move Posted" msgstr "期初凭证已发布" #. module: account +#. odoo-python #: code:addons/account/models/account_account.py:0 #: code:addons/account/models/account_account.py:0 #, python-format msgid "Opening balance" msgstr "期初余额" -#. modules: quality_mrp_workorder, quality_control, mrp_workorder, mrp +#. modules: quality_control, mrp, mrp_workorder #: model:ir.model.fields,field_description:mrp.field_mrp_routing_workcenter__name #: model:ir.model.fields,field_description:mrp.field_mrp_workorder__operation_id #: model:ir.model.fields,field_description:mrp_workorder.field_quality_alert__workorder_id @@ -21460,7 +54082,6 @@ msgstr "期初余额" #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_line_view_form #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_form_view_inherit #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_tree_editable_view -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_alert_view_search_inherit_quality_mrp_workorder msgid "Operation" msgstr "作业" @@ -21491,6 +54112,7 @@ msgid "Operation To Consume" msgstr "待消耗的作业" #. modules: stock, mrp +#. odoo-python #: code:addons/stock/models/stock_rule.py:0 #: model:ir.model.fields,field_description:mrp.field_mrp_bom__picking_type_id #: model:ir.model.fields,field_description:mrp.field_mrp_production__picking_type_id @@ -21509,7 +54131,7 @@ msgstr "作业类型" msgid "Operation Type for Returns" msgstr "退回的作业类型" -#. modules: quality, stock +#. modules: stock, quality #: model:ir.model.fields,field_description:quality.field_quality_point__picking_type_ids #: model_terms:ir.ui.view,arch_db:stock.report_picking_type_label #: model_terms:ir.ui.view,arch_db:stock.view_picking_type_form @@ -21527,9 +54149,11 @@ msgstr "" "作业定义实现工单需要完成的工作。\n" " 每个作业都在特定的工作中心完成,并且具有特定的持续时间。" -#. modules: account, stock +#. modules: mail, stock, account +#. odoo-python #: code:addons/account/models/account_account.py:0 #: code:addons/account/models/account_bank_statement.py:0 +#: code:addons/mail/models/mail_template.py:0 #: code:addons/stock/models/stock_quant.py:0 #, python-format msgid "Operation not supported" @@ -21550,13 +54174,25 @@ msgstr "作业类型(PDF)" msgid "Operation type (ZPL)" msgstr "作业类型(ZPL)" -#. modules: quality, stock, mrp -#. openerp-web +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Operation:" +msgstr "作业:" + +#. modules: stock, mrp, stock_barcode +#. odoo-python +#. odoo-javascript #: code:addons/mrp/report/mrp_report_bom_structure.py:0 #: code:addons/mrp/static/src/components/bom_overview_display_filter/mrp_bom_overview_display_filter.js:0 #: code:addons/mrp/static/src/components/bom_overview_special_line/mrp_bom_overview_special_line.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 +#: code:addons/stock_barcode/static/src/main_menu.xml:0 #: model:ir.actions.act_window,name:mrp.mrp_routing_action #: model:ir.actions.act_window,name:stock.action_get_picking_type_operations +#: model:ir.actions.act_window,name:stock_barcode.stock_picking_action_kanban +#: model:ir.actions.act_window,name:stock_barcode.stock_picking_type_action_kanban #: model:ir.model.fields,field_description:mrp.field_mrp_bom__operation_ids #: model:ir.model.fields,field_description:mrp.field_mrp_bom_byproduct__allowed_operation_ids #: model:ir.model.fields,field_description:mrp.field_mrp_bom_line__allowed_operation_ids @@ -21574,8 +54210,6 @@ msgstr "作业类型(ZPL)" #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_gantt_production #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_graph #: model_terms:ir.ui.view,arch_db:mrp.workcenter_line_pivot -#: model_terms:ir.ui.view,arch_db:quality.quality_point_view_form -#: model_terms:ir.ui.view,arch_db:quality.quality_point_view_tree #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:stock.stock_picking_type_kanban #: model_terms:ir.ui.view,arch_db:stock.view_picking_form @@ -21630,6 +54264,35 @@ msgstr "制造订单" msgid "Operator" msgstr "操作员" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Ophiuchus" +msgstr "蛇夫座" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_crm +msgid "Opportunity to Quotation" +msgstr "商机到报价" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_sale_renting_crm +msgid "Opportunity to Rental" +msgstr "" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__failure_type__mail_optout +msgid "Opted Out" +msgstr "退订" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__base_partner_merge_automatic_wizard__state__option +msgid "Option" +msgstr "选项" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_report__filter_hierarchy__optional msgid "Optional" @@ -21640,7 +54303,8 @@ msgstr "可选的" msgid "Optional Create" msgstr "选项创建" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,help:mail.field_mail_alias__alias_force_thread_id #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_force_thread_id #: model:ir.model.fields,help:quality.field_quality_alert_team__alias_force_thread_id msgid "" @@ -21662,6 +54326,11 @@ msgstr "可选产品" msgid "Optional Products Lines" msgstr "可选产品行" +#. module: stock_barcode +#: model:ir.model.fields.selection,name:stock_barcode.selection__stock_picking_type__restrict_scan_tracking_number__optional +msgid "Optional Scan" +msgstr "可选的扫描" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move__partner_id msgid "" @@ -21669,6 +54338,26 @@ msgid "" "allotment" msgstr "用于交货的可选地址,专门用于配发" +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_window__domain +msgid "" +"Optional domain filtering of the destination data, as a Python expression" +msgstr "目标数据的可选筛选条件,使用 Python 表达式" + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_act_url__help +#: model:ir.model.fields,help:base.field_ir_actions_act_window__help +#: model:ir.model.fields,help:base.field_ir_actions_act_window_close__help +#: model:ir.model.fields,help:base.field_ir_actions_actions__help +#: model:ir.model.fields,help:base.field_ir_actions_client__help +#: model:ir.model.fields,help:base.field_ir_actions_report__help +#: model:ir.model.fields,help:base.field_ir_actions_server__help +#: model:ir.model.fields,help:base.field_ir_cron__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "可选的帮助文本为用户提供目标视图的说明,例如它的用法和用途。" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_location__posx #: model:ir.model.fields,help:stock.field_stock_location__posy @@ -21676,14 +54365,53 @@ msgstr "用于交货的可选地址,专门用于配发" msgid "Optional localization details, for information purpose only" msgstr "可选的定位细节,仅供参考" +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_notification__mail_mail_id +msgid "Optional mail_mail ID. Used mainly to optimize searches." +msgstr "mail_mail ID可选。主要用于优化搜索." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_actions_client__res_model +msgid "Optional model, mostly used for needactions." +msgstr "可选的模型,通常用于needaction." + +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__smtp_pass +msgid "Optional password for SMTP authentication" +msgstr "SMTP身份验证的可选密码" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_template__mail_server_id +msgid "" +"Optional preferred server for outgoing mails. If not set, the highest " +"priority one will be used." +msgstr "可选的推荐发信邮件服务器。如果没有设置,优先级最高的一个会被选中。" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_template__report_template +msgid "Optional report to print and attach" +msgstr "可选的打印和附加报表" + #. module: account #: model:ir.model.fields,help:account.field_account_account__tag_ids #: model:ir.model.fields,help:account.field_account_account_template__tag_ids msgid "Optional tags you may want to assign for custom reporting" msgstr "您可能想赋予给定义报告的选项标签" -#. module: account +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Optional timezone name" +msgstr "可选的时区名称" + +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__lang +#: model:ir.model.fields,help:mail.field_mail_compose_message__lang +#: model:ir.model.fields,help:mail.field_mail_composer_mixin__lang +#: model:ir.model.fields,help:mail.field_mail_render_mixin__lang +#: model:ir.model.fields,help:mail.field_mail_template__lang msgid "" "Optional translation language (ISO code) to select when sending out an " "email. If not set, the english version will be used. This should usually be " @@ -21693,6 +54421,11 @@ msgstr "" "在发送邮件时可选择的语言代码(ISO 代码)。如果没有设置,会使用英文版本。一般用占位符来确定合适的语言,例如: {{ " "object.partner_id.lang }}." +#. module: base +#: model:ir.model.fields,help:base.field_ir_mail_server__smtp_user +msgid "Optional username for SMTP authentication" +msgstr "SMTP身份验证的可选用户名" + #. module: stock #: model:ir.model.fields,help:stock.field_stock_move__returned_move_ids msgid "Optional: all returned moves created from this move" @@ -21708,21 +54441,34 @@ msgstr "可选: 当链接它们时下一库存移动." msgid "Optional: previous stock move when chaining them" msgstr "可选: 当链接它们时前一库存移动" -#. modules: sale_management, stock +#. modules: stock, base, sale_management +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form #: model_terms:ir.ui.view,arch_db:sale_management.sale_order_portal_content_inherit_sale_management #: model_terms:ir.ui.view,arch_db:stock.view_stock_rule_form msgid "Options" msgstr "选项" #. module: account +#. odoo-python #: code:addons/account/wizard/account_tour_upload_bill.py:0 #, python-format msgid "Or send a bill to %s@%s" msgstr "或者发送账单至 %s@%s" -#. modules: purchase, stock -#. openerp-web +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_orchid +msgid "Orchid Theme" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_theme_orchid +msgid "Orchid Theme - Flowers, Beauty" +msgstr "" + +#. modules: stock, purchase, base +#. odoo-javascript #: code:addons/stock/static/src/views/stock_orderpoint_list_buttons.xml:0 +#: model:ir.model.fields,field_description:base.field_ir_model__order #: model:ir.model.fields,field_description:purchase.field_purchase_report__order_id #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter @@ -21764,12 +54510,14 @@ msgid "Order Reference" msgstr "订单关联" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Order signed" msgstr "已签署订单" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Order signed by %s" @@ -21790,7 +54538,7 @@ msgstr "订购数量" msgid "Ordering" msgstr "订购" -#. modules: purchase_stock, stock, mrp +#. modules: stock, mrp, purchase_stock #: model:ir.model.fields,field_description:mrp.field_mrp_production__orderpoint_id #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order_line__orderpoint_id #: model:ir.model.fields,field_description:stock.field_stock_orderpoint_snooze__orderpoint_ids @@ -21805,7 +54553,338 @@ msgstr "订货点" msgid "Orders" msgstr "订单" -#. modules: account, stock +#. module: base +#: model:ir.module.module,description:base.module_website_event_track +msgid "" +"Organize Events, Trainings & Webinars\n" +"-------------------------------------\n" +"\n" +"### Schedule, Promote, Sell, Organize\n" +"\n" +"Get extra features per event; multiple pages, sponsors, multiple talks, talk proposal form, agenda, event-related news, documents (slides of presentations), event-specific menus.\n" +"\n" +"Organize Your Tracks\n" +"--------------------\n" +"\n" +"### From the talk proposal to the publication\n" +"\n" +"Add a talk proposal form on your events to allow visitors to submit talks and speakers. Organize the validation process of every talk, and schedule easily.\n" +"\n" +"Odoo's unique frontend and backend integration makes organization and publication so easy. Easily design beautiful speaker biographies and talks description.\n" +"\n" +"Agenda and List of Talks\n" +"------------------------\n" +"\n" +"### A strong user interface\n" +"\n" +"Get a beautiful agenda for each event published automatically on your website. Allow your visitors to easily search and browse talks, filter by tags, locations or speakers.\n" +"\n" +"Manage Sponsors\n" +"---------------\n" +"\n" +"### Sell sponsorship, promote your sponsors\n" +"\n" +"Add sponsors to your events and publish sponsors per level (e.g. bronze, silver, gold) on the bottom of every page of the event.\n" +"\n" +"Sell sponsorship packages online through the Odoo eCommerce for a full sales cycle integration.\n" +"\n" +"Communicate Efficiently\n" +"-----------------------\n" +"\n" +"### Activate a blog for some events\n" +"\n" +"You can activate a blog for each event allowing you to communicate on specific events. Visitors can subscribe to news to get informed." +msgstr "" +"组织活动、培训和网络研讨会\n" +"-------------------------------------\n" +"\n" +"### 安排、推广、销售、组织\n" +"\n" +"获得每个活动的额外功能;多个网页、赞助商、多次会谈、会谈提案表、议程、和活动相关的新闻、文件(样例文稿幻灯片)以和活动特定的菜单.\n" +"\n" +"组织您的专题\n" +"--------------------\n" +"\n" +"### 从会谈提案到发布\n" +"\n" +"在活动中增加谈话提案表,允许访客提交会谈内容和发言人. 组织每次会谈的验证流程,和轻松安排时间.\n" +"\n" +"Odoo 独特的前端和后端集成使组织和发布变得非常简单. 轻松设计精美的发言人概述和会谈描述.\n" +"\n" +"议程和会谈列表\n" +"------------------------\n" +"\n" +"### 强大的用户界面\n" +"\n" +"为网站上自动发布的每个活动安排周密的议程. 允许访客轻松搜索和浏览会谈,按标签、位置或发言人进行筛选.\n" +"\n" +"管理赞助商\n" +"---------------\n" +"\n" +"### 推销赞助商,宣传赞助商\n" +"\n" +"增加赞助商到您的活动和在活动的每一页底部发布各个级别的赞助商(例如铜级、白银级、黄金级).\n" +"\n" +"通过 Odoo 电子商务上线销售赞助套餐,实现整个销售循环的集成.\n" +"\n" +"有效沟通\n" +"-----------------------\n" +"\n" +"### 针对一些活动开通部落格\n" +"\n" +"您可以针对每个活动开通部落格,以便在特定活动中进行沟通. 访客可以订阅新闻以获得消息." + +#. module: base +#: model:ir.module.module,description:base.module_website_event +msgid "" +"Organize Events, Trainings & Webinars\n" +"-------------------------------------\n" +"\n" +"### Schedule, Promote, Sell, Organize\n" +"\n" +"Organize, promote and sell events online. Whether you organize meetings, conferences, trainings or webinars, Odoo gives you all the features you need to manage your events.\n" +"\n" +"Create Awesome Event Pages\n" +"--------------------------\n" +"\n" +"### Get rid of old WYSIWYG editors\n" +"\n" +"Create beautiful event pages by drag & droping well designed *'Building Blocks'*. Publish event photos, speakers, schedule, etc.\n" +"\n" +"Odoo's unique *'edit inline'* approach makes website creation surprisingly easy. \"Want to introduce a speaker? to change the price of a ticket? to update a banner? promote sponsors?\" just click and change.\n" +"\n" +"Sell Tickets Online\n" +"-------------------\n" +"\n" +"### Automate the registration and payment process\n" +"\n" +"Sell registrations to your event with the multi-ticketing feature. Events can be free or for a fee. Attendees can pay online with a credit card or on invoice, based on your configuration.\n" +"\n" +"Boost your sales with early-bird prices, special conditions for members, or extra services with multiple tickets.\n" +"\n" +"A Clean Google Analytics Integration\n" +"------------------------------------\n" +"\n" +"### Control your sales funnel with Google Analytics\n" +"\n" +"Get a clear visibility of your sales funnel. Odoo's Google Analytics trackers are configured by default to track all kind of events related to shopping carts, call-to-actions, etc.\n" +"\n" +"As Odoo marketing tools (mass mailing, campaigns, etc) are also linked with Google Analytics, you get a full view of your business.\n" +"\n" +"Promote Events Efficiently\n" +"--------------------------\n" +"\n" +"### Mass Mailing & Social Media\n" +"\n" +"Use the segmentation, the social network integration and mass mailing features to promote your events to the right audience. Setup automated emails to attendees to send them last minute details.\n" +"\n" +"Designer-Friendly Themes\n" +"------------------------\n" +"\n" +"### Designers love working on Odoo\n" +"\n" +"Themes are awesome and easy to design. You don't need to develop to create new pages, themes or building blocks. We use a clean HTML structure, a [bootstrap](http://getbootstrap.com/) CSS and our modularity allows to distribute your themes easily.\n" +"\n" +"The building block approach allows the website to stay clean after the end-users start creating new contents.\n" +"\n" +"Make Your Event More Visible\n" +"----------------------------\n" +"\n" +"### SEO tools at your finger tips\n" +"\n" +"SEO tools are ready to use, with no configuration required. Odoo suggests keywords according to Google most searched terms, Google Analytics tracks your shopping cart events and sitemap are created automatically.\n" +"\n" +"We even do structured content automatically to promote your events and products efficiently in Google.\n" +"\n" +"Leverage Social Media\n" +"---------------------\n" +"\n" +"### Optimize: from Ads to Conversions\n" +"\n" +"Create new landing pages easily with the Odoo inline editing feature. Send visitors of your different marketing campaigns to event landing pages to optimize conversions.\n" +"\n" +"And Much More...\n" +"----------------\n" +"\n" +"### Schedule\n" +"\n" +"- Calendar of Events\n" +"- Publish related documents\n" +"- Ressources allocation\n" +"- Automate purchases (catering...)\n" +"- Multiple locations and organizers\n" +"- Mobile Interface\n" +"\n" +"### Sell\n" +"\n" +"- Online or offline sales\n" +"- Automated invoicing\n" +"- Cancellation policies\n" +"- Specific prices for members\n" +"- Dashboards and reporting\n" +"\n" +"### Organize\n" +"\n" +"- Advanced Planification\n" +"- Print Badges\n" +"- Automate Follow-up Emails\n" +"- Min/Max capacities\n" +"- Manage classes and ressources\n" +"- Create group of attendees\n" +"- Automate statisfaction surveys\n" +"\n" +"Fully Integrated With Others Apps\n" +"---------------------------------\n" +"\n" +"### Get hundreds of open source apps for free\n" +"\n" +"\n" +"### eCommerce\n" +"\n" +"Promote products, sell online, optimize visitors' shopping experiences.\n" +"\n" +"\n" +"### Blogs\n" +"\n" +"Write news, attract new visitors, build customer loyalty.\n" +"\n" +"\n" +"### Our Team\n" +"\n" +"Create a great \"About us\" page by presenting your team efficiently.\n" +msgstr "" +"组织活动、培训和网络研讨会\n" +"-------------------------------------\n" +"\n" +"### 安排、推广、销售、组织\n" +"\n" +"上线组织、推广和销售活动. 无论您是组织会议、大会、培训还是网络研讨会,Odoo 都能为您提供管理活动所需的所有功能.\n" +"\n" +"创建很棒的活动网页\n" +"--------------------------\n" +"\n" +"### 摆脱旧的 即视即所得 编辑器\n" +"\n" +"通过拖放精心设计的 *'Building Blocks'* 来创建漂亮的活动网页. 发布活动照片、演讲者、日程安排等.\n" +"\n" +"Odoo 独特的 *'上线编辑'* 方法使网站创建变得异常简单. \"想介绍一位演讲者? 改变门票价格? 更新横幅? 宣传赞助商? \"只需点击和更改.\n" +"\n" +"上线售票\n" +"-------------------\n" +"\n" +"### 自动化注册和支付过程\n" +"\n" +"使用多票功能向您的活动销售注册. 活动可以是免费的,也可以是收费的. 和会者可以根据您的设置使用信用卡或开票单上线支付.\n" +"\n" +"通过早鸟价、会员特殊条件或多张门票的额外服务来提高您的销售额.\n" +"\n" +"一个干净的谷专题分析集成\n" +"---------------------\n" +"\n" +"### 使用 Google Analytics 控制您的销售渠道\n" +"\n" +"清楚地了解您的销售渠道. Odoo 的 Google Analytics 专题器默认设置为专题和购物车、号召性用语等相关的所有类型的事件.\n" +"\n" +"由于 Odoo 营销工具(群发邮件、活动等)也和 Google Analytics 相关联,您可以全面了解您的业务.\n" +"\n" +"有效地宣传活动\n" +"--------------------------\n" +"\n" +"### 群发邮件和社交媒体\n" +"\n" +"使用细分、社交网络集成和群发邮件功能向合适的受众宣传您的活动. 为和会者设置自动电子邮件,以向他们发送最后一分钟的详细消息.\n" +"\n" +"设计师友好的主题\n" +"------------------------\n" +"\n" +"### 设计师喜欢在 Odoo 上工作\n" +"\n" +"主题很棒且易于设计. 您无需开发即可创建新网页、主题或构建构建块. 我们使用干净的 HTML 结构、[bootstrap](http://getbootstrap.com/) CSS 和我们的应用化允许轻松分发您的主题.\n" +"\n" +"构建构建块方法允许网站在最终用户开始创建新内容后保持干净.\n" +"\n" +"让您的活动更显眼\n" +"-----------------------------\n" +"\n" +"### SEO 工具触手可和\n" +"\n" +"SEO 工具随时可用,无需设置. Odoo 根据谷专题搜索最多的词推荐关键词,谷专题分析专题您的购物车事件,站点地图是自动创建的.\n" +"\n" +"我们甚至会自动制作结构化内容,以在 Google 中高效地宣传您的活动和产品.\n" +"\n" +"利用社交媒体\n" +"---------------------\n" +"\n" +"### 优化: 从广告到转化\n" +"\n" +"使用 Odoo 上线上编辑功能轻松创建新的登陆网页. 将不同营销活动的访客发送到事件登录网页以优化转化.\n" +"\n" +"以和更多...\n" +"----------------\n" +"\n" +"### 日程\n" +"\n" +"- 活动日历\n" +"- 发布相关文件\n" +"- 资源配置\n" +"- 自动购买(餐饮...)\n" +"- 多个地点和组织者\n" +"- 移动界面\n" +"\n" +"### 卖\n" +"\n" +"- 上线或线下销售\n" +"- 自动开票\n" +"- 取消政策\n" +"- 会员的具体价格\n" +"- 仪表板和报告\n" +"\n" +"###组织\n" +"\n" +"- 高级规划\n" +"- 打印徽标\n" +"- 自动化跟进电子邮件\n" +"- 最小/最大容量\n" +"- 管理课程和资源\n" +"- 创建和会者组\n" +"- 自动化满意度调查\n" +"\n" +"和其它应用程序完全集成\n" +"---------------------------------\n" +"\n" +"### 免费获取数百个开放源码应用程序\n" +"\n" +"\n" +"### 电子商务\n" +"\n" +"推广产品,上线销售,优化访客的购物体验.\n" +"\n" +"\n" +"### 部落格\n" +"\n" +"撰写新闻、吸引新访客、创建客户会员度.\n" +"\n" +"\n" +"### 我们的队伍\n" +"\n" +"通过有效地展示您的团队来创建一个很棒的\"关于我们\"网页.\n" + +#. module: base +#: model:ir.module.module,summary:base.module_project +msgid "Organize and plan your projects" +msgstr "组织和规划您的项目" + +#. module: base +#: model:ir.module.module,summary:base.module_note +msgid "Organize your work with memos" +msgstr "用备忘录组织您的工作" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__orientation +msgid "Orientation" +msgstr "方向" + +#. modules: stock, account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__invoice_origin #: model:ir.model.fields,field_description:account.field_account_move__invoice_origin #: model:ir.model.fields,field_description:account.field_account_payment__invoice_origin @@ -21843,8 +54922,9 @@ msgstr "原始(未优化,未调整大小)附件" msgid "Original Bills" msgstr "原始账单" -#. module: account +#. modules: mail, account #: model:ir.model.fields,help:account.field_account_invoice_send__reply_to_mode +#: model:ir.model.fields,help:mail.field_mail_compose_message__reply_to_mode msgid "" "Original Discussion: Answers go in the original document discussion thread. \n" " Another Email Address: Answers go to the email address mentioned in the tracking message-id instead of original document discussion thread. \n" @@ -21874,6 +54954,26 @@ msgstr "原始生产数量" msgid "Original Reordering Rule" msgstr "原始订货规则" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_view_custom__ref_id +msgid "Original View" +msgstr "原始视图" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Original currency" +msgstr "原始货币" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/message_in_reply_to_view/message_in_reply_to_view.xml:0 +#, python-format +msgid "Original message was deleted" +msgstr "原邮件已删除" + #. module: account #: model:ir.model.fields,field_description:account.field_account_move_line__group_tax_id msgid "Originator Group of Taxes" @@ -21906,13 +55006,41 @@ msgstr "发起人税务分配行" msgid "Originator tax group" msgstr "发起人税组" -#. module: account -#. openerp-web +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Orthodox cross" +msgstr "东正教十字架" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_company__font__oswald +msgid "Oswald" +msgstr "" + +#. modules: base, account +#. odoo-python +#. odoo-javascript #: code:addons/account/static/src/components/account_type_selection/account_type_selection.js:0 #: code:addons/account/static/src/js/legacy_account_selection.js:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: code:addons/base/models/res_users.py:0 +#: model_terms:ir.ui.view,arch_db:base.user_groups_view #, python-format msgid "Other" -msgstr "" +msgstr "其他" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__res_partner__type__other +msgid "Other Address" +msgstr "其它地址" + +#. module: base +#: model:ir.module.category,name:base.module_category_extra +msgid "Other Extra Rights" +msgstr "其它额外权利" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__income_other @@ -21920,18 +55048,55 @@ msgstr "" msgid "Other Income" msgstr "其他收入" -#. modules: account, stock_account +#. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form -#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form msgid "Other Info" msgstr "其他信息" -#. modules: purchase, stock +#. modules: stock, purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:stock.view_picking_form msgid "Other Information" msgstr "其他信息" +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__other_osi_approved_licence +msgid "Other OSI Approved License" +msgstr "其它 OSI 批准的许可证" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__other_proprietary +msgid "Other Proprietary" +msgstr "其它专有协议" + +#. module: base +#: model:res.partner.industry,name:base.res_partner_industry_S +msgid "Other Services" +msgstr "其它服务" + +#. module: base_import +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_preview__othervalue +msgid "Other Variable" +msgstr "其它变量" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_form +msgid "" +"Other features are accessible through self, like\n" +" self.env, etc." +msgstr "" +"其它功能可以通过self访问, 例如\n" +" self.env, 等." + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_model_fields_form +msgid "" +"Other features are accessible through self, like\n" +" self.env, etc." +msgstr "" +"其它功能可以通过self访问, 例如\n" +" self.env, 等." + #. module: quality #: model:quality.reason,name:quality.reason_other msgid "Others" @@ -21945,6 +55110,33 @@ msgid "" "non-payment by the due date," msgstr "我们的结算单应在21个工作日内支付,除非结算单或订单上另有规定。如果到期日未付款," +#. module: stock +#: model_terms:res.company,invoice_terms_html:stock.res_company_1 +msgid "" +"Our invoices are payable within 21 working days, unless another payment " +"timeframe is indicated on either the invoice or the order. In the event of " +"non-payment by the due date, My Company (Chicago) reserves the right to " +"request a fixed interest payment amounting to 10% of the sum remaining due. " +"My Company (Chicago) will be authorized to suspend any provision of services" +" without prior warning in the event of late payment." +msgstr "" +"我们的结算单应在21个工作日内支付,除非结算单或订单上注明了其他付款时限。如果在到期日没有付款,我公司(芝加哥)预留要求支付固定利息的权利,金额为剩余款项的10%" +" o%。如果逾期付款,我公司(芝加哥)将被授权暂停提供任何服务,而无需事先警告。" + +#. module: base +#: model_terms:res.company,invoice_terms_html:base.main_company +msgid "" +"Our invoices are payable within 21 working days, unless another payment " +"timeframe is indicated on either the invoice or the order. In the event of " +"non-payment by the due date, My Company (San Francisco) reserves the right " +"to request a fixed interest payment amounting to 10% of the sum remaining " +"due. My Company (San Francisco) will be authorized to suspend any provision " +"of services without prior warning in the event of late payment." +msgstr "" +"我们的应收结算单可在 21 个工作日内支付,除非应收结算单或订单上注明了另一个付款时间范围. 如果在到期日之前未付款,My Company (San " +"Francisco) 保留要求支付固定利息的权利,金额为剩下到期金额的 10% o. " +"如果延迟付款,我的公司(旧金山)将被授权在没有事先警告的情况下暂停任何服务的提供." + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse__out_type_id msgid "Out Type" @@ -21960,24 +55152,50 @@ msgstr "出" msgid "Outbound Payment Methods" msgstr "境外支付方式" -#. modules: stock, stock_account -#. openerp-web +#. modules: stock, mail +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_header.xml:0 #: model:ir.model.fields,field_description:stock.field_product_product__outgoing_qty #: model:ir.model.fields,field_description:stock.field_product_template__outgoing_qty +#: model:ir.model.fields.selection,name:mail.selection__mail_mail__state__outgoing +#: model_terms:ir.ui.view,arch_db:mail.view_mail_search #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_search -#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search #, python-format msgid "Outgoing" msgstr "发出" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/stock_forecasted/forecasted_details.xml:0 #, python-format msgid "Outgoing Draft Transfer" -msgstr "" +msgstr "出货草稿调拨" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Outgoing Email Servers" +msgstr "发信服务器" + +#. modules: mail, base +#: model:ir.model.fields,field_description:mail.field_mail_template__mail_server_id +#: model_terms:ir.ui.view,arch_db:base.view_ir_mail_server_search +msgid "Outgoing Mail Server" +msgstr "发信邮件服务器" + +#. module: base +#: model:ir.actions.act_window,name:base.action_ir_mail_server_list +#: model:ir.ui.menu,name:base.menu_mail_servers +#: model_terms:ir.ui.view,arch_db:base.ir_mail_server_form +#: model_terms:ir.ui.view,arch_db:base.ir_mail_server_list +#: model_terms:ir.ui.view,arch_db:base.view_ir_mail_server_search +msgid "Outgoing Mail Servers" +msgstr "发信邮件服务器" + +#. module: mail +#: model:ir.model,name:mail.model_mail_mail +msgid "Outgoing Mails" +msgstr "发出邮件" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_location__outgoing_move_line_ids @@ -22003,12 +55221,31 @@ msgstr "" msgid "Outgoing Shipments" msgstr "出向运输" -#. module: account +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__mail_server_id +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__mail_server_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__mail_server_id +#: model:ir.model.fields,field_description:mail.field_mail_message__mail_server_id msgid "Outgoing mail server" msgstr "邮件发送服务器" +#. module: base +#: model:ir.module.module,shortdesc:base.module_microsoft_calendar +msgid "Outlook Calendar" +msgstr "Outlook日历" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.res_config_settings_view_form +msgid "Outlook Credentials" +msgstr "Outlook 凭据" + +#. module: base +#: model:ir.module.module,description:base.module_microsoft_outlook +msgid "Outlook support for incoming / outgoing mail servers" +msgstr "" + #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Output" @@ -22020,21 +55257,34 @@ msgstr "出货" msgid "Output Account for Stock Valuation" msgstr "库存计价的出货科目" +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__dpi +msgid "Output DPI" +msgstr "输出DPI" + #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse__wh_output_stock_loc_id msgid "Output Location" msgstr "出货位置" +#. module: base +#. odoo-python +#: code:addons/models.py:0 +#, python-format +msgid "Output name %r is used twice." +msgstr "输出名称 %r 已二次使用." + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment__outstanding_account_id msgid "Outstanding Account" msgstr "未结账户" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Outstanding Payments" -msgstr "未付款项" +msgstr "未完成款项" #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__account_journal_payment_credit_account_id @@ -22047,10 +55297,11 @@ msgid "Outstanding Payments accounts" msgstr "未支付账户" #. module: account +#. odoo-python #: code:addons/account/models/chart_template.py:0 #, python-format msgid "Outstanding Receipts" -msgstr "未结收据" +msgstr "未完成收据" #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__account_journal_payment_debit_account_id @@ -22063,12 +55314,14 @@ msgid "Outstanding Receipts accounts" msgstr "未结收据账户" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Outstanding credits" -msgstr "未结清贷方" +msgstr "未完成清贷方" #. module: account +#. odoo-python #: code:addons/account/models/account_move.py:0 #, python-format msgid "Outstanding debits" @@ -22111,8 +55364,15 @@ msgstr "整体设备效率,基于最近月份" msgid "Overall Equipment Effectiveness: no working or blocked time" msgstr "整体设备效率:无工作或阻塞时间" -#. module: account +#. modules: mail, account +#. odoo-javascript +#: code:addons/mail/static/src/backend_components/activity_list_view/activity_list_view.xml:0 +#: code:addons/mail/static/src/js/views/activity/activity_renderer.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_activity__state__overdue +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_mixin__activity_state__overdue +#: model:ir.model.fields.selection,name:mail.selection__res_partner__activity_state__overdue #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter +#, python-format msgid "Overdue" msgstr "逾期" @@ -22121,7 +55381,12 @@ msgstr "逾期" msgid "Overdue invoices, maturity date passed" msgstr "逾期结算单,超过付款日期" -#. modules: quality_control, stock, mrp +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.email_template_form +msgid "Override author's email" +msgstr "覆盖作者EMail" + +#. modules: stock, quality_control, mrp #: model:ir.ui.menu,name:quality_control.menu_quality_dashboard #: model:ir.ui.menu,name:stock.stock_picking_type_menu #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_form_view @@ -22129,19 +55394,29 @@ msgstr "逾期结算单,超过付款日期" msgid "Overview" msgstr "概述" -#. modules: quality, maintenance, stock +#. module: base +#: model:ir.model.fields,field_description:base.field_base_language_import__overwrite +#: model:ir.model.fields,field_description:base.field_base_language_install__overwrite +msgid "Overwrite Existing Terms" +msgstr "复盖现有术语" + +#. modules: quality, mail, base, stock, maintenance, stock_barcode +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_user_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment__owner_user_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_user_id #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_user_id #: model:ir.model.fields,field_description:stock.field_stock_quant__owner_id #: model:ir.model.fields,field_description:stock.field_stock_quant_package__owner_id #: model:ir.model.fields,field_description:stock.field_stock_scrap__owner_id +#: model_terms:ir.ui.view,arch_db:base.view_attachment_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_form #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_search #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_view_tree #: model_terms:ir.ui.view,arch_db:stock.quant_search_view #: model_terms:ir.ui.view,arch_db:stock.stock_move_line_view_search #: model_terms:ir.ui.view,arch_db:stock.view_move_line_form +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_move_line_product_selector +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode msgid "Owner" msgstr "所有者" @@ -22155,44 +55430,87 @@ msgstr "所有者 " msgid "Owner :" msgstr "所有者:" +#. module: base +#: model:res.partner.industry,full_name:base.res_partner_industry_P +msgid "P - EDUCATION" +msgstr "P - 教育" + +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "P button" +msgstr "P按钮" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter msgid "P&L Accounts" msgstr "损益账户" #. module: stock +#. odoo-python #: code:addons/stock/models/product.py:0 #, python-format msgid "P&L Qty" msgstr "P&L 数量" -#. module: sf_base +#. modules: sf_tool_management, sf_base #: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__1 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__1 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__1 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__1 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__1 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__1 msgid "P1" msgstr "" -#. module: sf_base +#. modules: sf_tool_management, sf_base #: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__2 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__2 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__2 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__2 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__2 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__2 msgid "P2" msgstr "" -#. module: sf_base +#. modules: sf_tool_management, sf_base #: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__3 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__3 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__3 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__3 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__3 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__3 msgid "P3" msgstr "" -#. module: sf_base +#. modules: sf_tool_management, sf_base #: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__4 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__4 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__4 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__4 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__4 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__4 msgid "P4" msgstr "" -#. module: sf_base +#. modules: sf_tool_management, sf_base #: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__5 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__5 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__5 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__5 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__5 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__5 msgid "P5" msgstr "" -#. module: sf_base -#: model:ir.model.fields.selection,name:sf_base.selection__sf_functional_cutting_tool__tool_grade__6 +#. module: sf_tool_management +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity__tool_grade__6 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_cutting_tool_entity_cache__tool_grade__6 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_functional_tool_warning__tool_grade__6 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_inbound_and_outbound_records_of_functional_tools__tool_grade__6 +#: model:ir.model.fields.selection,name:sf_tool_management.selection__sf_real_time_distribution_of_functional_tools__tool_grade__6 msgid "P6" msgstr "" @@ -22201,32 +55519,124 @@ msgstr "" msgid "PAUSE" msgstr "" -#. modules: mrp_workorder, mrp +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "PC" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_l10n_pe +msgid "PCGE Simplified" +msgstr "" + +#. modules: mrp_workorder, mrp, base #: model:ir.model.fields,field_description:mrp.field_mrp_routing_workcenter__worksheet +#: model:ir.model.fields.selection,name:base.selection__ir_actions_report__report_type__qweb-pdf #: model:ir.model.fields.selection,name:mrp.selection__mrp_routing_workcenter__worksheet_type__pdf #: model:ir.model.fields.selection,name:mrp_workorder.selection__quality_point__test_report_type__pdf msgid "PDF" msgstr "" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/attachment_viewer/attachment_viewer.xml:0 +#, python-format +msgid "PDF file" +msgstr "PDF文件" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_mrp_workorder_plm +#: model:ir.module.module,summary:base.module_mrp_workorder_plm +msgid "PLM for workorder" +msgstr "" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__base_language_export__format__po +msgid "PO File" +msgstr "PO单据" + #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_product_product__purchase_order_line_ids msgid "PO Lines" msgstr "PO明细行" +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "PO(T) format: you should edit it with a PO editor such as" +msgstr "PO(T) 格式: 您可以通过下列的PO编辑器来编辑" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.wizard_lang_export +msgid "POEdit" +msgstr "" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_search +msgid "POP" +msgstr "" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__fetchmail_server__server_type__pop +msgid "POP Server" +msgstr "POP 服务器" + +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.view_email_server_tree +msgid "POP/IMAP Servers" +msgstr "POP/IMAP 服务器" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_adyen +msgid "POS Adyen" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_hr_mobile +msgid "POS Barcode in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_pos_hr_mobile +msgid "POS Barcode scan in Mobile" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_restaurant_adyen +msgid "POS Restaurant Adyen" +msgstr "POS 餐厅 Adyen" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_restaurant_stripe +msgid "POS Restaurant Stripe" +msgstr "POS餐厅Stripe" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_six +msgid "POS Six" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_pos_stripe +msgid "POS Stripe" +msgstr "" + #. module: purchase #: model:mail.template,report_name:purchase.email_template_edi_purchase_done #: model:mail.template,report_name:purchase.email_template_edi_purchase_reminder msgid "PO_{{ (object.name or '').replace('/','_') }}" -msgstr "PO_{ (object.name or '').replace('/','_') }}}" +msgstr "" #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/xml/stock_traceability_report_backend.xml:0 #, python-format msgid "PRINT" msgstr "" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Pack" @@ -22252,7 +55662,7 @@ msgstr "包装类型" msgid "Pack goods, send goods in output and then deliver (3 steps)" msgstr "包装产品, 发送到待出货区,再送货(3步发货)" -#. modules: stock, account +#. modules: stock, stock_barcode, account #: model:ir.model.fields,field_description:stock.field_stock_package_level__package_id #: model:ir.model.fields,field_description:stock.field_stock_quant__package_id #: model:ir.model.fields,field_description:stock.field_stock_scrap__package_id @@ -22264,6 +55674,7 @@ msgstr "包装产品, 发送到待出货区,再送货(3步发货)" #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search #: model_terms:ir.ui.view,arch_db:stock.view_quant_package_form #: model_terms:ir.ui.view,arch_db:stock.view_quant_package_tree +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_quant_barcode msgid "Package" msgstr "包裹" @@ -22288,6 +55699,7 @@ msgid "Package Capacity" msgstr "包裹容量" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_package_level.py:0 #, python-format msgid "Package Content" @@ -22359,10 +55771,20 @@ msgstr "包裹名称不符合SSCC" msgid "Package type" msgstr "包裹类型" -#. module: stock +#. module: stock_barcode +#. odoo-javascript +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_picking_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 +#: code:addons/stock_barcode/static/src/models/barcode_quant_model.js:0 +#, python-format +msgid "Package type %s was correctly applied to the package %s" +msgstr "包装类型%s被正确地应用于%s包装" + +#. modules: stock, stock_barcode #: model:ir.actions.act_window,name:stock.action_package_view #: model:ir.actions.report,name:stock.action_report_picking_packages -#: model:ir.model,name:stock.model_stock_quant_package +#: model:ir.model,name:stock_barcode.model_stock_quant_package #: model:ir.model.fields,field_description:stock.field_res_config_settings__group_stock_tracking_lot #: model:ir.ui.menu,name:stock.menu_package #: model_terms:ir.ui.view,arch_db:stock.view_picking_form @@ -22379,9 +55801,10 @@ msgstr "" "包装通常是通过转移(在包装作业期间)创建的,可以包含不同的产品。 \n" " 创建完成后,整个包装可以立即调拨,或者产品可以拆开包装并再次作为单个单元调拨。" -#. modules: purchase, stock +#. modules: stock, purchase, stock_barcode #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_id #: model:ir.model.fields,field_description:stock.field_stock_move__product_packaging_id +#: model:ir.model.fields,field_description:stock_barcode.field_stock_move_line__product_packaging_id msgid "Packaging" msgstr "包装规格" @@ -22395,8 +55818,9 @@ msgstr "包装高度" msgid "Packaging Length" msgstr "包装长度" -#. module: purchase +#. modules: purchase, stock_barcode #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_qty +#: model:ir.model.fields,field_description:stock_barcode.field_stock_move_line__product_packaging_uom_qty msgid "Packaging Quantity" msgstr "包装规格数量" @@ -22417,11 +55841,30 @@ msgid "Packing Location" msgstr "包装位置" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #, python-format msgid "Packing Zone" msgstr "包装区域" +#. module: base +#. odoo-python +#: code:addons/base/models/ir_ui_view.py:0 +#: code:addons/base/models/ir_ui_view.py:0 +#, python-format +msgid "Page direct ancestor must be notebook" +msgstr "于页面直接上层必须是notebook" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__page_height +msgid "Page height (mm)" +msgstr "页高 (毫米)" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__page_width +msgid "Page width (mm)" +msgstr "页宽 (毫米)" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_move__payment_state__paid #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_nature__amount_paid @@ -22432,19 +55875,21 @@ msgid "Paid" msgstr "已支付" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "Paid Bills" -msgstr "已付账单" +msgstr "已支付账单" #. module: account +#. odoo-python #: code:addons/account/models/account_payment.py:0 #, python-format msgid "Paid Invoices" -msgstr "已付结算单" +msgstr "已支付结算单" #. module: account -#. openerp-web +#. odoo-javascript #: code:addons/account/static/src/components/account_payment_field/account_payment.xml:0 #: code:addons/account/static/src/xml/legacy_account_payment.xml:0 #: model_terms:ir.ui.view,arch_db:account.report_invoice_document @@ -22462,28 +55907,137 @@ msgstr "已付/已收" msgid "Paired Internal Transfer Payment" msgstr "成对内部转移支付" -#. module: stock +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "巴基斯坦" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pk +msgid "Pakistan - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pk_reports +msgid "Pakistan - Accounting Reports" +msgstr "" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "帛琉" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "巴拿马" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pa +msgid "Panama - Accounting" +msgstr "" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_report__paperformat_id +#: model:ir.ui.menu,name:base.paper_format_menuitem +msgid "Paper Format" +msgstr "纸张格式" + +#. module: base +#: model:ir.model,name:base.model_report_paperformat +msgid "Paper Format Config" +msgstr "纸张格式配置" + +#. module: base +#: model:ir.actions.act_window,name:base.paper_format_action +msgid "Paper Format General Configuration" +msgstr "纸张格式一般设置" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_company__paperformat_id +msgid "Paper format" +msgstr "纸张格式" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.paperformat_view_form +#: model_terms:ir.ui.view,arch_db:base.paperformat_view_tree +msgid "Paper format configuration" +msgstr "纸张格式设置" + +#. module: base +#: model:ir.model.fields,field_description:base.field_report_paperformat__format +msgid "Paper size" +msgstr "纸张尺寸" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_theme_paptic +msgid "Paptic Theme" +msgstr "" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "巴布亚新几内亚" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "巴拉圭" + +#. modules: stock, base +#: model:ir.ui.menu,name:base.menu_ir_property +#: model_terms:ir.ui.view,arch_db:base.ir_property_view +#: model_terms:ir.ui.view,arch_db:base.ir_property_view_search +#: model_terms:ir.ui.view,arch_db:base.ir_property_view_tree #: model_terms:ir.ui.view,arch_db:stock.view_procurement_compute_wizard msgid "Parameters" msgstr "参数" -#. module: account +#. module: base +#: model_terms:ir.ui.view,arch_db:base.ir_property_view_search +msgid "Parameters that are used by all resources." +msgstr "所有资源都使用的参数." + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_actions_client__params_store +msgid "Params storage" +msgstr "参数存储" + +#. modules: mail, base_import, account #: model:ir.model.fields,field_description:account.field_account_group__parent_id #: model:ir.model.fields,field_description:account.field_account_group_template__parent_id #: model:ir.model.fields,field_description:account.field_account_root__parent_id +#: model:ir.model.fields,field_description:base_import.field_base_import_tests_models_o2m_child__parent_id +#: model:ir.model.fields,field_description:mail.field_mail_message_subtype__parent_id msgid "Parent" msgstr "上级" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_module_category__parent_id +msgid "Parent Application" +msgstr "上级应用" + #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_bom_line__bom_id msgid "Parent BoM" msgstr "父级 BoM" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner_category__parent_id +msgid "Parent Category" +msgstr "上级品类" + #. module: account #: model:ir.model.fields,field_description:account.field_account_chart_template__parent_id msgid "Parent Chart Template" msgstr "上级表模板" +#. module: base +#: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__group_by_parent_id +#: model:ir.model.fields,field_description:base.field_res_company__parent_id +msgid "Parent Company" +msgstr "上级公司" + #. module: account #: model:ir.model.fields,field_description:account.field_account_report_line__parent_id msgid "Parent Line" @@ -22496,19 +56050,31 @@ msgstr "主线" msgid "Parent Location" msgstr "上级位置" -#. module: account +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__parent_id +#: model:ir.model.fields,field_description:base.field_wizard_ir_model_menu_create__menu_id +msgid "Parent Menu" +msgstr "上级菜单" + +#. modules: mail, account #: model:ir.model.fields,field_description:account.field_account_invoice_send__parent_id +#: model:ir.model.fields,field_description:mail.field_mail_compose_message__parent_id +#: model:ir.model.fields,field_description:mail.field_mail_mail__parent_id +#: model:ir.model.fields,field_description:mail.field_mail_message__parent_id msgid "Parent Message" msgstr "上级消息" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_parent_model_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_parent_model_id #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_parent_model_id msgid "Parent Model" msgstr "上级模型" -#. modules: account, stock +#. modules: stock, base, account #: model:ir.model.fields,field_description:account.field_account_group__parent_path +#: model:ir.model.fields,field_description:base.field_ir_ui_menu__parent_path +#: model:ir.model.fields,field_description:base.field_res_partner_category__parent_path #: model:ir.model.fields,field_description:stock.field_stock_location__parent_path msgid "Parent Path" msgstr "上级路径" @@ -22518,7 +56084,8 @@ msgstr "上级路径" msgid "Parent Product Template" msgstr "父产品模板" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,field_description:mail.field_mail_alias__alias_parent_thread_id #: model:ir.model.fields,field_description:maintenance.field_maintenance_equipment_category__alias_parent_thread_id #: model:ir.model.fields,field_description:quality.field_quality_alert_team__alias_parent_thread_id msgid "Parent Record Thread ID" @@ -22534,7 +56101,8 @@ msgstr "上级报告" msgid "Parent Wizard" msgstr "父向导" -#. modules: quality, maintenance +#. modules: mail, maintenance, quality +#: model:ir.model.fields,help:mail.field_mail_alias__alias_parent_model_id #: model:ir.model.fields,help:maintenance.field_maintenance_equipment_category__alias_parent_model_id #: model:ir.model.fields,help:quality.field_quality_alert_team__alias_parent_model_id msgid "" @@ -22545,12 +56113,36 @@ msgstr "" "父级模型拥有别名。拥有别名参考的模型不一定是alias_model_id给出的模型 (例如:project(parent_model) 和任务 " "(模型))" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__parent_name +#: model:ir.model.fields,field_description:base.field_res_users__parent_name +msgid "Parent name" +msgstr "上级名称" + +#. module: mail +#: model:ir.model.fields,help:mail.field_mail_message_subtype__parent_id +msgid "" +"Parent subtype, used for automatic subscription. This field is not correctly" +" named. For example on a project, the parent_id of project subtypes refers " +"to task-related subtypes." +msgstr "父类,用于自动订阅.这个字段没有正确的命名。例如在一个项目上,项目子类型的上一级ID指任务相关的子类型。" + +#. module: base +#: model:ir.module.module,summary:base.module_barcodes_gs1_nomenclature +msgid "Parse barcodes according to the GS1-128 specifications" +msgstr "依 GS1-128 规范解析条码" + #. modules: stock, account #: model:ir.model.fields.selection,name:stock.selection__procurement_group__move_type__direct #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Partial" msgstr "部分" +#. module: stock_barcode +#: model:ir.model.fields,field_description:stock_barcode.field_stock_backorder_confirmation__partial_move_count +msgid "Partial Move Count" +msgstr "部分移动计数" + #. module: account #: model:ir.model,name:account.model_account_partial_reconcile msgid "Partial Reconcile" @@ -22581,7 +56173,9 @@ msgstr "部分支付" msgid "Partially Received" msgstr "部分接受" -#. modules: purchase, stock, quality, quality_control, sf_base, account +#. modules: purchase, quality_control, account, quality, mail, base, sf_base, +#. stock +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #: model:ir.model.fields,field_description:account.field_account_analytic_line__partner_id #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__partner_id @@ -22589,6 +56183,10 @@ msgstr "部分接受" #: model:ir.model.fields,field_description:account.field_account_move__partner_id #: model:ir.model.fields,field_description:account.field_account_move_line__partner_id #: model:ir.model.fields,field_description:account.field_account_reconcile_model_partner_mapping__partner_id +#: model:ir.model.fields,field_description:base.field_res_company__partner_id +#: model:ir.model.fields,field_description:mail.field_mail_channel_rtc_session__partner_id +#: model:ir.model.fields,field_description:mail.field_mail_resend_partner__partner_id +#: model:ir.model.fields,field_description:mail.field_res_users_settings_volumes__partner_id #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__partner_id #: model:ir.model.fields,field_description:quality.field_quality_check__partner_id #: model:ir.model.fields,field_description:sf_base.field_sf_production_materials__partner_ids @@ -22599,6 +56197,7 @@ msgstr "部分接受" #: model_terms:ir.ui.view,arch_db:account.view_account_move_filter #: model_terms:ir.ui.view,arch_db:account.view_account_move_line_filter #: model_terms:ir.ui.view,arch_db:account.view_account_various_payment_tree +#: model_terms:ir.ui.view,arch_db:base.view_partner_address_form #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form #: model_terms:ir.ui.view,arch_db:stock.view_move_search #, python-format @@ -22610,6 +56209,11 @@ msgstr "业务伙伴" msgid "Partner Address" msgstr "业务伙伴地址" +#. module: base +#: model:ir.module.module,shortdesc:base.module_partner_autocomplete +msgid "Partner Autocomplete" +msgstr "合作伙伴自动完成" + #. module: account #: model:ir.model.fields,field_description:account.field_res_partner__contract_ids #: model:ir.model.fields,field_description:account.field_res_users__contract_ids @@ -22664,49 +56268,171 @@ msgstr "合作伙伴名称" msgid "Partner Process" msgstr "" +#. module: mail +#. odoo-python +#: code:addons/mail/models/res_partner.py:0 +#, python-format +msgid "Partner Profile" +msgstr "业务伙伴资料" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_resend_message__partner_readonly +msgid "Partner Readonly" +msgstr "业务合作伙伴只读" + +#. module: base +#: model:ir.model,name:base.model_res_partner_category +msgid "Partner Tags" +msgstr "合作伙伴标签" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "Partner Title" +msgstr "合作伙伴抬头" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_title_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_title_tree +msgid "Partner Titles" +msgstr "合作伙伴抬头" + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment__partner_type #: model:ir.model.fields,field_description:account.field_account_payment_register__partner_type msgid "Partner Type" msgstr "业务伙伴类型" +#. module: base +#: model:ir.model.fields,field_description:base.field_res_users__active_partner +msgid "Partner is Active" +msgstr "合作伙伴已启用" + +#. module: account +#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner +msgid "Partner is Set" +msgstr "业务伙伴应该被设定" + #. module: account #: model:ir.model,name:account.model_account_reconcile_model_partner_mapping msgid "Partner mapping for reconciliation models" msgstr "对账模型的业务伙伴映射" -#. module: account -#: model:ir.model.fields,field_description:account.field_account_reconcile_model__match_partner -msgid "Partner should be set" -msgstr "业务伙伴应该被设定" +#. module: base +#: model:ir.module.module,summary:base.module_website_partner +msgid "Partner module for website" +msgstr "网站的合作伙伴模块" -#. module: account +#. module: mail +#: model:ir.model,name:mail.model_mail_resend_partner +msgid "Partner with additional information for mail resend" +msgstr "为邮件重新发送提供附加信息的合作伙伴" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__same_company_registry_partner_id +#: model:ir.model.fields,field_description:base.field_res_users__same_company_registry_partner_id +msgid "Partner with same Company Registry" +msgstr "注册同一公司的合伙人" + +#. module: base +#: model:ir.model.fields,field_description:base.field_res_partner__same_vat_partner_id +#: model:ir.model.fields,field_description:base.field_res_users__same_vat_partner_id +msgid "Partner with same Tax ID" +msgstr "具有相同税务编号的合作伙伴" + +#. module: base +#: model:ir.model.fields,help:base.field_res_users__partner_id +msgid "Partner-related data of the user" +msgstr "用户的业务伙伴相关数据" + +#. modules: mail, base, account +#. odoo-python #: code:addons/account/models/partner.py:0 #: model:ir.model.fields,field_description:account.field_account_report__filter_partner +#: model:ir.model.fields,field_description:base.field_res_partner_category__partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_channel__channel_partner_ids #: model_terms:ir.ui.view,arch_db:account.view_partner_property_form +#: model_terms:ir.ui.view,arch_db:base.base_partner_merge_automatic_wizard_form +#: model_terms:ir.ui.view,arch_db:base.view_partner_form #, python-format msgid "Partners" msgstr "合作伙伴" +#. module: base +#: model:ir.module.module,shortdesc:base.module_base_geolocalize +msgid "Partners Geolocation" +msgstr "合作伙伴地理位置" + +#. module: mail +#: model:ir.model.fields,field_description:mail.field_mail_mail__notified_partner_ids +#: model:ir.model.fields,field_description:mail.field_mail_message__notified_partner_ids +msgid "Partners with Need Action" +msgstr "需要行动的业务伙伴" + +#. module: base +#. odoo-python +#: code:addons/base/models/res_partner.py:0 +#: code:addons/base/models/res_partner.py:0 +#, python-format +msgid "Partners: %(category)s" +msgstr "合作伙伴: %(category)s" + #. module: quality #: model:quality.reason,name:quality.reason_parts msgid "Parts Quality" msgstr "抽检" -#. modules: quality_mrp_workorder, quality_control +#. module: quality_control #: model:ir.model.fields.selection,name:quality_control.selection__quality_check__measure_success__pass #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_form #: model_terms:ir.ui.view,arch_db:quality_control.view_quality_check_wizard -#: model_terms:ir.ui.view,arch_db:quality_mrp_workorder.quality_check_view_form_tablet_inherit_quality msgid "Pass" msgstr "通过" -#. modules: quality, quality_control +#. modules: quality_control, quality #: model:ir.model.fields.selection,name:quality.selection__quality_check__quality_state__pass #: model_terms:ir.ui.view,arch_db:quality_control.quality_check_view_search msgid "Passed" msgstr "通过的" +#. modules: mail, base +#: model:ir.model.fields,field_description:base.field_ir_mail_server__smtp_pass +#: model:ir.model.fields,field_description:base.field_res_users__password +#: model:ir.model.fields,field_description:base.field_res_users_identitycheck__password +#: model:ir.model.fields,field_description:mail.field_fetchmail_server__password +msgid "Password" +msgstr "密码" + +#. module: base +#: model:ir.model,name:base.model_res_users_identitycheck +msgid "Password Check Wizard" +msgstr "密码检查向导" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.identity_check_wizard +msgid "Password Confirmation" +msgstr "确认密码" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif +msgid "Password Management" +msgstr "密码管理" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_password_policy +msgid "Password Policy" +msgstr "密码政策" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_auth_password_policy_portal +#: model:ir.module.module,shortdesc:base.module_auth_password_policy_signup +msgid "Password Policy support for Signup" +msgstr "注册的密码策略支持" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_password_security +msgid "Password Security" +msgstr "" + #. module: mrp #: model:ir.model.fields,help:mrp.field_mrp_routing_workcenter__worksheet_google_slide #: model:ir.model.fields,help:mrp.field_mrp_workorder__worksheet_google_slide @@ -22715,16 +56441,48 @@ msgid "" "public." msgstr "粘贴您的Google幻灯片的网址。 确保对文档的访问是公开的。" +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_logging__path +msgid "Path" +msgstr "路径" + +#. module: base +#: model:ir.model.fields,field_description:base.field_ir_asset__path +msgid "Path (or glob pattern)" +msgstr "路径(或全局模式)" + +#. module: base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#, python-format +msgid "Pattern to format" +msgstr "格式模式" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_tree_editable_view msgid "Pause" msgstr "暂停" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/delete_message_confirm/delete_message_confirm.xml:0 +#, python-format +msgid "" +"Pay attention: The followers of this document who were notified by email " +"will still be able to read the content of this message and reply to it." +msgstr "注意:收到邮件通知的本文档关注者仍然可以阅读此消息的内容并进行回复。" + #. module: account #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Pay your bills in one-click using Euro SEPA Service" msgstr "使用欧盟SEPA服务支付账单" +#. module: base +#: model:ir.module.module,summary:base.module_hr_payroll_account_sepa +msgid "Pay your employees with SEPA payment." +msgstr "" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_account__account_type__liability_payable #: model:ir.model.fields.selection,name:account.selection__account_account_template__account_type__liability_payable @@ -22749,16 +56507,28 @@ msgstr "应付限额" msgid "Payables" msgstr "应付" -#. module: account +#. modules: base, account +#. odoo-python #: code:addons/account/models/account_move.py:0 #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__payment_id #: model:ir.model.fields,field_description:account.field_account_move__payment_id #: model:ir.model.fields,field_description:account.field_account_payment__payment_id +#: model:ir.module.category,name:base.module_category_accounting_payment #: model_terms:ir.ui.view,arch_db:account.view_account_payment_search #, python-format msgid "Payment" msgstr "支付" +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_payment +msgid "Payment - Account" +msgstr "支付 - 会计" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_payment_invoice_online_payment_patch +msgid "Payment - Account / Invoice Online Payment Patch" +msgstr "付款-账户/发票在线付款修补程序" + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment_method_line__payment_account_id msgid "Payment Account" @@ -22800,6 +56570,16 @@ msgstr "付款差异" msgid "Payment Difference Handling" msgstr "付款差异处理" +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment +msgid "Payment Engine" +msgstr "支付引擎" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_account_followup +msgid "Payment Follow-up Management" +msgstr "" + #. module: account #: model:ir.model.fields,field_description:account.field_account_payment__payment_method_line_id #: model:ir.model.fields,field_description:account.field_account_payment_method_line__payment_method_id @@ -22822,7 +56602,107 @@ msgstr "付款方式:" #: model:ir.model,name:account.model_account_payment_method_line #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form msgid "Payment Methods" -msgstr "付款方式" +msgstr "支付方式" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_adyen +msgid "Payment Provider: Adyen" +msgstr "付款服务提供商:Adyen" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_alipay +msgid "Payment Provider: Alipay" +msgstr "付款服务提供商:支付宝" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_aps +msgid "Payment Provider: Amazon Payment Services" +msgstr "支付提供商:亚马逊支付服务" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_asiapay +msgid "Payment Provider: AsiaPay" +msgstr "支付提供商:Asia Pay" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_authorize +msgid "Payment Provider: Authorize.Net" +msgstr "付款服务提供商:Authorize.Net" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_buckaroo +msgid "Payment Provider: Buckaroo" +msgstr "付款服务提供商:Buckaroo" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_custom +msgid "Payment Provider: Custom Payment Modes" +msgstr "付款服务提供商:自定义付款模式" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_demo +msgid "Payment Provider: Demo" +msgstr "付款服务提供商:Demo" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_flutterwave +msgid "Payment Provider: Flutterwave" +msgstr "支付提供商:Flutterwave" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_mercado_pago +msgid "Payment Provider: Mercado Pago" +msgstr "支付提供商:Mercado Pago" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_mollie +msgid "Payment Provider: Mollie" +msgstr "付款服务提供商:Mollie" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_ogone +msgid "Payment Provider: Ogone" +msgstr "付款服务提供商:Ogone" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_payulatam +msgid "Payment Provider: PayU Latam" +msgstr "付款服务提供商:PayU Latam" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_payumoney +msgid "Payment Provider: PayUmoney" +msgstr "付款服务提供商:PayUmoney" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_paypal +msgid "Payment Provider: Paypal" +msgstr "付款服务提供商:Paypal" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_razorpay +msgid "Payment Provider: Razorpay" +msgstr "支付提供商:Razorpay" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_sepa_direct_debit +msgid "Payment Provider: Sepa Direct Debit" +msgstr "支付提供商:Sepa 直接借记" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_stripe +msgid "Payment Provider: Stripe" +msgstr "付款服务提供商:Stripe" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_payment_sips +msgid "Payment Provider: Worldline SIPS" +msgstr "付款服务提供商:Worldline SIPS" + +#. module: base +#: model:ir.module.category,name:base.module_category_accounting_payment_providers +msgid "Payment Providers" +msgstr "支付提供商" #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__qr_code_method @@ -22868,7 +56748,7 @@ msgstr "付款条款" msgid "Payment Term Details" msgstr "付款期限详情" -#. modules: account, purchase +#. modules: purchase, account #: model:ir.actions.act_window,name:account.action_payment_term_form #: model:ir.model,name:account.model_account_payment_term #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__invoice_payment_term_id @@ -22910,12 +56790,17 @@ msgstr "支付容忍度种类" msgid "Payment Type" msgstr "付款类型" +#. module: base +#: model:ir.module.module,summary:base.module_website_payment +msgid "Payment integration with website" +msgstr "支付与网站集成" + #. module: account #: model_terms:ir.ui.view,arch_db:account.view_payment_term_form msgid "Payment term explanation for the customer..." msgstr "对客户解释的付款条件..." -#. modules: account, purchase +#. modules: purchase, account #: model_terms:ir.ui.view,arch_db:account.view_move_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content msgid "Payment terms" @@ -22980,9 +56865,10 @@ msgstr "支付条件:立即支付" #. module: account #: model:mail.template,name:account.mail_template_data_payment_receipt msgid "Payment: Payment Receipt" -msgstr "付款:付款收据" +msgstr "支付:支付收据" #. module: account +#. odoo-python #: code:addons/account/wizard/account_payment_register.py:0 #: model:ir.actions.act_window,name:account.action_account_payments #: model:ir.actions.act_window,name:account.action_account_payments_payable @@ -23008,6 +56894,37 @@ msgstr "" "付款用来登记流动性的运动(付,收或者转 金钱)。\n" "然后您可以自己的方式,或者用安装的工具处理这些付款。" +#. module: base +#: model:ir.module.category,name:base.module_category_human_resources_payroll +#: model:ir.module.module,shortdesc:base.module_hr_payroll +msgid "Payroll" +msgstr "工资册" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_payroll_attendance +msgid "Payroll - Attendance" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_payroll_fleet +msgid "Payroll - Fleet" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_payroll_planning +msgid "Payroll - Planning" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_hr_payroll_account +msgid "Payroll Accounting" +msgstr "" + +#. module: base +#: model:ir.module.category,name:base.module_category_payroll_localization +msgid "Payroll Localization" +msgstr "工资册本地化" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_work_order_search #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_workorder_form_view_filter @@ -23019,6 +56936,13 @@ msgstr "待定" msgid "Pending checks" msgstr "等待中的检查" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "People & Body" +msgstr "人物与身体" + #. module: account #: model:ir.model.fields.selection,name:account.selection__account_payment_term_line__value__percent msgid "Percent" @@ -23034,6 +56958,7 @@ msgid "Percentage" msgstr "百分比" #. module: account +#. odoo-python #: code:addons/account/wizard/account_automatic_entry_wizard.py:0 #, python-format msgid "Percentage must be between 0 and 100" @@ -23068,10 +56993,11 @@ msgid "Percentage of statement line" msgstr "报表行的百分比" #. module: account +#. odoo-python #: code:addons/account/models/account_payment_term.py:0 #, python-format msgid "Percentages on the Payment Terms lines must be between 0 and 100." -msgstr "付款条件行的百分比必须介于0到100之间。" +msgstr "支付条件行的百分比必须介于0到100之间。" #. module: mrp #: model:ir.model.fields,field_description:mrp.field_mrp_workcenter__performance @@ -23105,12 +57031,83 @@ msgstr "期间比较" msgid "Periodically" msgstr "周期性" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/notification_request/notification_request.js:0 +#, python-format +msgid "Permission denied" +msgstr "没有权限" + +#. module: base +#: model:ir.module.category,name:base.module_category_theme_personal +msgid "Personal" +msgstr "" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "秘鲁" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pe +msgid "Peru - Accounting" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pe_edi_stock +msgid "Peruvian - Electronic Delivery Note" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_pe_edi_stock_20 +msgid "Peruvian - Electronic Delivery Note 2.0" +msgstr "" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "菲律宾" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_l10n_ph +msgid "Philippines - Accounting" +msgstr "菲律宾-会计" + +#. modules: mail, base +#. odoo-python +#: code:addons/base/models/ir_qweb_fields.py:0 +#: code:addons/base/models/ir_qweb_fields.py:0 +#: model:ir.model.fields,field_description:base.field_res_bank__phone +#: model:ir.model.fields,field_description:base.field_res_company__phone +#: model:ir.model.fields,field_description:mail.field_res_partner__phone +#: model:ir.model.fields,field_description:mail.field_res_users__phone +#: model_terms:ir.ui.view,arch_db:base.contact +#, python-format +msgid "Phone" +msgstr "电话" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_phone_validation +msgid "Phone Numbers Validation" +msgstr "电话号码验证" + +#. module: base +#: model_terms:ir.ui.view,arch_db:base.view_partner_form +msgid "Phone:" +msgstr "电话:" + +#. module: mail +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_type__category__phonecall +msgid "Phonecall" +msgstr "电话" + #. module: maintenance #: model:maintenance.equipment.category,name:maintenance.equipment_phone msgid "Phones" -msgstr "电话" +msgstr "轨道机械手" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_warehouse.py:0 #: model:ir.model.fields,field_description:stock.field_stock_backorder_confirmation__pick_ids #: model:ir.model.fields,field_description:stock.field_stock_immediate_transfer__pick_ids @@ -23119,10 +57116,11 @@ msgid "Pick" msgstr "拣货" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #, python-format msgid "Pick Components" -msgstr "捡取组件" +msgstr "拣取组件" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_warehouse__pick_type_id @@ -23130,10 +57128,11 @@ msgid "Pick Type" msgstr "拣货类型" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #, python-format msgid "Pick components and then manufacture" -msgstr "捡取组件并制造" +msgstr "拣取组件然后制造" #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__stock_warehouse__manufacture_steps__pbm @@ -23141,13 +57140,15 @@ msgid "Pick components and then manufacture (2 steps)" msgstr "拣取组件然后制造(2个步骤)" #. module: mrp +#. odoo-python #: code:addons/mrp/models/stock_warehouse.py:0 #: model:ir.model.fields.selection,name:mrp.selection__stock_warehouse__manufacture_steps__pbm_sam #, python-format msgid "Pick components, manufacture and then store products (3 steps)" msgstr "拣取组件制造,然后储存产品 (3 步)" -#. modules: quality, stock +#. modules: quality, stock, stock_barcode +#: model:ir.actions.act_window,name:stock_barcode.stock_picking_action_form #: model:ir.model.fields,field_description:quality.field_quality_alert__picking_id #: model:ir.model.fields,field_description:quality.field_quality_check__picking_id #: model:ir.model.fields,field_description:stock.field_lot_label_layout__picking_ids @@ -23175,6 +57176,11 @@ msgstr "制造前拣货作业类型" msgid "Picking Before Manufacturing Route" msgstr "在制造路线前拣货" +#. module: stock_barcode +#: model_terms:ir.ui.view,arch_db:stock_barcode.stock_picking_barcode +msgid "Picking Details" +msgstr "拣货明细" + #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search msgid "Picking Lists" @@ -23185,8 +57191,8 @@ msgstr "拣货清单" msgid "Picking Operations" msgstr "拣货作业" -#. module: stock -#: model:ir.model,name:stock.model_stock_picking_type +#. module: stock_barcode +#: model:ir.model,name:stock_barcode.model_stock_picking_type msgid "Picking Type" msgstr "拣货类型" @@ -23224,12 +57230,33 @@ msgid "Picture" msgstr "图片" #. module: quality_control +#. odoo-python #: code:addons/quality_control/models/quality.py:0 #: code:addons/quality_control/models/quality.py:0 #, python-format msgid "Picture Uploaded" msgstr "图片已上传" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#: code:addons/mail/static/src/models_data/emoji_data.js:0 +#, python-format +msgid "Pisces" +msgstr "双鱼座" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Islands" +msgstr "皮特肯群岛" + +#. module: base +#: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__pivot +#: model:ir.model.fields.selection,name:base.selection__ir_ui_view__type__pivot +msgid "Pivot" +msgstr "透视表" + #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_tree_view @@ -23246,11 +57273,23 @@ msgstr "安排订单" msgid "Plan manufacturing or purchase orders based on forecasts" msgstr "根据预测安排制造或采购订单" -#. module: mrp +#. module: base +#: model:ir.module.module,summary:base.module_project_forecast +msgid "Plan your resources on project tasks" +msgstr "" + +#. modules: mail, mrp +#. odoo-javascript +#: code:addons/mail/static/src/backend_components/activity_list_view/activity_list_view.xml:0 +#: code:addons/mail/static/src/js/views/activity/activity_renderer.js:0 +#: model:ir.model.fields.selection,name:mail.selection__mail_activity__state__planned +#: model:ir.model.fields.selection,name:mail.selection__mail_activity_mixin__activity_state__planned +#: model:ir.model.fields.selection,name:mail.selection__res_partner__activity_state__planned #: model_terms:ir.ui.view,arch_db:mrp.stock_production_type_kanban #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_filter +#, python-format msgid "Planned" -msgstr "已安排" +msgstr "已计划" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_workorder_form_view_inherit @@ -23262,24 +57301,49 @@ msgstr "计划开始时间" msgid "Planned Transfer" msgstr "计划的调拨" +#. module: mail +#. odoo-javascript +#: code:addons/mail/static/src/components/activity_box/activity_box.xml:0 +#, python-format +msgid "Planned activities" +msgstr "计划的活动" + #. module: mrp +#. odoo-python #: code:addons/mrp/models/mrp_workorder.py:0 #, python-format msgid "Planned at the same time as other workorder(s) at %s" -msgstr "与其他工单安排时间重复:%s" +msgstr "与 %s 的其它工单同时计划" -#. module: mrp +#. module: mail +#: model_terms:ir.ui.view,arch_db:mail.mail_activity_type_view_tree +msgid "Planned in" +msgstr "计划于" + +#. modules: mrp, base +#: model:ir.module.category,name:base.module_category_human_resources_planning +#: model:ir.module.module,shortdesc:base.module_planning #: model:ir.ui.menu,name:mrp.mrp_planning_menu_root #: model_terms:ir.ui.view,arch_db:mrp.res_config_settings_view_form msgid "Planning" msgstr "计划" +#. module: base +#: model:ir.module.module,shortdesc:base.module_planning_hr_skills +msgid "Planning - Skills" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_planning_contract +msgid "Planning Contract" +msgstr "" + #. module: stock -#. openerp-web +#. odoo-javascript #: code:addons/stock/static/src/widgets/stock_rescheduling_popover.xml:0 #, python-format msgid "Planning Issue" -msgstr "" +msgstr "规划问题" #. modules: stock, mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_filter @@ -23287,6 +57351,16 @@ msgstr "" msgid "Planning Issues" msgstr "计划问题" +#. module: base +#: model:ir.module.module,summary:base.module_planning_hr_skills +msgid "Planning Skills" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_planning_holidays +msgid "Planning Time Off" +msgstr "" + #. module: mrp_workorder #: model:ir.ui.menu,name:mrp_workorder.menu_mrp_workorder_production msgid "Planning by Production" @@ -23297,31 +57371,124 @@ msgstr "生产计划" msgid "Planning by Workcenter" msgstr "机台作业计划" +#. module: base +#: model:ir.module.module,summary:base.module_planning_contract +msgid "Planning integration with contracts" +msgstr "" + +#. module: base +#: model:ir.module.module,summary:base.module_planning_holidays +msgid "Planning integration with holidays" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_l10n_pt +msgid "Plano de contas SNC para Portugal" +msgstr "" + #. module: mrp -#: model:product.product,name:mrp.product_product_plastic_laminate #: model:product.template,name:mrp.product_product_plastic_laminate_product_template msgid "Plastic Laminate" -msgstr "塑料层压板" +msgstr "拉杆销" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Please add 'Done' quantities to the picking to create a new pack." msgstr "请在拣配中添加“完成”数量以创建新包装。" #. module: stock +#. odoo-python #: code:addons/stock/models/stock_picking.py:0 #, python-format msgid "Please add some items to move." msgstr "请添加一些项目到移动" #. module: account +#. odoo-python +#: code:addons/account/models/chart_template.py:0 +#, python-format +msgid "" +"Please check the fiscal country of company %s. (Settings > Accounting > " +"Fiscal Country)Taxes can only be updated if they are in the company's fiscal" +" country (%s) or the localization's country (%s)." +msgstr "请检查公司 %s 的财务国家。(设置 > 会计 > 财务国家) 只有在公司的财务国家 (%s) 或本地化国家 (%s) 中的税收才能更新。" + +#. module: account +#. odoo-python +#: code:addons/account/models/chart_template.py:0 +#, python-format +msgid "" +"Please check these taxes. They might be outdated. We did not update them. " +"Indeed, they do not exactly match the taxes of the original version of the " +"localization module.
    You might want to archive or adapt them.