From bcef6333ea68f3c5b6f009bcdc84b68ee567a658 Mon Sep 17 00:00:00 2001 From: Ian Date: Tue, 19 Aug 2025 10:10:51 -0700 Subject: [PATCH 001/320] [FIX] account: Update move ref when payment memo is changed Issue: In previous versions, the memo field of account payments and ref field of account move were related Now that payments do not required to have generated account move's when the memo is updated the ref remains unchanged. Purpose of this PR: To update the account move ref when the payment memo is updated. Steps to Reproduce on Runbot: install accounting go to bank account and assign outstanding accounts for manual payment methods create a payment -- a related account move should be created update the memo on the payment -- the ref on the related account move is unchanged. opw-4989260 closes odoo/odoo#223459 Signed-off-by: Habib Ayob (ayh) --- addons/account/models/account_payment.py | 9 +++++++-- addons/account/tests/test_account_payment.py | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/addons/account/models/account_payment.py b/addons/account/models/account_payment.py index f8b5d6c20a7b4f..8051a79c16d5c3 100644 --- a/addons/account/models/account_payment.py +++ b/addons/account/models/account_payment.py @@ -105,7 +105,7 @@ class AccountPayment(models.Model): ('customer', 'Customer'), ('supplier', 'Vendor'), ], default='customer', tracking=True, required=True) - memo = fields.Char(string="Memo", tracking=True) + memo = fields.Char(string="Memo", tracking=True, inverse='_inverse_memo') payment_reference = fields.Char(string="Payment Reference", copy=False, tracking=True, help="Reference of the document used to issue this payment. Eg. check number, file name, etc.") currency_id = fields.Many2one( @@ -817,11 +817,16 @@ def _fetch_duplicate_reference(self, matching_states=('draft', 'in_process')): # ONCHANGE METHODS # ------------------------------------------------------------------------- + def _inverse_memo(self): + for payment in self: + move = payment.move_id + if move: + move.ref = payment.memo + def _inverse_partner_id(self): # todo: remove in master pass - # ------------------------------------------------------------------------- # CONSTRAINT METHODS # ------------------------------------------------------------------------- diff --git a/addons/account/tests/test_account_payment.py b/addons/account/tests/test_account_payment.py index e0ab7fd25d6ebd..81ed25889edaa6 100644 --- a/addons/account/tests/test_account_payment.py +++ b/addons/account/tests/test_account_payment.py @@ -677,6 +677,25 @@ def test_payment_confirmation_with_bank_outstanding_account(self): payment.action_post() self.assertEqual(payment.state, 'paid') + def test_payment_memo_account_move_ref_inverse(self): + ''' Ensure that when the account payment's memo is updated, + the related account move's ref is also updated. + ''' + bank_journal = self.company_data['default_journal_bank'] + bank_journal.inbound_payment_method_line_ids.payment_account_id = self.inbound_payment_method_line.payment_account_id + payment = self.env['account.payment'].create({ + 'payment_type': 'inbound', + 'partner_type': 'customer', + 'partner_id': self.partner_a.id, + 'journal_id': bank_journal.id, + 'amount': 2629, + 'memo': 'Test Memo' + }) + payment.action_post() + payment.write({'memo': 'Updated Memo'}) + + self.assertEqual(payment.move_id.ref, payment.memo) + def test_payment_state_with_unreconciliable_outstanding_account(self): unreconciliable_account = self.env['account.account'].create({ 'code': '209.01.01', From 06f7c61d509683f365eb26d52241fc6b7c9025a1 Mon Sep 17 00:00:00 2001 From: pmah-odoo Date: Tue, 5 Aug 2025 17:42:34 +0530 Subject: [PATCH 002/320] [FIX] mail: reset thread's hasLoadingFailed flag after successful fetch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before this commit, if fetching a thread's messages failed once, the `hasLoadingFailed` flag remained true even after later successful fetches. This could cause the UI to show a failed state when it was no longer relevant. This commit resets `hasLoadingFailed` to false when a thread's messages are fetched successfully. closes odoo/odoo#222001 Signed-off-by: Alexandre Kühn (aku) --- addons/mail/static/src/core/common/thread_model.js | 1 + addons/mail/static/tests/discuss_app/discuss.test.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/addons/mail/static/src/core/common/thread_model.js b/addons/mail/static/src/core/common/thread_model.js index 1d4bee9bcda7a1..3b3ca3442accf6 100644 --- a/addons/mail/static/src/core/common/thread_model.js +++ b/addons/mail/static/src/core/common/thread_model.js @@ -677,6 +677,7 @@ export class Thread extends Record { try { const { data, messages } = await this.fetchMessagesData({ after, around, before }); this.store.insert(data, { html: true }); + this.hasLoadingFailed = false; return this.store.Message.insert(messages.reverse()); } catch (e) { this.hasLoadingFailed = true; diff --git a/addons/mail/static/tests/discuss_app/discuss.test.js b/addons/mail/static/tests/discuss_app/discuss.test.js index 7415256e954f1b..fe0ceceea30916 100644 --- a/addons/mail/static/tests/discuss_app/discuss.test.js +++ b/addons/mail/static/tests/discuss_app/discuss.test.js @@ -1889,6 +1889,8 @@ test("Retry loading more messages on failed load more messages should load more messageFetchShouldFail = false; await click("button", { text: "Click here to retry" }); await contains(".o-mail-Message", { count: 60 }); + await scroll(".o-mail-Thread", 0); + await contains(".o-mail-Message", { count: 90 }); }); test("composer state: attachments save and restore", async () => { From bbc8a63cfebf3f6335c8b70cd6e016d04c98219c Mon Sep 17 00:00:00 2001 From: bsra-odoo Date: Tue, 29 Jul 2025 05:40:19 +0000 Subject: [PATCH 003/320] [FIX] l10n_es_pos: fix blank screen when processing POS orders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Steps to Reproduce: - Install the l10n_es_pos module in version 18.0. - Navigate to Contacts. - Search for Simplified Invoice Partner (ES) and archive the record. - Open the Point of Sale (POS) and proceed to place an order. - Select a product. - Proceed to the payment screen. - Choose a payment method and click Validate. In version 18.0, when the user proceeds with placing an order, a blank screen appears without any error message, leading to confusion for the customer. This issue occurs because during the pos_load_data process, https://github.com/odoo/odoo/blob/cd4c1d599ea9403ce3791e239ad765d946446a47/addons/point_of_sale/models/pos_session.py#L181 while preparing the pos.config, the simplified_partner_id is fetched. However, the corresponding res.partner record is not included during the preparation of the res.partner model data, as the record is archived. As a result, when the system attempts to link the related partner record to pos.config.simplified_partner_id on the JavaScript side, https://github.com/odoo/odoo/blob/cd4c1d599ea9403ce3791e239ad765d946446a47/addons/point_of_sale/static/src/app/models/related_models.js#L1063-L1131 https://github.com/odoo/odoo/blob/cd4c1d599ea9403ce3791e239ad765d946446a47/addons/point_of_sale/static/src/app/models/related_models.js#L1114 the simplified_partner_id remains undefined. This eventually leads to an error when attempting to access simplified_partner_id.id https://github.com/odoo/odoo/blob/cd4c1d599ea9403ce3791e239ad765d946446a47/addons/l10n_es_pos/static/src/overrides/models/pos_store.js#L8 closes odoo/odoo#221150 Opw: 4953896 Signed-off-by: Stéphane Vanmeerhaeghe (stva) --- .../static/src/overrides/models/pos_store.js | 2 +- .../static/tests/tours/spanish_pos_tour.js | 13 +++++++++++++ addons/l10n_es_pos/tests/test_frontend.py | 5 +++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/addons/l10n_es_pos/static/src/overrides/models/pos_store.js b/addons/l10n_es_pos/static/src/overrides/models/pos_store.js index 8a20ec9f10f575..056ccf52161145 100644 --- a/addons/l10n_es_pos/static/src/overrides/models/pos_store.js +++ b/addons/l10n_es_pos/static/src/overrides/models/pos_store.js @@ -5,7 +5,7 @@ patch(PosStore.prototype, { getReceiptHeaderData(order) { const result = super.getReceiptHeaderData(...arguments); result.is_spanish = this.config.is_spanish; - result.simplified_partner_id = this.config.simplified_partner_id.id; + result.simplified_partner_id = this.config.simplified_partner_id?.id; if (order) { result.is_l10n_es_simplified_invoice = order.is_l10n_es_simplified_invoice; result.partner = order.get_partner(); diff --git a/addons/l10n_es_pos/static/tests/tours/spanish_pos_tour.js b/addons/l10n_es_pos/static/tests/tours/spanish_pos_tour.js index 35877372e29842..5a830bded158ef 100644 --- a/addons/l10n_es_pos/static/tests/tours/spanish_pos_tour.js +++ b/addons/l10n_es_pos/static/tests/tours/spanish_pos_tour.js @@ -90,3 +90,16 @@ registry.category("web_tour.tours").add("test_simplified_invoice_not_override_se ReceiptScreen.isShown(), ].flat(), }); + +registry.category("web_tour.tours").add("test_simplified_partner_inactive_case", { + steps: () => + [ + Chrome.startPoS(), + Dialog.confirm("Open Register"), + ProductScreen.addOrderline("Desk Pad", "1"), + ProductScreen.clickPayButton(), + PaymentScreen.clickPaymentMethod("Cash"), + PaymentScreen.clickValidate(), + ReceiptScreen.isShown(), + ].flat(), +}); diff --git a/addons/l10n_es_pos/tests/test_frontend.py b/addons/l10n_es_pos/tests/test_frontend.py index 526ee6e8db2c8c..00039d5b39ec68 100644 --- a/addons/l10n_es_pos/tests/test_frontend.py +++ b/addons/l10n_es_pos/tests/test_frontend.py @@ -153,3 +153,8 @@ def test_simplified_invoice_not_override_set_pricelist(self): self.start_tour("/pos/ui?config_id=%d" % self.main_pos_config.id, 'test_simplified_invoice_not_override_set_pricelist', login="pos_user") order = self.env['pos.order'].search([('partner_id', '=', self.main_pos_config.simplified_partner_id.id)]) self.assertNotEqual(order.pricelist_id, self.main_pos_config.simplified_partner_id.property_product_pricelist) + + def test_simplified_partner_inactive_case(self): + self.main_pos_config.simplified_partner_id.active = False + self.start_tour("/pos/ui?config_id=%d" % self.main_pos_config.id, + 'test_simplified_partner_inactive_case', login="pos_user") From 8c6a94291d169b3d659bf2ca86996e95851985e3 Mon Sep 17 00:00:00 2001 From: "Claire (clbr)" Date: Fri, 5 Sep 2025 14:44:05 +0200 Subject: [PATCH 004/320] [IMP] account_peppol: add help on some fields of the Peppol registration wizard. Give move information on what the registration information are used for. task-none closes odoo/odoo#225730 Signed-off-by: Florian Gilbert (flg) --- addons/account_peppol/models/res_company.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/account_peppol/models/res_company.py b/addons/account_peppol/models/res_company.py index 3b5e46fc9f1a78..5029757e2a8e24 100644 --- a/addons/account_peppol/models/res_company.py +++ b/addons/account_peppol/models/res_company.py @@ -52,13 +52,14 @@ class ResCompany(models.Model): account_peppol_contact_email = fields.Char( string='Primary contact email', compute='_compute_account_peppol_contact_email', store=True, readonly=False, - help='Primary contact email for Peppol-related communication', + help='Primary contact email for Peppol connection related communications and notifications.\n' + 'In particular, this email is used by Odoo to reconnect your Peppol account in case of database change.', ) account_peppol_migration_key = fields.Char(string="Migration Key") account_peppol_phone_number = fields.Char( string='Mobile number', compute='_compute_account_peppol_phone_number', store=True, readonly=False, - help='You will receive a verification code to this mobile number', + help='This number is used for identification purposes only.', ) account_peppol_proxy_state = fields.Selection( selection=[ From 23b64f672db2a8e83a2ecf4026c9c8effa707d7d Mon Sep 17 00:00:00 2001 From: krip-odoo Date: Mon, 1 Sep 2025 14:34:22 +0530 Subject: [PATCH 005/320] [FIX] account: prevent error when zero balance invoice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The system will crash with error when try to create a analytic item. Steps to Produce:- 1. Install the `Accounting` module with demo data. 2. Go to `Settings > enable Analytic Accounting`. 3. Navigate to `Accounting > Customers > Invoices`. 4. Create a new invoice with total amount = 0 and confirm it. 5. Go to Accounting > Accounting > Transactions > Analytic Items. 6. Create a new Analytic Item and: - Set a value in the `Project` field. - Under the `Accounting` section, select the `Journal Item` linked to the last created 0-amount invoice and save. Error:- `ZeroDivisionError: float division by zero` Cause:- - At [1], when line.balance is 0.0 (for example, when a journal item is defined with a total of 0.0), the system raises an error. Solution:- - Added a condition to compute only when line.balance exists; otherwise, set the value to 100. [1]: https://github.com/odoo/odoo/blob/dff2423ac320fdb97d6bf1f106dc84be1d71cac2/addons/account/models/account_move_line.py#L3248-L3251 sentry-6844926153 closes odoo/odoo#225068 Signed-off-by: William André (wan) --- addons/account/models/account_move_line.py | 1 + addons/account/tests/test_account_analytic.py | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/addons/account/models/account_move_line.py b/addons/account/models/account_move_line.py index e774f6f03bbb10..91e0d72299395a 100644 --- a/addons/account/models/account_move_line.py +++ b/addons/account/models/account_move_line.py @@ -3247,6 +3247,7 @@ def _update_analytic_distribution(self): for line in self: line.with_context(skip_analytic_sync=True).analytic_distribution = { analytic_line._get_distribution_key(): -analytic_line.amount / line.balance * 100 + if line.balance else 100 for analytic_line in line.analytic_line_ids } diff --git a/addons/account/tests/test_account_analytic.py b/addons/account/tests/test_account_analytic.py index 50b3c244e7450e..8e7ed1567e0b2a 100644 --- a/addons/account/tests/test_account_analytic.py +++ b/addons/account/tests/test_account_analytic.py @@ -765,6 +765,19 @@ def test_synchronization_between_analytic_distribution_and_analytic_lines(self): f"{self.analytic_account_2.id}": 60, }) + def test_zero_balance_invoice_with_analytic_line(self): + """ Test that creating an analytic line on a 0-amount invoice does not crash and updates analytic_distribution safely. """ + self.product_a.list_price = 0.0 + invoice = self.create_invoice(self.partner_a, self.product_a) + invoice.action_post() + self.env['account.analytic.line'].create({ + 'name': 'Zero Balance Test', + 'account_id': self.analytic_account_1.id, + 'amount': 33.0, + 'move_line_id': invoice.invoice_line_ids.id, + }) + self.assertEqual(invoice.invoice_line_ids.analytic_distribution, {f"{self.analytic_account_1.id}": 100.0}) + def test_analytic_dynamic_update(self): plan1 = self.analytic_account_1.plan_id._column_name() plan2 = self.analytic_account_3.plan_id._column_name() From 38e2d697a8a65086e867288c8b1d6d6cf08c008a Mon Sep 17 00:00:00 2001 From: "Levi Siuzdak (sile)" Date: Tue, 2 Sep 2025 11:58:21 +0200 Subject: [PATCH 006/320] [FIX] product: preserve aspect ratio in catalog Versions -------- - 18.0+ Steps ----- 1. Have products with non-square images available for sale; 2. open a quotation; 3. open the product catalog. Issue ----- The product images appear stretched. Cause ----- Commit e8836b42200e3 replaced the `div.kanban_image` element with a `field` element using the `image` widget. It maintained the same size limit of 55x55 via the widget's options, but without additional input, this causes the widget to stretch the images to fill the area. Solution -------- Add the `object-fit-contain` as `img_class` to the options. This class contains the image to the area instead of stretching it. opw-5007629 closes odoo/odoo#225112 Signed-off-by: Victor Feyens (vfe) --- addons/product/views/product_views.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/addons/product/views/product_views.xml b/addons/product/views/product_views.xml index b9c1d146f01dc3..3ead53339dfbe4 100644 --- a/addons/product/views/product_views.xml +++ b/addons/product/views/product_views.xml @@ -676,7 +676,14 @@ action = { groups="product.group_product_variant" options="{'color_field': 'color'}"/> - + From ac9c80c6d09ddd466655a4d4430547a044be05cb Mon Sep 17 00:00:00 2001 From: "Andrea Grazioso (agr-odoo)" Date: Fri, 11 Jul 2025 07:11:45 +0000 Subject: [PATCH 007/320] [FIX] l10n_es_modelo130: inconsistent filter date Currently mod130 report is configured to compute from the beginning of the fiscal period, however the date filter widget is in range mode. This means that when a user open the report and select a date range, the entries will not be just in the selected range but span from the beginning of the fiscal year to the end of the range, creating confusion. We should disable filter date range, so the date widget allow to set an end date to the current period opw-4933241 closes odoo/odoo#225235 X-original-commit: 77ef592f062075c53cdd05a81168529a641457f1 Related: odoo/enterprise#93755 Signed-off-by: Habib Ayob (ayh) Signed-off-by: Andrea Grazioso (agr) --- addons/l10n_es_modelo130/data/mod130.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/l10n_es_modelo130/data/mod130.xml b/addons/l10n_es_modelo130/data/mod130.xml index 9c4685328c52dd..20d6b1138f72c1 100644 --- a/addons/l10n_es_modelo130/data/mod130.xml +++ b/addons/l10n_es_modelo130/data/mod130.xml @@ -5,7 +5,7 @@ Tax Report(Mod 130) 130 - + From 3b6d387f301eaf1790692fb4234c30e40dcca841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gizard?= Date: Thu, 7 Aug 2025 14:45:43 +0200 Subject: [PATCH 008/320] [FIX] account: fix FEC imported entries not appearing in sale journal **PROBLEM** When importing a FEC files, moves are created with the `move_type` `entry`. They don't appear in the action of the journal of type `sale` when clicking on the dashboard. **STEP TO REPRODUCE** 1. on a local database install `l10n_fr_fec_import` (you need to import a FEC file given by our client, dont do it on the runbot please !) 2. select the french demo company 3. import the FEC file (accounting/settings/import a file) (for file, see [ticket](https://www.odoo.com/odoo/project/49/tasks/4848763) ) 4. goes in the dashboard, and click on the `Ventes Marchandises` journal. 5. notice the entries does not appear in the action. **CAUSE** When importing a FEC file, all moves are created with the `entry`. The domain for `sale` journal doesn't include the move of type `entry`. **FIX** Adding `entry` in the `sale` journal domain. opw-4848763 closes odoo/odoo#222208 Signed-off-by: Ali Alfie (alal) --- addons/account/models/account_journal_dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/models/account_journal_dashboard.py b/addons/account/models/account_journal_dashboard.py index e462c270b14f28..e69caeedef10d1 100644 --- a/addons/account/models/account_journal_dashboard.py +++ b/addons/account/models/account_journal_dashboard.py @@ -1032,7 +1032,7 @@ def open_action(self): action['domain'] = ast.literal_eval(action['domain'] or '[]') if not self._context.get('action_name'): if self.type == 'sale': - action['domain'] = [(domain_type_field, 'in', ('out_invoice', 'out_refund', 'out_receipt'))] + action['domain'] = [(domain_type_field, 'in', ('out_invoice', 'out_refund', 'out_receipt', 'entry'))] elif self.type == 'purchase': action['domain'] = [(domain_type_field, 'in', ('in_invoice', 'in_refund', 'in_receipt', 'entry'))] From 92e0fd3d424bcffcd2baaf2acd7065ec81b2e792 Mon Sep 17 00:00:00 2001 From: Paul Morelle Date: Tue, 2 Sep 2025 14:59:42 +0200 Subject: [PATCH 009/320] [ADD] base_setup,account: add model kpi.provider This commit introduces a new abstract model `kpi.provider` that allows different modules to contribute their Key Performance Indicators (KPIs) in a modular and extensible way. The `kpi.provider` model defines a base structure for KPI reporting and includes a `get_kpis_summary` method that should be overridden in inheriting models. This method is responsible for returning a list of KPI data specific to the module. KPI data are identified by a unique name and a type allowing for the caller to know how to present the corresponding value. The `account` module inherits from `kpi.provider` to include the amount of draft `account.move` for each `move_type`. closes odoo/odoo#225313 Task-id: 5062431 Forward-port-of: odoo/odoo#225153 Related: odoo/enterprise#93790 Signed-off-by: Brice Bartoletti (bib) --- addons/account/models/__init__.py | 1 + addons/account/models/kpi_provider.py | 29 +++++++++++ addons/account/tests/__init__.py | 1 + addons/account/tests/test_kpi_provider.py | 63 +++++++++++++++++++++++ addons/base_setup/models/__init__.py | 1 + addons/base_setup/models/kpi_provider.py | 25 +++++++++ 6 files changed, 120 insertions(+) create mode 100644 addons/account/models/kpi_provider.py create mode 100644 addons/account/tests/test_kpi_provider.py create mode 100644 addons/base_setup/models/kpi_provider.py diff --git a/addons/account/models/__init__.py b/addons/account/models/__init__.py index 7f25cc3139b901..859851405d5e88 100644 --- a/addons/account/models/__init__.py +++ b/addons/account/models/__init__.py @@ -33,6 +33,7 @@ from . import account_incoterms from . import decimal_precision from . import digest +from . import kpi_provider from . import res_users from . import ir_attachment from . import ir_actions_report diff --git a/addons/account/models/kpi_provider.py b/addons/account/models/kpi_provider.py new file mode 100644 index 00000000000000..bfee959f7b5ee7 --- /dev/null +++ b/addons/account/models/kpi_provider.py @@ -0,0 +1,29 @@ +from odoo import api, models + + +class KpiProvider(models.AbstractModel): + _inherit = 'kpi.provider' + + @api.model + def get_account_kpi_summary(self): + AccountMove = self.env['account.move'] + grouped_draft_moves = AccountMove._read_group([('state', '=', 'draft')], ['move_type'], ['move_type:count']) + + FieldsSelection = self.env['ir.model.fields.selection'].with_context(lang=self.env.user.lang) + move_type_names = {x.value: x.name for x in FieldsSelection.search([ + ('field_id.model', '=', 'account.move'), + ('field_id.name', '=', 'move_type'), + ])} + + return [{ + 'id': f'account_move_type.{move_type}', + 'name': move_type_names[move_type], + 'type': 'integer', + 'value': count, + } for move_type, count in grouped_draft_moves] + + @api.model + def get_kpi_summary(self): + result = super().get_kpi_summary() + result.extend(self.get_account_kpi_summary()) + return result diff --git a/addons/account/tests/__init__.py b/addons/account/tests/__init__.py index 657cbd3c5597d3..c90059f3f1a6bf 100644 --- a/addons/account/tests/__init__.py +++ b/addons/account/tests/__init__.py @@ -27,6 +27,7 @@ from . import test_digest from . import test_download_docs from . import test_fiscal_position +from . import test_kpi_provider from . import test_sequence_mixin from . import test_tax from . import test_taxes_base_lines_tax_details diff --git a/addons/account/tests/test_kpi_provider.py b/addons/account/tests/test_kpi_provider.py new file mode 100644 index 00000000000000..53c1d322a93286 --- /dev/null +++ b/addons/account/tests/test_kpi_provider.py @@ -0,0 +1,63 @@ +from odoo import Command +from odoo.tests import TransactionCase, tagged + + +@tagged('post_install', '-at_install') +class TestKpiProvider(TransactionCase): + + def test_kpi_summary(self): + """ + - Ensure that nothing is reported when there is nothing to report + - All in draft should be reported + - Posting one should reduce the number reported + - Posting all of a move_type should remove that move_type from the reporting + """ + # Clean things for the test + self.env['account.move'].search([('state', '=', 'draft')]).unlink() + self.assertCountEqual(self.env['kpi.provider'].get_account_kpi_summary(), []) + + company_id = self.ref('base.main_company') + account_id = self.env['account.account'].search([('company_ids', '=', company_id)], limit=1) + base_move = { + 'company_id': company_id, + 'line_ids': [Command.create({'account_id': account_id.id, 'quantity': 15, 'price_unit': 10})], + } + all_moves = self.env['account.move'].create( + [{**base_move, 'move_type': 'entry'}] * 2 + + [{**base_move, 'move_type': 'out_invoice'}] * 3 + + [{**base_move, 'move_type': 'out_refund'}] * 4 + + [{**base_move, 'move_type': 'in_invoice'}] * 5 + + [{**base_move, 'move_type': 'in_refund'}] * 6 + + [{**base_move, 'move_type': 'out_receipt'}] * 7 + + [{**base_move, 'move_type': 'in_receipt'}] * 8 + ) + self.assertCountEqual(self.env['kpi.provider'].get_account_kpi_summary(), [ + {'id': 'account_move_type.entry', 'name': 'Journal Entry', 'type': 'integer', 'value': 2}, + {'id': 'account_move_type.out_invoice', 'name': 'Customer Invoice', 'type': 'integer', 'value': 3}, + {'id': 'account_move_type.out_refund', 'name': 'Customer Credit Note', 'type': 'integer', 'value': 4}, + {'id': 'account_move_type.in_invoice', 'name': 'Vendor Bill', 'type': 'integer', 'value': 5}, + {'id': 'account_move_type.in_refund', 'name': 'Vendor Credit Note', 'type': 'integer', 'value': 6}, + {'id': 'account_move_type.out_receipt', 'name': 'Sales Receipt', 'type': 'integer', 'value': 7}, + {'id': 'account_move_type.in_receipt', 'name': 'Purchase Receipt', 'type': 'integer', 'value': 8}, + ]) + + all_moves[0].action_post() + self.assertCountEqual(self.env['kpi.provider'].get_account_kpi_summary(), [ + {'id': 'account_move_type.entry', 'name': 'Journal Entry', 'type': 'integer', 'value': 1}, + {'id': 'account_move_type.out_invoice', 'name': 'Customer Invoice', 'type': 'integer', 'value': 3}, + {'id': 'account_move_type.out_refund', 'name': 'Customer Credit Note', 'type': 'integer', 'value': 4}, + {'id': 'account_move_type.in_invoice', 'name': 'Vendor Bill', 'type': 'integer', 'value': 5}, + {'id': 'account_move_type.in_refund', 'name': 'Vendor Credit Note', 'type': 'integer', 'value': 6}, + {'id': 'account_move_type.out_receipt', 'name': 'Sales Receipt', 'type': 'integer', 'value': 7}, + {'id': 'account_move_type.in_receipt', 'name': 'Purchase Receipt', 'type': 'integer', 'value': 8}, + ]) + + all_moves[1].action_post() + self.assertCountEqual(self.env['kpi.provider'].get_account_kpi_summary(), [ + {'id': 'account_move_type.out_invoice', 'name': 'Customer Invoice', 'type': 'integer', 'value': 3}, + {'id': 'account_move_type.out_refund', 'name': 'Customer Credit Note', 'type': 'integer', 'value': 4}, + {'id': 'account_move_type.in_invoice', 'name': 'Vendor Bill', 'type': 'integer', 'value': 5}, + {'id': 'account_move_type.in_refund', 'name': 'Vendor Credit Note', 'type': 'integer', 'value': 6}, + {'id': 'account_move_type.out_receipt', 'name': 'Sales Receipt', 'type': 'integer', 'value': 7}, + {'id': 'account_move_type.in_receipt', 'name': 'Purchase Receipt', 'type': 'integer', 'value': 8}, + ]) diff --git a/addons/base_setup/models/__init__.py b/addons/base_setup/models/__init__.py index ce534721577cb5..b639ed0659740e 100644 --- a/addons/base_setup/models/__init__.py +++ b/addons/base_setup/models/__init__.py @@ -2,5 +2,6 @@ # Part of Odoo. See LICENSE file for full copyright and licensing details. from . import ir_http +from . import kpi_provider from . import res_config_settings from . import res_users diff --git a/addons/base_setup/models/kpi_provider.py b/addons/base_setup/models/kpi_provider.py new file mode 100644 index 00000000000000..4211916c589872 --- /dev/null +++ b/addons/base_setup/models/kpi_provider.py @@ -0,0 +1,25 @@ +from odoo import api, models + + +class KpiProvider(models.AbstractModel): + _name = 'kpi.provider' + _description = 'KPI Provider' + + @api.model + def get_kpi_summary(self): + """ + Other modules can override this method to add their own KPIs to the list. + This method will be called by the databases module to retrieve the data displayed on the databases list. + The return value shall be a list of dictionaries with the following keys: + + - id: a unique identifier for the KPI + - type: the type of data (`integer` or `return_status`) + - name: the translated name of the KPI, as displayable to the current user + - value: either the numeric value (for `type=integer`) or one of the statuses (for `type=return_status`): + - late one return of this type should have been done already + - longterm the deadline of the closest uncompleted return is in more than 3 months + - to_do the deadline of the closest uncompleted return is in less than 3 months + - to_submit the closest uncompleted return is ready, but still needs an action + - done all of the forseeable returns are completed + """ + return [] From b0296c88c777b8c9a7acc328e74804b82d9ce27a Mon Sep 17 00:00:00 2001 From: Odoo Translation Bot Date: Tue, 9 Sep 2025 18:57:04 +0000 Subject: [PATCH 010/320] [I18N] *: fetch translation updates --- addons/account/i18n/my.po | 26 +- addons/account_check_printing/i18n/my.po | 4 +- addons/account_debit_note/i18n/my.po | 4 +- addons/account_edi/i18n/cs.po | 28 +- addons/account_edi/i18n/my.po | 4 +- addons/account_edi_proxy_client/i18n/cs.po | 22 +- addons/account_fleet/i18n/cs.po | 22 +- addons/account_peppol/i18n/my.po | 6 +- addons/account_update_tax_tags/i18n/my.po | 4 +- addons/analytic/i18n/my.po | 4 +- addons/auth_passkey/i18n/my.po | 4 +- addons/auth_totp/i18n/my.po | 4 +- addons/auth_totp_mail/i18n/zh_CN.po | 19 +- addons/base_automation/i18n/cs.po | 12 +- addons/base_import/i18n/my.po | 4 +- addons/base_import_module/i18n/my.po | 4 +- addons/base_install_request/i18n/my.po | 4 +- addons/base_setup/i18n/my.po | 4 +- addons/calendar/i18n/my.po | 4 +- addons/calendar/i18n/ru.po | 4 +- addons/calendar/i18n/uk.po | 379 +++- addons/crm/i18n/my.po | 4 +- addons/crm_iap_mine/i18n/my.po | 8 +- addons/data_recycle/i18n/my.po | 4 +- addons/delivery/i18n/my.po | 4 +- addons/event/i18n/my.po | 6 +- addons/event_booth_sale/i18n/my.po | 6 +- addons/event_product/i18n/my.po | 4 +- addons/event_sale/i18n/my.po | 6 +- addons/fleet/i18n/my.po | 6 +- addons/gamification/i18n/my.po | 8 +- addons/google_calendar/i18n/my.po | 6 +- addons/hr/i18n/da.po | 19 +- addons/hr/i18n/my.po | 6 +- addons/hr_attendance/i18n/my.po | 6 +- addons/hr_contract/i18n/my.po | 4 +- addons/hr_expense/i18n/my.po | 8 +- addons/hr_gamification/i18n/my.po | 4 +- addons/hr_holidays/i18n/my.po | 10 +- addons/hr_holidays_attendance/i18n/my.po | 4 +- addons/hr_org_chart/i18n/my.po | 4 +- addons/hr_recruitment/i18n/my.po | 8 +- addons/hr_skills/i18n/my.po | 4 +- addons/hr_timesheet/i18n/my.po | 6 +- addons/hr_work_entry/i18n/my.po | 4 +- addons/hr_work_entry_contract/i18n/my.po | 6 +- addons/html_editor/i18n/my.po | 6 +- addons/iap/i18n/my.po | 4 +- addons/loyalty/i18n/my.po | 4 +- addons/loyalty/i18n/ru.po | 4 +- addons/lunch/i18n/my.po | 16 +- addons/mail/i18n/my.po | 14 +- addons/mail/i18n/nl.po | 4 +- addons/mail_bot/i18n/ru.po | 8 +- addons/mail_group/i18n/my.po | 6 +- addons/maintenance/i18n/my.po | 4 +- addons/marketing_card/i18n/my.po | 4 +- addons/mass_mailing/i18n/my.po | 12 +- addons/mass_mailing/i18n/ru.po | 2 +- addons/mass_mailing_sms/i18n/ko.po | 13 +- addons/mass_mailing_sms/i18n/my.po | 4 +- addons/mass_mailing_sms/i18n/ru.po | 6 +- addons/membership/i18n/my.po | 8 +- addons/microsoft_calendar/i18n/my.po | 6 +- addons/mrp/i18n/my.po | 20 +- addons/mrp_account/i18n/my.po | 6 +- addons/mrp_product_expiry/i18n/my.po | 4 +- addons/mrp_subcontracting/i18n/my.po | 6 +- .../i18n/my.po | 4 +- addons/onboarding/i18n/my.po | 4 +- addons/payment/i18n/my.po | 4 +- addons/payment/i18n/ru.po | 6 +- addons/payment_demo/i18n/my.po | 16 +- addons/payment_paypal/i18n/ru.po | 2 +- addons/phone_validation/i18n/my.po | 4 +- addons/point_of_sale/i18n/ko.po | 4 +- addons/point_of_sale/i18n/my.po | 12 +- addons/point_of_sale/i18n/sv.po | 21 +- addons/portal/i18n/my.po | 6 +- addons/pos_event/i18n/my.po | 4 +- addons/pos_hr/i18n/my.po | 6 +- addons/pos_sale/i18n/my.po | 4 +- addons/pos_self_order/i18n/my.po | 6 +- addons/product/i18n/my.po | 18 +- addons/product_email_template/i18n/my.po | 16 +- addons/product_expiry/i18n/my.po | 4 +- addons/product_images/i18n/my.po | 4 +- addons/product_margin/i18n/my.po | 6 +- addons/product_matrix/i18n/my.po | 4 +- addons/project/i18n/my.po | 10 +- addons/project_purchase/i18n/my.po | 4 +- addons/project_todo/i18n/my.po | 4 +- addons/purchase/i18n/my.po | 58 +- addons/purchase_mrp/i18n/my.po | 4 +- addons/purchase_product_matrix/i18n/my.po | 6 +- addons/purchase_requisition/i18n/my.po | 22 +- addons/purchase_requisition_stock/i18n/my.po | 6 +- addons/purchase_stock/i18n/my.po | 14 +- addons/repair/i18n/my.po | 10 +- addons/sale/i18n/my.po | 16 +- addons/sale_crm/i18n/my.po | 4 +- addons/sale_expense/i18n/my.po | 4 +- addons/sale_gelato/i18n/my.po | 4 +- addons/sale_loyalty/i18n/my.po | 4 +- addons/sale_pdf_quote_builder/i18n/my.po | 4 +- addons/sale_pdf_quote_builder/i18n/ru.po | 112 +- addons/sale_product_matrix/i18n/my.po | 4 +- addons/sale_project/i18n/my.po | 4 +- addons/sale_purchase/i18n/my.po | 6 +- addons/sale_purchase_stock/i18n/my.po | 4 +- addons/sale_stock/i18n/my.po | 8 +- addons/sale_timesheet/i18n/da.po | 20 +- addons/sale_timesheet/i18n/my.po | 8 +- addons/sales_team/i18n/my.po | 4 +- addons/sms/i18n/ko.po | 12 +- addons/sms/i18n/my.po | 6 +- addons/sms/i18n/ru.po | 92 +- addons/sms_twilio/i18n/ko.po | 51 +- addons/sms_twilio/i18n/ru.po | 132 +- addons/snailmail/i18n/my.po | 4 +- addons/spreadsheet/i18n/ko.po | 8 +- addons/spreadsheet/i18n/my.po | 20 +- .../spreadsheet_dashboard_account/i18n/my.po | 4 +- .../i18n/my.po | 4 +- .../i18n/my.po | 6 +- .../spreadsheet_dashboard_pos_hr/i18n/my.po | 8 +- .../i18n/my.po | 4 +- addons/spreadsheet_dashboard_sale/i18n/my.po | 6 +- .../i18n/my.po | 6 +- .../i18n/my.po | 4 +- .../i18n/my.po | 4 +- addons/stock/i18n/my.po | 32 +- addons/stock_account/i18n/my.po | 8 +- addons/stock_delivery/i18n/my.po | 10 +- addons/stock_landed_costs/i18n/my.po | 10 +- addons/stock_picking_batch/i18n/my.po | 8 +- addons/stock_sms/i18n/my.po | 4 +- addons/web/i18n/my.po | 18 +- addons/web_editor/i18n/my.po | 6 +- addons/website/i18n/lv.po | 4 +- addons/website/i18n/my.po | 10 +- addons/website_crm_iap_reveal/i18n/my.po | 4 +- addons/website_crm_partner_assign/i18n/my.po | 4 +- addons/website_event/i18n/my.po | 4 +- addons/website_event_booth_sale/i18n/my.po | 4 +- addons/website_event_meet/i18n/my.po | 4 +- addons/website_event_sale/i18n/my.po | 6 +- addons/website_forum/i18n/my.po | 4 +- addons/website_hr_recruitment/i18n/da.po | 11 +- addons/website_livechat/i18n/da.po | 20 +- addons/website_partner/i18n/da.po | 20 +- addons/website_sale/i18n/my.po | 10 +- addons/website_sale_collect/i18n/my.po | 4 +- addons/website_sale_gelato/i18n/my.po | 4 +- addons/website_sale_mondialrelay/i18n/my.po | 4 +- addons/website_sale_slides/i18n/my.po | 4 +- addons/website_sale_stock/i18n/my.po | 6 +- addons/website_sale_wishlist/i18n/my.po | 4 +- addons/website_slides/i18n/my.po | 8 +- odoo/addons/base/i18n/my.po | 10 +- odoo/addons/base/i18n/tr.po | 1945 +++++++++++------ 161 files changed, 2458 insertions(+), 1484 deletions(-) diff --git a/addons/account/i18n/my.po b/addons/account/i18n/my.po index e462a24d3ef297..fcf174ed3004b3 100644 --- a/addons/account/i18n/my.po +++ b/addons/account/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -3762,7 +3762,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account.view_account_payment_form #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form @@ -4713,7 +4713,7 @@ msgstr "" #: code:addons/account/models/chart_template.py:0 #: model:account.reconcile.model,name:account.1_reconcile_bill msgid "Create Bill" -msgstr "" +msgstr "ဘေလ် ဖွင့်" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_journal_form @@ -5959,7 +5959,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account.view_account_payment_register_form #: model_terms:ir.ui.view,arch_db:account.view_account_secure_entries_wizard msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: account #. odoo-python @@ -7363,7 +7363,7 @@ msgstr "" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_group_form msgid "From" -msgstr "" +msgstr "မှ" #. module: account #: model:ir.model.fields,field_description:account.field_base_document_layout__from_invoice @@ -9458,7 +9458,7 @@ msgstr "" #. module: account #: model_terms:ir.ui.view,arch_db:account.account_journal_dashboard_kanban_view msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_account_invoice_filter @@ -9618,7 +9618,7 @@ msgstr "" #. module: account #: model_terms:ir.ui.view,arch_db:account.view_move_form msgid "Lock" -msgstr "" +msgstr "သော့ခတ်" #. module: account #. odoo-python @@ -12340,7 +12340,7 @@ msgstr "" #. module: account #: model:ir.model.fields.selection,name:account.selection__account_reconcile_model__match_nature__amount_received msgid "Received" -msgstr "" +msgstr "ရရှိပြီး" #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__partner_bank_id @@ -12705,7 +12705,7 @@ msgstr "" #: model:ir.model.fields,field_description:account.field_digest_digest__kpi_account_total_revenue #: model:ir.model.fields.selection,name:account.selection__account_automatic_entry_wizard__account_type__income msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: account #: model:ir.model.fields,field_description:account.field_account_automatic_entry_wizard__revenue_accrual_account @@ -15942,7 +15942,7 @@ msgstr "" #: model:ir.model.fields,field_description:account.field_account_move_send_wizard__mail_partner_ids #: model_terms:ir.ui.view,arch_db:account.account_move_send_wizard_form msgid "To" -msgstr "" +msgstr "အထိ" #. module: account #: model:ir.model.fields,field_description:account.field_account_reconcile_model__to_check @@ -16038,7 +16038,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account.view_invoice_tree #: model_terms:ir.ui.view,arch_db:account.view_move_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: account #: model:ir.model.fields,field_description:account.field_account_bank_statement_line__quick_edit_total_amount @@ -16975,7 +16975,7 @@ msgstr "" #: model:ir.model.fields,field_description:account.field_account_secure_entries_wizard__warnings #: model_terms:ir.ui.view,arch_db:account.res_config_settings_view_form msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: account #: model:ir.model.fields,field_description:account.field_res_config_settings__group_warning_account @@ -17155,7 +17155,7 @@ msgstr "" #. odoo-javascript #: code:addons/account/static/src/components/account_batch_sending_summary/account_batch_sending_summary.xml:0 msgid "You are about to send" -msgstr "" +msgstr "သင် ပို့ရတော့မယ်" #. module: account #. odoo-python diff --git a/addons/account_check_printing/i18n/my.po b/addons/account_check_printing/i18n/my.po index 2b0fd6f173aff5..c18b2bead3f00c 100644 --- a/addons/account_check_printing/i18n/my.po +++ b/addons/account_check_printing/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -56,7 +56,7 @@ msgstr "ဘီလ်များ" #. module: account_check_printing #: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: account_check_printing #: model:ir.model.fields,field_description:account_check_printing.field_account_journal__bank_check_printing_layout diff --git a/addons/account_debit_note/i18n/my.po b/addons/account_debit_note/i18n/my.po index a41efc99a454c2..a0e823939f60c3 100644 --- a/addons/account_debit_note/i18n/my.po +++ b/addons/account_debit_note/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:39+0000\n" -"PO-Revision-Date: 2025-09-04 09:56+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -32,7 +32,7 @@ msgstr "" #. module: account_debit_note #: model_terms:ir.ui.view,arch_db:account_debit_note.view_account_debit_note msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: account_debit_note #: model:ir.model.fields,help:account_debit_note.field_account_journal__debit_sequence diff --git a/addons/account_edi/i18n/cs.po b/addons/account_edi/i18n/cs.po index fef311f0e1fb25..c230fce05f1025 100644 --- a/addons/account_edi/i18n/cs.po +++ b/addons/account_edi/i18n/cs.po @@ -1,42 +1,46 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_edi -# +# * account_edi +# # Translators: # Wil Odoo, 2024 # Vojtěch Olšan, 2025 -# +# +# Vojtěch Olšan , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Vojtěch Olšan, 2025\n" -"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: Vojtěch Olšan \n" +"Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"X-Generator: Weblate 5.12.2\n" #. module: account_edi #. odoo-python #: code:addons/account_edi/models/account_move.py:0 msgid "%(count)s Electronic invoicing error(s)" -msgstr "" +msgstr "%(count)s Chyb elektronické fakturace" #. module: account_edi #. odoo-python #: code:addons/account_edi/models/account_move.py:0 msgid "%(count)s Electronic invoicing info(s)" -msgstr "" +msgstr "%(count)s informací k elektronické fakturaci" #. module: account_edi #. odoo-python #: code:addons/account_edi/models/account_move.py:0 msgid "%(count)s Electronic invoicing warning(s)" -msgstr "" +msgstr "%(count)s varování elektronické fakturace" #. module: account_edi #. odoo-python @@ -206,7 +210,7 @@ msgstr "EDI zobrazit tlačítko pro zrušení starých záznamů" #: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button #: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button msgid "Edi Show Cancel Button" -msgstr "EDI zobrazit tlačítko zrušení" +msgstr "EDI zobrazit tlačítko zrušení" #. module: account_edi #: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_force_cancel_button diff --git a/addons/account_edi/i18n/my.po b/addons/account_edi/i18n/my.po index 120358f830bcaa..9481a182920399 100644 --- a/addons/account_edi/i18n/my.po +++ b/addons/account_edi/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-04 09:56+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -418,7 +418,7 @@ msgstr "" #: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send #: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send msgid "To Send" -msgstr "" +msgstr "ပို့ရန်" #. module: account_edi #: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning diff --git a/addons/account_edi_proxy_client/i18n/cs.po b/addons/account_edi_proxy_client/i18n/cs.po index 35115c13c7ae22..b1d47800b1bc26 100644 --- a/addons/account_edi_proxy_client/i18n/cs.po +++ b/addons/account_edi_proxy_client/i18n/cs.po @@ -1,23 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_edi_proxy_client -# +# * account_edi_proxy_client +# # Translators: # Wil Odoo, 2025 -# +# +# Vojtěch Olšan , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:36+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Wil Odoo, 2025\n" -"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: Vojtěch Olšan \n" +"Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"X-Generator: Weblate 5.12.2\n" #. module: account_edi_proxy_client #. odoo-python @@ -26,6 +30,8 @@ msgid "" "A user already exists with theses credentials on our server. Please check " "your information." msgstr "" +"Na našem serveru již existuje uživatel s těmito přihlašovacími údaji. " +"Zkontrolujte prosím své údaje." #. module: account_edi_proxy_client #: model:ir.model,name:account_edi_proxy_client.model_account_edi_proxy_client_user diff --git a/addons/account_fleet/i18n/cs.po b/addons/account_fleet/i18n/cs.po index 33654d82e1af58..a63f4ac5b4f24b 100644 --- a/addons/account_fleet/i18n/cs.po +++ b/addons/account_fleet/i18n/cs.po @@ -1,23 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_fleet -# +# * account_fleet +# # Translators: # Wil Odoo, 2024 -# +# +# Vojtěch Olšan , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Wil Odoo, 2024\n" -"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: Vojtěch Olšan \n" +"Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"X-Generator: Weblate 5.12.2\n" #. module: account_fleet #: model_terms:ir.ui.view,arch_db:account_fleet.fleet_vehicle_log_services_view_form @@ -34,7 +38,7 @@ msgstr "Účetní záznam" #. module: account_fleet #: model:ir.model.fields,field_description:account_fleet.field_fleet_vehicle_log_services__account_move_line_id msgid "Account Move Line" -msgstr "" +msgstr "Položka účetního záznamu" #. module: account_fleet #. odoo-python diff --git a/addons/account_peppol/i18n/my.po b/addons/account_peppol/i18n/my.po index 05a44431b19f21..6b354b328dd9d4 100644 --- a/addons/account_peppol/i18n/my.po +++ b/addons/account_peppol/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-25 18:39+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -197,7 +197,7 @@ msgstr "" #. module: account_peppol #: model_terms:ir.ui.view,arch_db:account_peppol.peppol_service_configuration msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: account_peppol #: model_terms:ir.ui.view,arch_db:account_peppol.account_peppol_view_move_form @@ -329,7 +329,7 @@ msgstr "" #. odoo-javascript #: code:addons/account_peppol/static/src/components/res_config_settings_buttons/res_config_settings_buttons.js:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: account_peppol #: model:ir.model.fields,field_description:account_peppol.field_account_peppol_service__display_name diff --git a/addons/account_update_tax_tags/i18n/my.po b/addons/account_update_tax_tags/i18n/my.po index c1257c055721c8..6cc2f5c17764a1 100644 --- a/addons/account_update_tax_tags/i18n/my.po +++ b/addons/account_update_tax_tags/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -42,7 +42,7 @@ msgstr "" #. module: account_update_tax_tags #: model_terms:ir.ui.view,arch_db:account_update_tax_tags.view_account_update_tax_tags_wizard_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: account_update_tax_tags #: model:ir.model.fields,field_description:account_update_tax_tags.field_account_update_tax_tags_wizard__display_lock_date_warning diff --git a/addons/analytic/i18n/my.po b/addons/analytic/i18n/my.po index 78afd321f5f3f1..46850d85bd36ca 100644 --- a/addons/analytic/i18n/my.po +++ b/addons/analytic/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-15 18:36+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -892,7 +892,7 @@ msgstr "" #. module: analytic #: model_terms:ir.ui.view,arch_db:analytic.view_account_analytic_line_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: analytic #: model:ir.model.fields.selection,name:analytic.selection__account_analytic_applicability__applicability__unavailable diff --git a/addons/auth_passkey/i18n/my.po b/addons/auth_passkey/i18n/my.po index f1180f9e1bab5d..9b4f5225170f7a 100644 --- a/addons/auth_passkey/i18n/my.po +++ b/addons/auth_passkey/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:40+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -48,7 +48,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:auth_passkey.auth_passkey_key_create_view_form #: model_terms:ir.ui.view,arch_db:auth_passkey.auth_passkey_key_rename msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: auth_passkey #: model_terms:ir.ui.view,arch_db:auth_passkey.auth_passkey_key_create_view_form diff --git a/addons/auth_totp/i18n/my.po b/addons/auth_totp/i18n/my.po index 7db7d88a030498..c2a623e14e0da7 100644 --- a/addons/auth_totp/i18n/my.po +++ b/addons/auth_totp/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:40+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -115,7 +115,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:auth_totp.auth_totp_form #: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: auth_totp #: model_terms:ir.ui.view,arch_db:auth_totp.view_totp_wizard diff --git a/addons/auth_totp_mail/i18n/zh_CN.po b/addons/auth_totp_mail/i18n/zh_CN.po index 59f68e84ed94c2..af9eff894f9a92 100644 --- a/addons/auth_totp_mail/i18n/zh_CN.po +++ b/addons/auth_totp_mail/i18n/zh_CN.po @@ -1,24 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * auth_totp_mail -# +# * auth_totp_mail +# # Translators: # Wil Odoo, 2024 # Chloe Wang, 2025 -# +# +# "Chloe Wang (chwa)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Chloe Wang, 2025\n" -"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: \"Chloe Wang (chwa)\" \n" +"Language-Team: Chinese (Simplified Han script) \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" #. module: auth_totp_mail #: model:mail.template,body_html:auth_totp_mail.mail_template_totp_invite @@ -79,7 +82,7 @@ msgstr "您的帐户中刚刚移除了一台受信任设备:%(device_names)s" #. odoo-python #: code:addons/auth_totp_mail/models/res_users.py:0 msgid "Account Security" -msgstr "帐户安全" +msgstr "账户安全" #. module: auth_totp_mail #: model:ir.model,name:auth_totp_mail.model_auth_totp_device diff --git a/addons/base_automation/i18n/cs.po b/addons/base_automation/i18n/cs.po index 8ce325f6a5d2d2..fe5151c6f44ff7 100644 --- a/addons/base_automation/i18n/cs.po +++ b/addons/base_automation/i18n/cs.po @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 12:50+0000\n" -"PO-Revision-Date: 2025-09-08 07:11+0000\n" -"Last-Translator: \"Marta (wacm)\" \n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: Vojtěch Olšan \n" "Language-Team: Czech \n" "Language: cs\n" @@ -47,8 +47,8 @@ msgid "" "\"On live update\" automation rules can only be used with \"Execute Python " "Code\" action type." msgstr "" -"\"On live update\" automatická pravidla mohou být použita pouze s akcí typu" -" \"Provést |Python kód\"." +"\"On live update\" automatická pravidla mohou být použita pouze s akcí typu " +"\"Provést |Python kód\"." #. module: base_automation #. odoo-javascript @@ -422,7 +422,7 @@ msgstr "Upravit automatické pravidlo" #. odoo-javascript #: code:addons/base_automation/static/src/base_automation_actions_one2many_field.js:0 msgid "Email" -msgstr "Email " +msgstr "Email" #. module: base_automation #. odoo-javascript @@ -505,6 +505,8 @@ msgid "" "If present, this condition must be satisfied before the update of the " "record. Not checked on record creation." msgstr "" +"Pokud je tato podmínka přítomna, musí být splněna před aktualizací záznamu. " +"Při vytváření záznamu se nekontroluje." #. module: base_automation #: model_terms:ir.ui.view,arch_db:base_automation.view_base_automation_form diff --git a/addons/base_import/i18n/my.po b/addons/base_import/i18n/my.po index 7a5b1940c9f643..8fe601851a9fa4 100644 --- a/addons/base_import/i18n/my.po +++ b/addons/base_import/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:48+0000\n" -"PO-Revision-Date: 2025-09-05 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -129,7 +129,7 @@ msgstr "" #. odoo-javascript #: code:addons/base_import/static/src/import_action/import_action.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: base_import #. odoo-javascript diff --git a/addons/base_import_module/i18n/my.po b/addons/base_import_module/i18n/my.po index b13cbb123b34cf..ca0fc1caede6dc 100644 --- a/addons/base_import_module/i18n/my.po +++ b/addons/base_import_module/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-11-19 15:46+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -44,7 +44,7 @@ msgstr "" #. module: base_import_module #: model_terms:ir.ui.view,arch_db:base_import_module.view_base_module_import msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: base_import_module #: model_terms:ir.ui.view,arch_db:base_import_module.view_base_module_import diff --git a/addons/base_install_request/i18n/my.po b/addons/base_install_request/i18n/my.po index 4a3854a29e1533..153130371ace46 100644 --- a/addons/base_install_request/i18n/my.po +++ b/addons/base_install_request/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-27 13:03+0000\n" -"PO-Revision-Date: 2025-09-05 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -60,7 +60,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:base_install_request.base_module_install_request_view_form #: model_terms:ir.ui.view,arch_db:base_install_request.base_module_install_review_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: base_install_request #: model:ir.model.fields,field_description:base_install_request.field_base_module_install_request__create_uid diff --git a/addons/base_setup/i18n/my.po b/addons/base_setup/i18n/my.po index 9d5856448b0173..a26483345b708e 100644 --- a/addons/base_setup/i18n/my.po +++ b/addons/base_setup/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -164,7 +164,7 @@ msgstr "" #. module: base_setup #: model_terms:ir.ui.view,arch_db:base_setup.res_config_settings_view_form msgid "Choose the layout of your documents" -msgstr "" +msgstr "သင့်စာရွက်၏ ပုံစံကို ရွေးချယ်ပါ" #. module: base_setup #: model:ir.model.fields,field_description:base_setup.field_res_config_settings__module_website_cf_turnstile diff --git a/addons/calendar/i18n/my.po b/addons/calendar/i18n/my.po index 76a7ef9fc6efcf..b99a132ac94621 100644 --- a/addons/calendar/i18n/my.po +++ b/addons/calendar/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -806,7 +806,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:calendar.calendar_popover_delete_view #: model_terms:ir.ui.view,arch_db:calendar.calendar_provider_config_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: calendar #: model:ir.model.fields,help:calendar.field_calendar_event__is_organizer_alone diff --git a/addons/calendar/i18n/ru.po b/addons/calendar/i18n/ru.po index be5944dd1a3c4f..e33ea9aa5a3e61 100644 --- a/addons/calendar/i18n/ru.po +++ b/addons/calendar/i18n/ru.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2025-08-15 16:55+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" @@ -1200,7 +1200,7 @@ msgstr "Весь день, %(day)s" #: code:addons/calendar/static/src/views/ask_recurrence_update_policy_dialog.js:0 #: model:ir.model.fields.selection,name:calendar.selection__calendar_event__recurrence_update__all_events msgid "All events" -msgstr "Все события" +msgstr "Все мероприятия" #. module: calendar #: model_terms:ir.ui.view,arch_db:calendar.view_calendar_event_form diff --git a/addons/calendar/i18n/uk.po b/addons/calendar/i18n/uk.po index c7b57e77e8c3e9..36a31f08cd37c2 100644 --- a/addons/calendar/i18n/uk.po +++ b/addons/calendar/i18n/uk.po @@ -1,24 +1,28 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * calendar -# +# * calendar +# # Translators: # Wil Odoo, 2024 -# Alina Lisnenko , 2024 -# +# Alina Lisnenko , 2024, 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Alina Lisnenko , 2024\n" -"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"PO-Revision-Date: 2025-09-09 08:28+0000\n" +"Last-Translator: Alina Lisnenko \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 " +"? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > " +"14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % " +"100 >=11 && n % 100 <=14 )) ? 2: 3);\n" +"X-Generator: Weblate 5.12.2\n" #. module: calendar #: model:ir.model.fields,field_description:calendar.field_res_partner__meeting_count @@ -172,6 +176,193 @@ msgid "" "\n" " " msgstr "" +"
\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" " +"\n" +" \n" +"\n" +"

\n" +" Hello Ready Mat,

" +"\n" +" \n" +" \n" +" Дату зустрічі з Jesse " +"Brown оновлено.\n" +" \n" +" \n" +" Вашу зустріч оновлено.\n" +" \n" +" Зустріч Schedule a Demo " +"заплановано на\n" +" 05/04/" +"2021 at (11:00:00 To 11:30:00) (Europe/Brussels)\n" +" \n" +" \n" +" Дату зустрічі з Colleen Diaz оновлено." +"\n" +" Зустріч заплановано на\n" +" 05/04/" +"2021 at (11:00:00 To 11:30:00) (Europe/Brussels).\n" +" \n" +" \n" +" Дату зустрічі оновлено.\n" +" Зустріч Follow-up " +"for Project proposal створена Colleen Diaz " +"запланована на\n" +" 05/04/" +"2021 at (11:00:00 To 11:30:00) (Europe/Brussels).\n" +" \n" +"

\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +" Tuesday\n" +"
\n" +"
\n" +" 4\n" +"
\n" +"
\n" +" May 2021\n" +"
\n" +"
\n" +" \n" +"
\n" +" 11:00 AM\n" +"
\n" +" \n" +"
" +"\n" +" (Europe/" +"Brussels)\n" +"
\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +"

Деталі події

\n" +"
    \n" +" \n" +"
  • Розташування: Bruxelles\n" +" (" +"Переглянути на карті)\n" +"
  • \n" +"
    \n" +" \n" +"
  • Коли: Every 1 Weeks, for 3 " +"events
  • \n" +"
    \n" +" \n" +"
  • Тривалість: 0H30
  • \n" +"
    \n" +"
  • Учасники\n" +"
      \n" +"
    • \n" +"
      \n" +" \n" +" Mitchell Admin\n" +" \n" +" \n" +" You\n" +" \n" +"
    • \n" +"
  • \n" +" \n" +"
  • \n" +" Як приєднатися:\n" +" Через " +"модуль Обговорення Odoo\n" +" За посиланням
    \n" +" " +"www.mycompany.com/calendar/join_videocall/xyz\n" +"
  • \n" +"
    \n" +" \n" +"
  • Опис події:\n" +" Внутрішня " +"зустріч для обговорення нового ціноутворення на продукти та послуги.
  • " +"\n" +"
    \n" +"
\n" +"
\n" +"
\n" +" Thank you,\n" +" \n" +"
\n" +" --
Mitchell Admin
\n" +"
\n" +"
\n" +" " #. module: calendar #: model:mail.template,body_html:calendar.calendar_template_meeting_invitation @@ -281,6 +472,170 @@ msgid "" "\n" " " msgstr "" +"
\n" +" \n" +" \n" +" \n" +" " +"\n" +" \n" +"\n" +"

\n" +" Вітаємо Wood Corner,
<" +"br/>\n" +"\n" +" \n" +" \n" +" Вас запросив клієнт на зустріч Follow-up for Project proposal.\n" +" \n" +" \n" +" Colleen Diaz запросила вас на зустріч Follow-up for Project proposal.\n" +" \n" +" \n" +" \n" +" Вашу зустріч Follow-" +"up for Project proposal заброньовано.\n" +" \n" +"\n" +"

\n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +" Tuesday\n" +"
\n" +"
\n" +" 4\n" +"
\n" +"
\n" +" May 2021\n" +"
\n" +"
\n" +" \n" +"
\n" +" 11:00 AM\n" +"
\n" +" \n" +"
" +"\n" +" (Europe/" +"Brussels)\n" +"
\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +"

Деталі події

\n" +"
    \n" +" \n" +"
  • Розташування: Bruxelles\n" +" (" +"View Map)\n" +"
  • \n" +"
    \n" +" \n" +"
  • Коли: Every 1 Weeks, for 3 " +"events
  • \n" +"
    \n" +" \n" +"
  • Тривалість: 0H30
  • \n" +"
    \n" +"
  • Учасники\n" +"
      \n" +"
    • \n" +"
      \n" +" \n" +" Mitchell Admin\n" +" \n" +" \n" +" You\n" +" \n" +"
    • \n" +"
  • \n" +" \n" +"
  • \n" +" Як підключитися:\n" +" Через " +"модуль Обговорення Odoo\n" +" За посиланням
    \n" +" " +"www.mycompany.com/calendar/join_videocall/xyz\n" +"
  • \n" +"
    \n" +" \n" +"
  • Опис події:\n" +" Внутрішня " +"зустріч для обговорення нового ціноутворення на продукти та послуги.
  • " +"\n" +"
    \n" +"
\n" +"
\n" +"
\n" +" Дякуємо,\n" +" \n" +"
\n" +" --
Mitchell Admin
\n" +"
\n" +"
\n" +" " #. module: calendar #: model:mail.template,body_html:calendar.calendar_template_meeting_update @@ -568,7 +923,7 @@ msgid "" "automatically mark as done when a document is uploaded" msgstr "" "Дії повинні запустити конкретну дію, таку як відкриття календаря або " -"автоматичне позначення як зроблено після завантаження документа." +"автоматичне позначення як зроблено після завантаження документа" #. module: calendar #: model:ir.model.fields,field_description:calendar.field_calendar_event__active @@ -1546,7 +1901,7 @@ msgstr "Останнє оновлення" #: model:ir.model.fields,field_description:calendar.field_res_partner__calendar_last_notif_ack #: model:ir.model.fields,field_description:calendar.field_res_users__calendar_last_notif_ack msgid "Last notification marked as read from base Calendar" -msgstr "Останнє повідомлення позначено як прочитане з базового календаря." +msgstr "Останнє повідомлення позначено як прочитане з базового календаря" #. module: calendar #: model:ir.model.fields,help:calendar.field_calendar_event__rrule_type @@ -1927,7 +2282,7 @@ msgstr "Правило повторення" #. module: calendar #: model:ir.model.fields,field_description:calendar.field_calendar_event__end_type msgid "Recurrence Termination" -msgstr "Термін дії " +msgstr "Термін дії" #. module: calendar #: model:ir.model.fields,field_description:calendar.field_calendar_event__recurrence_update diff --git a/addons/crm/i18n/my.po b/addons/crm/i18n/my.po index f5da20de89b41b..4753a66cdbd9d6 100644 --- a/addons/crm/i18n/my.po +++ b/addons/crm/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-02-10 13:22+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -740,7 +740,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:crm.view_crm_lead2opportunity_partner #: model_terms:ir.ui.view,arch_db:crm.view_crm_lead2opportunity_partner_mass msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: crm #: model_terms:ir.ui.view,arch_db:crm.crm_lost_reason_view_tree diff --git a/addons/crm_iap_mine/i18n/my.po b/addons/crm_iap_mine/i18n/my.po index 3371dc1386734f..ad1ed6ae24f66f 100644 --- a/addons/crm_iap_mine/i18n/my.po +++ b/addons/crm_iap_mine/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -104,7 +104,7 @@ msgstr "" #. module: crm_iap_mine #: model_terms:ir.ui.view,arch_db:crm_iap_mine.crm_iap_lead_mining_request_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: crm_iap_mine #: model:crm.iap.lead.industry,name:crm_iap_mine.crm_iap_mine_industry_162 @@ -296,7 +296,7 @@ msgstr "" #. module: crm_iap_mine #: model_terms:ir.ui.view,arch_db:crm_iap_mine.crm_iap_lead_mining_request_view_form msgid "From" -msgstr "" +msgstr "မှ" #. module: crm_iap_mine #. odoo-python @@ -598,7 +598,7 @@ msgstr "" #. module: crm_iap_mine #: model:crm.iap.lead.role,name:crm_iap_mine.crm_iap_mine_role_17 msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: crm_iap_mine #: model:crm.iap.lead.role,name:crm_iap_mine.crm_iap_mine_role_18 diff --git a/addons/data_recycle/i18n/my.po b/addons/data_recycle/i18n/my.po index 1c2170d79a00f6..6a85557b343842 100644 --- a/addons/data_recycle/i18n/my.po +++ b/addons/data_recycle/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -121,7 +121,7 @@ msgstr "" #. module: data_recycle #: model_terms:ir.ui.view,arch_db:data_recycle.view_data_recycle_record_list msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: data_recycle #: model_terms:ir.ui.view,arch_db:data_recycle.view_data_recycle_record_search diff --git a/addons/delivery/i18n/my.po b/addons/delivery/i18n/my.po index 496c8bb10fb986..f3f59ee1a7ee30 100644 --- a/addons/delivery/i18n/my.po +++ b/addons/delivery/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-27 13:03+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -367,7 +367,7 @@ msgstr "" #. module: delivery #: model_terms:ir.ui.view,arch_db:delivery.choose_delivery_carrier_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: delivery #: model:ir.model.fields,field_description:delivery.field_choose_delivery_carrier__display_name diff --git a/addons/event/i18n/my.po b/addons/event/i18n/my.po index ee10ffb990a6b7..abdb658504b50b 100644 --- a/addons/event/i18n/my.po +++ b/addons/event/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-27 13:03+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1455,7 +1455,7 @@ msgstr "" #. module: event #: model_terms:ir.ui.view,arch_db:event.view_event_registration_tree msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: event #: model_terms:ir.ui.view,arch_db:event.view_event_registration_form @@ -3956,7 +3956,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:event.event_event_ticket_view_tree_from_event #: model_terms:ir.ui.view,arch_db:event.view_event_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: event #: model_terms:ir.ui.view,arch_db:event.view_event_tree diff --git a/addons/event_booth_sale/i18n/my.po b/addons/event_booth_sale/i18n/my.po index 36444d32eaa1d2..fdd8d997126830 100644 --- a/addons/event_booth_sale/i18n/my.po +++ b/addons/event_booth_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -70,7 +70,7 @@ msgstr "" #. module: event_booth_sale #: model_terms:ir.ui.view,arch_db:event_booth_sale.event_booth_configurator_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: event_booth_sale #: model:ir.model.fields,field_description:event_booth_sale.field_sale_order_line__event_booth_ids @@ -346,7 +346,7 @@ msgstr "" #. module: event_booth_sale #: model_terms:ir.ui.view,arch_db:event_booth_sale.event_booth_view_tree_from_event msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: event_booth_sale #: model:ir.model.fields,help:event_booth_sale.field_sale_order_line__event_booth_pending_ids diff --git a/addons/event_product/i18n/my.po b/addons/event_product/i18n/my.po index d34eaa5a595da6..596a2b9f5a2ce5 100644 --- a/addons/event_product/i18n/my.po +++ b/addons/event_product/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-04 09:57+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -107,7 +107,7 @@ msgstr "" #: model:ir.model.fields,field_description:event_product.field_event_event_ticket__product_id #: model:ir.model.fields,field_description:event_product.field_event_type_ticket__product_id msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: event_product #: model:ir.model,name:event_product.model_product_product diff --git a/addons/event_sale/i18n/my.po b/addons/event_sale/i18n/my.po index a99a78c44ad4de..d7e12963015220 100644 --- a/addons/event_sale/i18n/my.po +++ b/addons/event_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -172,7 +172,7 @@ msgstr "ဖောက်သည်" #. module: event_sale #: model_terms:ir.ui.view,arch_db:event_sale.event_configurator_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: event_sale #: model:ir.model.fields,field_description:event_sale.field_event_event_configurator__display_name @@ -411,7 +411,7 @@ msgstr "" #: model:ir.model.fields,field_description:event_sale.field_event_sale_report__product_id #: model_terms:ir.ui.view,arch_db:event_sale.event_sale_report_view_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: event_sale #: model:ir.model.fields.selection,name:event_sale.selection__event_sale_report__sale_order_state__draft diff --git a/addons/fleet/i18n/my.po b/addons/fleet/i18n/my.po index 1f9bafbccd25fa..2b32a4d582bcd0 100644 --- a/addons/fleet/i18n/my.po +++ b/addons/fleet/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-11 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -377,7 +377,7 @@ msgstr "" #. module: fleet #: model_terms:ir.ui.view,arch_db:fleet.fleet_vehicle_send_mail_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: fleet #: model:ir.model.fields,field_description:fleet.field_fleet_vehicle__write_off_date @@ -2291,7 +2291,7 @@ msgstr "" #. module: fleet #: model_terms:ir.ui.view,arch_db:fleet.fleet_vehicle_log_services_view_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 diff --git a/addons/gamification/i18n/my.po b/addons/gamification/i18n/my.po index 1d7d7d47c42119..f0974437d4b072 100644 --- a/addons/gamification/i18n/my.po +++ b/addons/gamification/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:41+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -629,7 +629,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:gamification.view_badge_wizard_grant #: model_terms:ir.ui.view,arch_db:gamification.view_goal_wizard_update_current msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: gamification #: model:ir.model.fields.selection,name:gamification.selection__gamification_goal__state__canceled @@ -1033,7 +1033,7 @@ msgstr "" #. module: gamification #: model_terms:ir.ui.view,arch_db:gamification.goal_kanban_view msgid "From" -msgstr "" +msgstr "မှ" #. module: gamification #: model:ir.model.fields,field_description:gamification.field_gamification_goal_definition__full_suffix @@ -2400,7 +2400,7 @@ msgstr "" #: model:ir.model.fields,field_description:gamification.field_gamification_badge__granted_count #: model_terms:ir.ui.view,arch_db:gamification.gamification_karma_tracking_view_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: gamification #: model:ir.model,name:gamification.model_gamification_karma_tracking diff --git a/addons/google_calendar/i18n/my.po b/addons/google_calendar/i18n/my.po index 9cb674ac6ce003..2603153c59a80c 100644 --- a/addons/google_calendar/i18n/my.po +++ b/addons/google_calendar/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-18 18:38+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -93,7 +93,7 @@ msgstr "" #. module: google_calendar #: model_terms:ir.ui.view,arch_db:google_calendar.google_calendar_reset_account_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: google_calendar #: model_terms:ir.ui.view,arch_db:google_calendar.res_config_settings_view_form @@ -166,7 +166,7 @@ msgstr "" #. odoo-javascript #: code:addons/google_calendar/static/src/views/google_calendar/google_calendar_controller.js:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: google_calendar #: model:ir.model.fields,field_description:google_calendar.field_google_calendar_account_reset__display_name diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index b546fc3f746033..436c57b8cdd72c 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * hr -# +# * hr +# # Translators: # Pernille Kristensen , 2024 # Mads Søndergaard, 2024 @@ -12,20 +12,21 @@ # Sammi Iversen , 2025 # Wil Odoo, 2025 # Kira Petersen, 2025 -# +# "Kira Petersen François (peti)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:36+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Kira Petersen, 2025\n" -"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Kira Petersen François (peti)\" \n" +"Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" #. module: hr #: model:ir.model.fields,field_description:hr.field_res_company__hr_presence_control_email_amount @@ -3451,7 +3452,7 @@ msgstr "Gyldige IP adresser" #: model_terms:hr.job,website_description:hr.job_marketing #: model_terms:hr.job,website_description:hr.job_trainee msgid "Valid work permit for Belgium" -msgstr "Gyldig arbejdstilladelse i Belgien" +msgstr "Gyldig arbejdstilladelse til Belgien" #. module: hr #: model:ir.model.fields,field_description:hr.field_hr_employee__visa_expire diff --git a/addons/hr/i18n/my.po b/addons/hr/i18n/my.po index d4ad7f2d438564..cc74f1b80d8fdb 100644 --- a/addons/hr/i18n/my.po +++ b/addons/hr/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:36+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" "Language: my\n" @@ -662,7 +662,7 @@ msgstr "ပြင်နိုင်သည်" #. module: hr #: model_terms:ir.ui.view,arch_db:hr.view_users_simple_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr #: model:ir.model.fields,help:hr.field_hr_employee__employee_type @@ -1113,7 +1113,7 @@ msgstr "" #. module: hr #: model_terms:ir.ui.view,arch_db:hr.hr_departure_wizard_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr #: model_terms:hr.job,website_description:hr.job_ceo diff --git a/addons/hr_attendance/i18n/my.po b/addons/hr_attendance/i18n/my.po index 41de725950f21b..67d4fd88eee66d 100644 --- a/addons/hr_attendance/i18n/my.po +++ b/addons/hr_attendance/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-06-20 18:39+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1260,7 +1260,7 @@ msgstr "" #. module: hr_attendance #: model:ir.ui.menu,name:hr_attendance.menu_hr_attendance_view_attendances msgid "Overview" -msgstr "" +msgstr "ခြုံငုံသုံးသပ်ချက်" #. module: hr_attendance #. odoo-javascript @@ -1485,7 +1485,7 @@ msgstr "" #. odoo-javascript #: code:addons/hr_attendance/static/src/components/greetings/greetings.xml:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: hr_attendance #: model:ir.model.fields,field_description:hr_attendance.field_hr_employee__total_overtime diff --git a/addons/hr_contract/i18n/my.po b/addons/hr_contract/i18n/my.po index db778e1dbd6757..e9bf9ce37c7aa7 100644 --- a/addons/hr_contract/i18n/my.po +++ b/addons/hr_contract/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -561,7 +561,7 @@ msgstr "" #. module: hr_contract #: model_terms:ir.ui.view,arch_db:hr_contract.hr_contract_view_kanban msgid "From" -msgstr "" +msgstr "မှ" #. module: hr_contract #: model_terms:ir.ui.view,arch_db:hr_contract.hr_contract_view_form diff --git a/addons/hr_expense/i18n/my.po b/addons/hr_expense/i18n/my.po index 51acc5abe5b994..2a28e701dfc568 100644 --- a/addons/hr_expense/i18n/my.po +++ b/addons/hr_expense/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -420,7 +420,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:hr_expense.hr_expense_refuse_wizard_view_form #: model_terms:ir.ui.view,arch_db:hr_expense.hr_expense_split msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr_expense #: model:ir.model.fields,field_description:hr_expense.field_hr_expense_sheet__cannot_approve_reason @@ -1629,7 +1629,7 @@ msgstr "" #: model:ir.model,name:hr_expense.model_product_template #: model:ir.model.fields,field_description:hr_expense.field_hr_expense_split__product_id msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: hr_expense #: model:ir.model.fields,field_description:hr_expense.field_hr_expense__product_description @@ -2112,7 +2112,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:hr_expense.hr_expense_view_form #: model_terms:ir.ui.view,arch_db:hr_expense.report_expense_sheet msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: hr_expense #: model:ir.model.fields,field_description:hr_expense.field_hr_expense_split_wizard__total_amount_currency diff --git a/addons/hr_gamification/i18n/my.po b/addons/hr_gamification/i18n/my.po index 62e080df25e863..e8667c8c98f6d1 100644 --- a/addons/hr_gamification/i18n/my.po +++ b/addons/hr_gamification/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-05 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -71,7 +71,7 @@ msgstr "" #. module: hr_gamification #: model_terms:ir.ui.view,arch_db:hr_gamification.view_badge_wizard_reward msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr_gamification #: model:ir.actions.act_window,name:hr_gamification.challenge_list_action2 diff --git a/addons/hr_holidays/i18n/my.po b/addons/hr_holidays/i18n/my.po index 82688110b2384c..4c22d367ceae3a 100644 --- a/addons/hr_holidays/i18n/my.po +++ b/addons/hr_holidays/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1060,7 +1060,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:hr_holidays.hr_leave_view_form #: model_terms:ir.ui.view,arch_db:hr_holidays.view_hr_holidays_summary_employee msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr_holidays #. odoo-javascript @@ -1489,7 +1489,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:hr_holidays.hr_leave_allocation_generate_multi_wizard_view_form #: model_terms:ir.ui.view,arch_db:hr_holidays.hr_leave_generate_multi_wizard_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr_holidays #: model:ir.model.fields,field_description:hr_holidays.field_hr_holidays_cancel_leave__display_name @@ -1768,7 +1768,7 @@ msgstr "" #: model:ir.model.fields,field_description:hr_holidays.field_hr_leave_report_calendar__start_datetime #: model_terms:ir.ui.view,arch_db:hr_holidays.hr_leave_view_form msgid "From" -msgstr "" +msgstr "မှ" #. module: hr_holidays #: model:ir.model.fields,field_description:hr_holidays.field_hr_employee__leave_date_from @@ -2720,7 +2720,7 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_hr_holidays_dashboard msgid "Overview" -msgstr "" +msgstr "ခြုံငုံသုံးသပ်ချက်" #. module: hr_holidays #: model:hr.leave.type,name:hr_holidays.holiday_status_cl diff --git a/addons/hr_holidays_attendance/i18n/my.po b/addons/hr_holidays_attendance/i18n/my.po index c6e7510eb58e75..730818a1ece134 100644 --- a/addons/hr_holidays_attendance/i18n/my.po +++ b/addons/hr_holidays_attendance/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-02-06 14:58+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -67,7 +67,7 @@ msgstr "" #. module: hr_holidays_attendance #: model_terms:ir.ui.view,arch_db:hr_holidays_attendance.hr_leave_allocation_overtime_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr_holidays_attendance #: model:hr.leave.type,name:hr_holidays_attendance.holiday_status_extra_hours diff --git a/addons/hr_org_chart/i18n/my.po b/addons/hr_org_chart/i18n/my.po index 3852972c4cc953..cbbad3db8d01af 100644 --- a/addons/hr_org_chart/i18n/my.po +++ b/addons/hr_org_chart/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -186,7 +186,7 @@ msgstr "" #. odoo-javascript #: code:addons/hr_org_chart/static/src/fields/hr_org_chart.xml:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: hr_org_chart #. odoo-javascript diff --git a/addons/hr_recruitment/i18n/my.po b/addons/hr_recruitment/i18n/my.po index d24058af77a02b..aad5fb5926d2c2 100644 --- a/addons/hr_recruitment/i18n/my.po +++ b/addons/hr_recruitment/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -914,7 +914,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:hr_recruitment.applicant_send_mail_view_form #: model_terms:ir.ui.view,arch_db:hr_recruitment.candidate_send_mail_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_candidate @@ -1265,7 +1265,7 @@ msgstr "" #. module: hr_recruitment #: model_terms:ir.ui.view,arch_db:hr_recruitment.hr_job_simple_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr_recruitment #: model:res.groups,name:hr_recruitment.group_applicant_cv_display @@ -3348,7 +3348,7 @@ msgstr "" #. module: hr_recruitment #: model_terms:ir.ui.view,arch_db:hr_recruitment.hr_candidate_view_search msgid "Waiting" -msgstr "" +msgstr "စောင့်ဆိုင်း" #. module: hr_recruitment #: model_terms:ir.actions.act_window,help:hr_recruitment.action_hr_job_sources diff --git a/addons/hr_skills/i18n/my.po b/addons/hr_skills/i18n/my.po index a12ffee91c4f9b..b6e1529248d420 100644 --- a/addons/hr_skills/i18n/my.po +++ b/addons/hr_skills/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-07 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -467,7 +467,7 @@ msgstr "" #. module: hr_skills #: model_terms:ir.ui.view,arch_db:hr_skills.hr_employee_cv_wizard_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr_skills #: model_terms:ir.ui.view,arch_db:hr_skills.hr_employee_skill_type_view_form diff --git a/addons/hr_timesheet/i18n/my.po b/addons/hr_timesheet/i18n/my.po index ed3c2915b6eb52..7dd3c34128dad0 100644 --- a/addons/hr_timesheet/i18n/my.po +++ b/addons/hr_timesheet/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -433,7 +433,7 @@ msgstr "" #. module: hr_timesheet #: model_terms:ir.ui.view,arch_db:hr_timesheet.hr_employee_delete_wizard_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: hr_timesheet #: model:ir.model.fields,field_description:hr_timesheet.field_hr_employee_delete_wizard__display_name @@ -1252,7 +1252,7 @@ msgstr "ယနေ့" #: model_terms:ir.ui.view,arch_db:hr_timesheet.hr_timesheet_line_tree #: model_terms:ir.ui.view,arch_db:hr_timesheet.timesheets_analysis_report_list msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: hr_timesheet #: model_terms:ir.ui.view,arch_db:hr_timesheet.project_sharing_inherit_project_task_view_form diff --git a/addons/hr_work_entry/i18n/my.po b/addons/hr_work_entry/i18n/my.po index e8ee9612135c31..bdecd4182b3e86 100644 --- a/addons/hr_work_entry/i18n/my.po +++ b/addons/hr_work_entry/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:48+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -192,7 +192,7 @@ msgstr "" #. module: hr_work_entry #: model:ir.model.fields,field_description:hr_work_entry.field_hr_work_entry__date_start msgid "From" -msgstr "" +msgstr "မှ" #. module: hr_work_entry #: model:ir.model,name:hr_work_entry.model_hr_work_entry diff --git a/addons/hr_work_entry_contract/i18n/my.po b/addons/hr_work_entry_contract/i18n/my.po index db2ae91e47a908..77192fbd5c1fad 100644 --- a/addons/hr_work_entry_contract/i18n/my.po +++ b/addons/hr_work_entry_contract/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-04 09:57+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -74,7 +74,7 @@ msgstr "" #. module: hr_work_entry_contract #: model_terms:ir.ui.view,arch_db:hr_work_entry_contract.hr_work_entry_regeneration_wizard msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: hr_work_entry_contract #: model:hr.work.entry.type,name:hr_work_entry_contract.work_entry_type_compensatory @@ -141,7 +141,7 @@ msgstr "" #. module: hr_work_entry_contract #: model:ir.model.fields,field_description:hr_work_entry_contract.field_hr_work_entry_regeneration_wizard__date_from msgid "From" -msgstr "" +msgstr "မှ" #. module: hr_work_entry_contract #: model_terms:ir.ui.view,arch_db:hr_work_entry_contract.hr_contract_view_form_inherit_work_entry diff --git a/addons/html_editor/i18n/my.po b/addons/html_editor/i18n/my.po index dc4cce22b98b55..7fdeecd5758172 100644 --- a/addons/html_editor/i18n/my.po +++ b/addons/html_editor/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-14 20:47+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -341,7 +341,7 @@ msgstr "" #: code:addons/html_editor/static/src/main/chatgpt/chatgpt_translate_dialog.xml:0 #: code:addons/html_editor/static/src/others/embedded_components/plugins/video_plugin/video_selector_dialog/video_selector_dialog.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: html_editor #. odoo-javascript @@ -526,7 +526,7 @@ msgstr "" #: code:addons/html_editor/static/src/main/media/image_description.xml:0 #: code:addons/html_editor/static/src/main/media/media_dialog/media_dialog.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: html_editor #. odoo-javascript diff --git a/addons/iap/i18n/my.po b/addons/iap/i18n/my.po index 64d8c97228c91d..6043a65782fc15 100644 --- a/addons/iap/i18n/my.po +++ b/addons/iap/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-04 09:56+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -70,7 +70,7 @@ msgstr "" #. odoo-javascript #: code:addons/iap/static/src/xml/iap_templates.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: iap #: model:ir.model.fields,field_description:iap.field_iap_account__company_ids diff --git a/addons/loyalty/i18n/my.po b/addons/loyalty/i18n/my.po index 18b40b6f9ef868..28dcd4cf61eb24 100644 --- a/addons/loyalty/i18n/my.po +++ b/addons/loyalty/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-18 18:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -514,7 +514,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:loyalty.loyalty_card_update_balance_form #: model_terms:ir.ui.view,arch_db:loyalty.loyalty_generate_wizard_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: loyalty #: model:ir.model.fields,field_description:loyalty.field_loyalty_card_update_balance__card_id diff --git a/addons/loyalty/i18n/ru.po b/addons/loyalty/i18n/ru.po index b99bbac9b1ec20..d35d77c07833fc 100644 --- a/addons/loyalty/i18n/ru.po +++ b/addons/loyalty/i18n/ru.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-18 18:39+0000\n" -"PO-Revision-Date: 2025-09-04 16:45+0000\n" +"PO-Revision-Date: 2025-09-09 08:28+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" @@ -2224,7 +2224,7 @@ msgid "" "%(customer_number)i customers" msgstr "" "Вы собираетесь сгенерировать %(program_type)s со значением %(value)s для " -"%(customer_number)i клиентов" +"клиентов %(customer_number)i" #. module: loyalty #: model:mail.template,subject:loyalty.mail_template_gift_card diff --git a/addons/lunch/i18n/my.po b/addons/lunch/i18n/my.po index 6910f54234c9c9..fcf0433b4b1b9a 100644 --- a/addons/lunch/i18n/my.po +++ b/addons/lunch/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:36+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -438,7 +438,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_kanban #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: lunch #: model:ir.model.fields.selection,name:lunch.selection__lunch_order__state__cancelled @@ -678,7 +678,7 @@ msgstr "" #. module: lunch #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: lunch #: model:ir.model.fields,field_description:lunch.field_lunch_alert__mode @@ -1041,7 +1041,7 @@ msgstr "နေရာ အမည်" #. module: lunch #: model:ir.ui.menu,name:lunch.lunch_location_menu msgid "Locations" -msgstr "" +msgstr "နေရာများ" #. module: lunch #: model:ir.module.category,name:lunch.module_lunch_category @@ -1462,7 +1462,7 @@ msgstr "" #: model:ir.model.fields,field_description:lunch.field_lunch_order__order_deadline_passed #: model:ir.model.fields,field_description:lunch.field_lunch_supplier__order_deadline_passed msgid "Order Deadline Passed" -msgstr "" +msgstr "အော်ဒါသက်တမ်း ကျော်ခဲ့ပြီ" #. module: lunch #. odoo-javascript @@ -1583,7 +1583,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search #: model_terms:ir.ui.view,arch_db:lunch.lunch_product_view_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: lunch #: model:ir.model.fields,field_description:lunch.field_lunch_product__is_available_at @@ -1677,7 +1677,7 @@ msgstr "" #: model:ir.model.fields.selection,name:lunch.selection__lunch_order__state__confirmed #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_search msgid "Received" -msgstr "" +msgstr "ရရှိပြီး" #. module: lunch #: model_terms:ir.ui.view,arch_db:lunch.res_config_settings_view_form @@ -2067,7 +2067,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:lunch.lunch_cashmove_view_tree #: model_terms:ir.ui.view,arch_db:lunch.lunch_order_view_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: lunch #: model:ir.model.fields,field_description:lunch.field_lunch_order__price diff --git a/addons/mail/i18n/my.po b/addons/mail/i18n/my.po index 81b7f100587a84..6e993291e9c6f4 100644 --- a/addons/mail/i18n/my.po +++ b/addons/mail/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-22 18:38+0000\n" -"PO-Revision-Date: 2025-09-07 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -1821,7 +1821,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mail.mail_template_view_form_confirm_delete #: model_terms:ir.ui.view,arch_db:mail.view_mail_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: mail #: model_terms:ir.ui.view,arch_db:mail.view_mail_tree @@ -3015,7 +3015,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mail.mail_scheduled_message_view_form #: model_terms:ir.ui.view,arch_db:mail.mail_wizard_invite_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mail #. odoo-javascript @@ -4086,7 +4086,7 @@ msgstr "" #: 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 msgid "From" -msgstr "" +msgstr "မှ" #. module: mail #: model:ir.model.fields,field_description:mail.field_discuss_channel__from_message_id @@ -5340,7 +5340,7 @@ msgstr "" #. odoo-javascript #: code:addons/mail/static/src/core/web/activity_menu.xml:0 msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: mail #: model_terms:ir.ui.view,arch_db:mail.res_partner_view_search_inherit_mail @@ -7780,7 +7780,7 @@ msgstr "" #: model:ir.model.fields.selection,name:mail.selection__mail_mail__state__received #: model_terms:ir.ui.view,arch_db:mail.view_mail_search msgid "Received" -msgstr "" +msgstr "ရရှိပြီး" #. module: mail #. odoo-javascript @@ -9725,7 +9725,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mail.email_compose_message_wizard_form #: model_terms:ir.ui.view,arch_db:mail.mail_scheduled_message_view_form msgid "To" -msgstr "" +msgstr "သို့" #. module: mail #: model:ir.model.fields,field_description:mail.field_mail_template__email_to diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index cbce4a4fcea8a1..dbcadd725fa958 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-22 18:38+0000\n" -"PO-Revision-Date: 2025-08-19 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: \"Manon Rondou (ronm)\" \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -3783,7 +3783,7 @@ msgstr "Emoji" #: code:addons/mail/static/src/core/common/composer.xml:0 #: code:addons/mail/static/src/views/web/fields/emojis_field_common/emojis_field_common.xml:0 msgid "Emojis" -msgstr "Emojis" +msgstr "Emoji's" #. module: mail #: model:ir.model.fields,field_description:mail.field_mail_mail__is_internal diff --git a/addons/mail_bot/i18n/ru.po b/addons/mail_bot/i18n/ru.po index 799d56b26a1b81..434fb03cb29509 100644 --- a/addons/mail_bot/i18n/ru.po +++ b/addons/mail_bot/i18n/ru.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-04 09:56+0000\n" +"PO-Revision-Date: 2025-09-09 07:04+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" @@ -203,9 +203,9 @@ msgid "" "human language...%(new_line)sI can show you features if you write: " "%(command_start)sstart the tour%(command_end)s." msgstr "" -"Извините, я сонный. А может и нет! Возможно, я просто пытаюсь скрыть свое " -"незнание человеческого языка...%(new_line)sЯ могу показать вам функции, если " -"вы введете: %(command_start)sstart the tour%(command_end)s." +"Извините, меня клонит в сон. А может и нет! Возможно, я просто пытаюсь " +"скрыть свое незнание человеческого языка...%(new_line)sЯ могу показать вам " +"функции, если вы введете: %(command_start)sstart the tour%(command_end)s." #. module: mail_bot #. odoo-python diff --git a/addons/mail_group/i18n/my.po b/addons/mail_group/i18n/my.po index 93406f63b73bdd..a38c125ad2333b 100644 --- a/addons/mail_group/i18n/my.po +++ b/addons/mail_group/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -436,7 +436,7 @@ msgstr "ဖော်ပြချက်" #. module: mail_group #: model_terms:ir.ui.view,arch_db:mail_group.mail_group_message_reject_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mail_group #: model:ir.model.fields,field_description:mail_group.field_mail_group__display_name @@ -506,7 +506,7 @@ msgstr "" #: model:ir.model.fields,field_description:mail_group.field_mail_group_message__email_from #: model_terms:ir.ui.view,arch_db:mail_group.mail_group_message_view_form msgid "From" -msgstr "" +msgstr "မှ" #. module: mail_group #: model:ir.model.fields,field_description:mail_group.field_mail_group_member__mail_group_id diff --git a/addons/maintenance/i18n/my.po b/addons/maintenance/i18n/my.po index 0760c8e79f6452..31c3f59e90a7e5 100644 --- a/addons/maintenance/i18n/my.po +++ b/addons/maintenance/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -246,7 +246,7 @@ msgstr "" #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: maintenance #: model_terms:ir.ui.view,arch_db:maintenance.hr_equipment_request_view_kanban diff --git a/addons/marketing_card/i18n/my.po b/addons/marketing_card/i18n/my.po index be930ae0481810..9189e28e1706db 100644 --- a/addons/marketing_card/i18n/my.po +++ b/addons/marketing_card/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -345,7 +345,7 @@ msgstr "" #. module: marketing_card #: model:ir.model.fields,field_description:marketing_card.field_card_campaign__content_header_color msgid "Header Color" -msgstr "" +msgstr "ခေါင်းစီး အရောင်" #. module: marketing_card #: model:ir.model.fields,field_description:marketing_card.field_card_campaign__content_header_path diff --git a/addons/mass_mailing/i18n/my.po b/addons/mass_mailing/i18n/my.po index d0c752726ff297..a6fb803983530d 100644 --- a/addons/mass_mailing/i18n/my.po +++ b/addons/mass_mailing/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-14 20:47+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1286,7 +1286,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mass_mailing.view_mail_mass_mailing_form #: model_terms:ir.ui.view,arch_db:mass_mailing.view_mail_mass_mailing_test_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: mass_mailing #: model:ir.model.fields,field_description:mass_mailing.field_mailing_mailing__canceled @@ -1789,7 +1789,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mass_mailing.mailing_contact_import_view_form #: model_terms:ir.ui.view,arch_db:mass_mailing.mailing_mailing_schedule_date_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mass_mailing #: model_terms:ir.ui.view,arch_db:mass_mailing.email_designer_snippets @@ -2204,7 +2204,7 @@ msgstr "" #. module: mass_mailing #: model:ir.model.fields,field_description:mass_mailing.field_mailing_trace_report__email_from msgid "From" -msgstr "" +msgstr "မှ" #. module: mass_mailing #: model_terms:ir.ui.view,arch_db:mass_mailing.snippet_options @@ -3782,7 +3782,7 @@ msgstr "" #. module: mass_mailing #: model_terms:ir.ui.view,arch_db:mass_mailing.view_mail_mass_mailing_form msgid "Received" -msgstr "" +msgstr "ရရှိပြီး" #. module: mass_mailing #: model:ir.model.fields,field_description:mass_mailing.field_mailing_mailing__received_ratio @@ -4696,7 +4696,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mass_mailing.mailing_subscription_view_tree #: model_terms:ir.ui.view,arch_db:mass_mailing.view_mail_mass_mailing_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: mass_mailing #: model_terms:ir.ui.view,arch_db:mass_mailing.mailing_list_view_kanban diff --git a/addons/mass_mailing/i18n/ru.po b/addons/mass_mailing/i18n/ru.po index 90f3d9577de6c8..c2212793d13ad9 100644 --- a/addons/mass_mailing/i18n/ru.po +++ b/addons/mass_mailing/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-14 20:47+0000\n" -"PO-Revision-Date: 2025-09-04 16:45+0000\n" +"PO-Revision-Date: 2025-09-09 07:04+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" diff --git a/addons/mass_mailing_sms/i18n/ko.po b/addons/mass_mailing_sms/i18n/ko.po index 05ade89710862d..d1165c24da431d 100644 --- a/addons/mass_mailing_sms/i18n/ko.po +++ b/addons/mass_mailing_sms/i18n/ko.po @@ -1,25 +1,28 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mass_mailing_sms +# * mass_mailing_sms # # Translators: # Wil Odoo, 2024 # Daye Jeong, 2024 # Sarah Park, 2025 # +# "Kwanghee Park (kwpa)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:39+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Sarah Park, 2025\n" -"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: \"Kwanghee Park (kwpa)\" \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" #. module: mass_mailing_sms #. odoo-javascript @@ -955,7 +958,7 @@ msgstr "SMS 메일링 테스트" #. odoo-python #: code:addons/mass_mailing_sms/wizard/mailing_sms_test.py:0 msgid "Test SMS could not be sent to %(destination)s: %(failure_reason)s" -msgstr "" +msgstr "테스트용 SMS를 전송하지 못했습니다: %(destination)s%(failure_reason)s" #. module: mass_mailing_sms #. odoo-python diff --git a/addons/mass_mailing_sms/i18n/my.po b/addons/mass_mailing_sms/i18n/my.po index 5c3e3cd1e7e6a0..09e3c8eb063641 100644 --- a/addons/mass_mailing_sms/i18n/my.po +++ b/addons/mass_mailing_sms/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:39+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -313,7 +313,7 @@ msgstr "" #. module: mass_mailing_sms #: model_terms:ir.ui.view,arch_db:mass_mailing_sms.mailing_sms_test_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mass_mailing_sms #: model:ir.model.fields,field_description:mass_mailing_sms.field_mailing_sms_test__display_name diff --git a/addons/mass_mailing_sms/i18n/ru.po b/addons/mass_mailing_sms/i18n/ru.po index 12758456f93b4c..aa079d9d756cd6 100644 --- a/addons/mass_mailing_sms/i18n/ru.po +++ b/addons/mass_mailing_sms/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:39+0000\n" -"PO-Revision-Date: 2025-09-04 16:45+0000\n" +"PO-Revision-Date: 2025-09-09 08:28+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" @@ -22,8 +22,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (" +"n%100>=11 && n%100<=14)? 2 : 3);\n" "X-Generator: Weblate 5.12.2\n" #. module: mass_mailing_sms diff --git a/addons/membership/i18n/my.po b/addons/membership/i18n/my.po index 6d042f26a7cc17..68462f182bba88 100644 --- a/addons/membership/i18n/my.po +++ b/addons/membership/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:55+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -100,7 +100,7 @@ msgstr "" #. module: membership #: model_terms:ir.ui.view,arch_db:membership.view_membership_invoice_view msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: membership #: model:ir.model.fields,field_description:membership.field_res_partner__membership_cancel @@ -254,7 +254,7 @@ msgstr "" #. module: membership #: model:ir.model.fields,field_description:membership.field_membership_membership_line__date_from msgid "From" -msgstr "" +msgstr "မှ" #. module: membership #: model_terms:ir.ui.view,arch_db:membership.view_report_membership_search @@ -555,7 +555,7 @@ msgstr "" #. module: membership #: model:ir.model,name:membership.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: membership #: model_terms:ir.ui.view,arch_db:membership.membership_products_form diff --git a/addons/microsoft_calendar/i18n/my.po b/addons/microsoft_calendar/i18n/my.po index 25703a3c3579c7..5e8f87a4aebc97 100644 --- a/addons/microsoft_calendar/i18n/my.po +++ b/addons/microsoft_calendar/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-18 18:39+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -87,7 +87,7 @@ msgstr "" #. module: microsoft_calendar #: model_terms:ir.ui.view,arch_db:microsoft_calendar.microsoft_calendar_reset_account_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: microsoft_calendar #: model_terms:ir.ui.view,arch_db:microsoft_calendar.res_config_settings_view_form @@ -150,7 +150,7 @@ msgstr "" #. odoo-javascript #: code:addons/microsoft_calendar/static/src/views/microsoft_calendar/microsoft_calendar_controller.js:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: microsoft_calendar #: model:ir.model.fields,field_description:microsoft_calendar.field_microsoft_calendar_account_reset__display_name diff --git a/addons/mrp/i18n/my.po b/addons/mrp/i18n/my.po index c16230eb5736a1..881a986ea97471 100644 --- a/addons/mrp/i18n/my.po +++ b/addons/mrp/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-06-13 18:36+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -1266,7 +1266,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_tree_view #: model_terms:ir.ui.view,arch_db:mrp.mrp_workcenter_block_wizard_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__state__cancel @@ -1969,7 +1969,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_split_form #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_split_multi_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mrp #. odoo-javascript @@ -2345,7 +2345,7 @@ msgstr "" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_production_form_view msgid "From" -msgstr "" +msgstr "မှ" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.oee_search_view @@ -2852,7 +2852,7 @@ msgstr "" #: 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 msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_unbuild_search_view @@ -4732,7 +4732,7 @@ msgstr "" #: 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 msgid "Route" -msgstr "" +msgstr "လမ်းကြောင်း" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.mrp_bom_form_view @@ -6015,7 +6015,7 @@ msgstr "" #. odoo-javascript #: code:addons/mrp/static/src/components/bom_overview_control_panel/mrp_bom_overview_control_panel.xml:0 msgid "Variant" -msgstr "" +msgstr "မူကွဲ" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.report_mrporder @@ -6044,7 +6044,7 @@ msgstr "" #: 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 msgid "Waiting" -msgstr "" +msgstr "စောင့်ဆိုင်း" #. module: mrp #: model:ir.model.fields.selection,name:mrp.selection__mrp_production__reservation_state__waiting @@ -6078,7 +6078,7 @@ msgstr "" #: model:ir.model,name:mrp.model_stock_warehouse #: model:ir.model.fields,field_description:mrp.field_mrp_production__warehouse_id msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: mrp #: model:ir.model,name:mrp.model_stock_warn_insufficient_qty_unbuild @@ -6096,7 +6096,7 @@ msgstr "" #. module: mrp #: model_terms:ir.ui.view,arch_db:mrp.view_mrp_production_filter msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: mrp #: model:product.template,name:mrp.product_product_wood_wear_product_template diff --git a/addons/mrp_account/i18n/my.po b/addons/mrp_account/i18n/my.po index 27cb7cba035054..75f211ceec5d10 100644 --- a/addons/mrp_account/i18n/my.po +++ b/addons/mrp_account/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -221,7 +221,7 @@ msgstr "" #. module: mrp_account #: model_terms:ir.ui.view,arch_db:mrp_account.view_wip_accounting_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mrp_account #: model:ir.model.fields,field_description:mrp_account.field_mrp_account_wip_accounting__display_name @@ -364,7 +364,7 @@ msgstr "" #. module: mrp_account #: model:ir.model,name:mrp_account.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: mrp_account #: model:ir.model,name:mrp_account.model_product_category diff --git a/addons/mrp_product_expiry/i18n/my.po b/addons/mrp_product_expiry/i18n/my.po index 6df8bc5e676592..9356e3f8e8e1e6 100644 --- a/addons/mrp_product_expiry/i18n/my.po +++ b/addons/mrp_product_expiry/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-06 09:04+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -38,7 +38,7 @@ msgstr "" #. module: mrp_product_expiry #: model_terms:ir.ui.view,arch_db:mrp_product_expiry.confirm_expiry_view_mrp_inherit msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mrp_product_expiry #: model:ir.model,name:mrp_product_expiry.model_mrp_production diff --git a/addons/mrp_subcontracting/i18n/my.po b/addons/mrp_subcontracting/i18n/my.po index 36861102ee9f7c..751605d24b33fd 100644 --- a/addons/mrp_subcontracting/i18n/my.po +++ b/addons/mrp_subcontracting/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -136,7 +136,7 @@ msgstr "" #. module: mrp_subcontracting #: model_terms:ir.ui.view,arch_db:mrp_subcontracting.mrp_production_subcontracting_form_view msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: mrp_subcontracting #: model:ir.model.fields,field_description:mrp_subcontracting.field_stock_picking__display_action_record_components @@ -562,7 +562,7 @@ msgstr "" #. module: mrp_subcontracting #: model:ir.model,name:mrp_subcontracting.model_stock_warehouse msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: mrp_subcontracting #: model:ir.model,name:mrp_subcontracting.model_mrp_consumption_warning diff --git a/addons/mrp_subcontracting_dropshipping/i18n/my.po b/addons/mrp_subcontracting_dropshipping/i18n/my.po index f486c97d9b18f4..b587b128b6bfe9 100644 --- a/addons/mrp_subcontracting_dropshipping/i18n/my.po +++ b/addons/mrp_subcontracting_dropshipping/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -103,7 +103,7 @@ msgstr "" #. module: mrp_subcontracting_dropshipping #: model:ir.model,name:mrp_subcontracting_dropshipping.model_stock_warehouse msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: mrp_subcontracting_dropshipping #. odoo-python diff --git a/addons/onboarding/i18n/my.po b/addons/onboarding/i18n/my.po index aad8647499e8f7..39833df5df4cd9 100644 --- a/addons/onboarding/i18n/my.po +++ b/addons/onboarding/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:57+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -65,7 +65,7 @@ msgstr "" #. module: onboarding #: model_terms:ir.ui.view,arch_db:onboarding.onboarding_container msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: onboarding #: model_terms:ir.ui.view,arch_db:onboarding.onboarding_container diff --git a/addons/payment/i18n/my.po b/addons/payment/i18n/my.po index 739d4fe5a999fb..5cee26014ddad6 100644 --- a/addons/payment/i18n/my.po +++ b/addons/payment/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-07 20:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -653,7 +653,7 @@ msgstr "" #. module: payment #: model_terms:ir.ui.view,arch_db:payment.payment_provider_onboarding_wizard_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: payment #: model:ir.model.fields.selection,name:payment.selection__payment_transaction__state__cancel diff --git a/addons/payment/i18n/ru.po b/addons/payment/i18n/ru.po index 55d177b6cd1670..6231c760d3db6d 100644 --- a/addons/payment/i18n/ru.po +++ b/addons/payment/i18n/ru.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-07 20:37+0000\n" -"PO-Revision-Date: 2025-09-04 09:56+0000\n" +"PO-Revision-Date: 2025-09-09 06:59+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" @@ -510,7 +510,7 @@ msgstr "Ось" #. module: payment #: model:payment.method,name:payment.payment_method_bacs_direct_debit msgid "BACS Direct Debit" -msgstr "Прямое дебет BACS" +msgstr "Прямой дебет BACS" #. module: payment #: model:payment.method,name:payment.payment_method_bancomat_pay @@ -525,7 +525,7 @@ msgstr "BCA" #. module: payment #: model:payment.method,name:payment.payment_method_becs_direct_debit msgid "BECS Direct Debit" -msgstr "Прямой дебит BECS" +msgstr "Прямой дебет BECS" #. module: payment #: model:payment.method,name:payment.payment_method_blik diff --git a/addons/payment_demo/i18n/my.po b/addons/payment_demo/i18n/my.po index c75ba9fe52453e..ab87c6a6fa7144 100644 --- a/addons/payment_demo/i18n/my.po +++ b/addons/payment_demo/i18n/my.po @@ -1,19 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * payment_demo +# * payment_demo # +# Oakarmin Iron , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2024-09-26 08:56+0000\n" -"Last-Translator: \n" -"Language-Team: \n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" +"Last-Translator: Oakarmin Iron \n" +"Language-Team: Burmese \n" +"Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" #. module: payment_demo #: model_terms:ir.ui.view,arch_db:payment_demo.payment_details @@ -87,7 +91,7 @@ msgstr "" #. module: payment_demo #: model_terms:ir.ui.view,arch_db:payment_demo.payment_transaction_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: payment_demo #: model:ir.model.fields.selection,name:payment_demo.selection__payment_token__demo_simulated_state__cancel diff --git a/addons/payment_paypal/i18n/ru.po b/addons/payment_paypal/i18n/ru.po index 6766111a641e8c..d98982bb3b9109 100644 --- a/addons/payment_paypal/i18n/ru.po +++ b/addons/payment_paypal/i18n/ru.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-04 16:45+0000\n" +"PO-Revision-Date: 2025-09-09 07:04+0000\n" "Last-Translator: \"Anastasiia Koroleva (koan)\" \n" "Language-Team: Russian \n" diff --git a/addons/phone_validation/i18n/my.po b/addons/phone_validation/i18n/my.po index e993619eebc4a5..d1094f506bfcff 100644 --- a/addons/phone_validation/i18n/my.po +++ b/addons/phone_validation/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:40+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -128,7 +128,7 @@ msgstr "ဖန်တီးချိန်" #. module: phone_validation #: model_terms:ir.ui.view,arch_db:phone_validation.phone_blacklist_remove_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: phone_validation #: model:ir.model.fields,field_description:phone_validation.field_phone_blacklist__display_name diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index 52042decdf0204..15b6dfe0f7696b 100644 --- a/addons/point_of_sale/i18n/ko.po +++ b/addons/point_of_sale/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-08-21 14:30+0000\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" "Last-Translator: \"Kwanghee Park (kwpa)\" \n" "Language-Team: Korean \n" @@ -1810,7 +1810,7 @@ msgstr "영수증에 포털 URL이 인쇄되는 방식을 선택합니다." #. odoo-javascript #: code:addons/point_of_sale/static/src/app/screens/product_screen/control_buttons/control_buttons.js:0 msgid "Choose the tax you want to apply" -msgstr "" +msgstr "적용하려는 세금을 선택하세요" #. module: point_of_sale #. odoo-javascript diff --git a/addons/point_of_sale/i18n/my.po b/addons/point_of_sale/i18n/my.po index a8aad8231e368b..d117a8af0ea4e1 100644 --- a/addons/point_of_sale/i18n/my.po +++ b/addons/point_of_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1326,7 +1326,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:point_of_sale.view_pos_details_wizard #: model_terms:ir.ui.view,arch_db:point_of_sale.view_pos_payment msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: point_of_sale #. odoo-javascript @@ -2688,7 +2688,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/app/utils/input_popups/text_input_popup.xml:0 #: model_terms:ir.ui.view,arch_db:point_of_sale.pos_config_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: point_of_sale #: model:ir.model.fields,field_description:point_of_sale.field_pos_order_line__discount @@ -5858,7 +5858,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:point_of_sale.view_pos_order_filter #: model_terms:ir.ui.view,arch_db:point_of_sale.view_report_pos_order_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: point_of_sale #: model_terms:ir.ui.view,arch_db:point_of_sale.res_config_settings_view_form @@ -8088,7 +8088,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/customer_display/customer_display.xml:0 #: model:ir.model.fields,field_description:point_of_sale.field_pos_order__amount_total msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: point_of_sale #. odoo-javascript @@ -8487,7 +8487,7 @@ msgstr "နမူနာထုတ်ကုန်များဖြင့် စ #: model:ir.model.fields,field_description:point_of_sale.field_pos_config__warehouse_id #: model_terms:ir.ui.view,arch_db:point_of_sale.res_config_settings_view_form msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: point_of_sale #: model:ir.model.fields,field_description:point_of_sale.field_res_config_settings__pos_warehouse_id diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index 95ba46e363b9b4..271b3d70446ac8 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/i18n/sv.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * point_of_sale +# * point_of_sale # # Translators: # Daniel Osser , 2024 @@ -23,20 +23,21 @@ # Wil Odoo, 2025 # Jakob Krabbe , 2025 # Anders Wallenquist , 2025 -# msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Anders Wallenquist , 2025\n" -"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: Jakob Krabbe \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" #. module: point_of_sale #. odoo-python @@ -1908,7 +1909,7 @@ msgstr "Stäng" #: code:addons/point_of_sale/static/src/app/navbar/closing_popup/closing_popup.xml:0 #: code:addons/point_of_sale/static/src/app/navbar/navbar.xml:0 msgid "Close Register" -msgstr "Stäng register" +msgstr "Stäng kassan" #. module: point_of_sale #: model_terms:ir.ui.view,arch_db:point_of_sale.view_form_pos_close_session_wizard @@ -1934,7 +1935,7 @@ msgstr "Stängd och bokförd" #. odoo-python #: code:addons/point_of_sale/models/pos_session.py:0 msgid "Closed Register" -msgstr "Stängt register" +msgstr "Stängd kassa" #. module: point_of_sale #: model_terms:ir.ui.view,arch_db:point_of_sale.view_pos_config_tree @@ -1969,7 +1970,7 @@ msgstr "Avslutande anmärkningar" #. odoo-javascript #: code:addons/point_of_sale/static/src/app/navbar/closing_popup/closing_popup.xml:0 msgid "Closing Register" -msgstr "Stängningsregister" +msgstr "Stänger kassan" #. module: point_of_sale #. odoo-javascript @@ -4731,7 +4732,7 @@ msgstr "Öppna PoS-sessioner som använder denna betalningsmetod." #: code:addons/point_of_sale/static/src/app/store/opening_control_popup/opening_control_popup.xml:0 #: model_terms:ir.ui.view,arch_db:point_of_sale.view_pos_config_kanban msgid "Open Register" -msgstr "Öppet register" +msgstr "Öppna kassan" #. module: point_of_sale #. odoo-javascript diff --git a/addons/portal/i18n/my.po b/addons/portal/i18n/my.po index feb9f2801bf52f..5373fb8cd536ee 100644 --- a/addons/portal/i18n/my.po +++ b/addons/portal/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:40+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -299,7 +299,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:portal.portal_my_security #: model_terms:ir.ui.view,arch_db:portal.portal_share_wizard msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: portal #: model_terms:ir.ui.view,arch_db:portal.portal_my_security @@ -491,7 +491,7 @@ msgstr "" #. module: portal #: model_terms:ir.ui.view,arch_db:portal.portal_my_details msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: portal #: model:ir.model.fields,field_description:portal.field_portal_share__display_name diff --git a/addons/pos_event/i18n/my.po b/addons/pos_event/i18n/my.po index 215b99306f5122..eaa8895184aee9 100644 --- a/addons/pos_event/i18n/my.po +++ b/addons/pos_event/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-01 21:17+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -56,7 +56,7 @@ msgstr "" #: code:addons/pos_event/static/src/app/popup/event_configurator_popup/event_configurator_popup.xml:0 #: code:addons/pos_event/static/src/app/popup/event_registration_popup/event_registration_popup.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: pos_event #. odoo-javascript diff --git a/addons/pos_hr/i18n/my.po b/addons/pos_hr/i18n/my.po index 76c34d97e32aea..3ba1925c5a885c 100644 --- a/addons/pos_hr/i18n/my.po +++ b/addons/pos_hr/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-07 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -128,7 +128,7 @@ msgstr "" #. odoo-javascript #: code:addons/pos_hr/static/src/overrides/screens/login_screen/login_screen.js:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: pos_hr #: model:ir.model,name:pos_hr.model_hr_employee @@ -194,7 +194,7 @@ msgstr "" #. odoo-javascript #: code:addons/pos_hr/static/src/overrides/components/navbar/navbar.xml:0 msgid "Lock" -msgstr "" +msgstr "သော့ခတ်" #. module: pos_hr #. odoo-javascript diff --git a/addons/pos_sale/i18n/my.po b/addons/pos_sale/i18n/my.po index a1cd45ffa7c9d0..e7b10eea9e38c6 100644 --- a/addons/pos_sale/i18n/my.po +++ b/addons/pos_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -130,7 +130,7 @@ msgstr "" #. module: pos_sale #: model_terms:ir.ui.view,arch_db:pos_sale.report_invoice_document msgid "From" -msgstr "" +msgstr "မှ" #. module: pos_sale #: model:ir.model.fields.selection,name:pos_sale.selection__sale_report__state__invoiced diff --git a/addons/pos_self_order/i18n/my.po b/addons/pos_self_order/i18n/my.po index e80ac185500e95..a8de4ac22a95a7 100644 --- a/addons/pos_self_order/i18n/my.po +++ b/addons/pos_self_order/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:38+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -191,7 +191,7 @@ msgstr "" #: code:addons/pos_self_order/static/src/app/components/order_widget/order_widget.js:0 #: code:addons/pos_self_order/static/src/app/pages/cart_page/cart_page.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: pos_self_order #. odoo-javascript @@ -368,7 +368,7 @@ msgstr "" #: code:addons/pos_self_order/static/src/app/pages/combo_page/combo_page.xml:0 #: code:addons/pos_self_order/static/src/app/pages/product_page/product_page.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: pos_self_order #: model:ir.model.fields,field_description:pos_self_order.field_pos_self_order_custom_link__display_name diff --git a/addons/product/i18n/my.po b/addons/product/i18n/my.po index 395e8332ba129b..e6505b7a552016 100644 --- a/addons/product/i18n/my.po +++ b/addons/product/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-14 20:47+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -741,7 +741,7 @@ msgstr "" #. module: product #: model_terms:ir.ui.view,arch_db:product.update_product_attribute_value_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: product #: model:ir.model.fields,field_description:product.field_product_pricelist_item__categ_id @@ -1216,7 +1216,7 @@ msgstr "" #. module: product #: model_terms:ir.ui.view,arch_db:product.product_label_layout_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: product #: model:ir.model.fields.selection,name:product.selection__product_pricelist_item__compute_price__percentage @@ -2290,7 +2290,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:product.product_template_form_view #: model_terms:ir.ui.view,arch_db:product.product_variant_easy_edit_view msgid "Packaging" -msgstr "" +msgstr "ထုပ်ပိုးပုံ" #. module: product #: model:ir.model.fields,field_description:product.field_product_category__parent_id @@ -2535,7 +2535,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:product.product_view_kanban_catalog #: model_terms:ir.ui.view,arch_db:product.product_view_search_catalog msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: product #: model:ir.model,name:product.model_product_attribute @@ -3628,14 +3628,14 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:product.product_attribute_view_form #: model_terms:ir.ui.view,arch_db:product.product_template_attribute_line_form msgid "Values" -msgstr "" +msgstr "တန်ဖိုးများ" #. module: product #: model:ir.model.fields,field_description:product.field_product_pricelist_item__product_id #: model_terms:ir.ui.view,arch_db:product.product_document_kanban #: model_terms:ir.ui.view,arch_db:product.product_pricelist_item_view_search msgid "Variant" -msgstr "" +msgstr "မူကွဲ" #. module: product #: model:ir.model.fields,field_description:product.field_product_supplierinfo__product_variant_count @@ -3710,7 +3710,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:product.product_template_kanban_view #: model_terms:ir.ui.view,arch_db:product.product_template_only_form_view msgid "Variants" -msgstr "" +msgstr "မူကွဲများ" #. module: product #: model:ir.model.fields,field_description:product.field_product_supplierinfo__partner_id @@ -3802,7 +3802,7 @@ msgstr "" #. module: product #: model_terms:ir.ui.view,arch_db:product.product_template_search_view msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: product #: model_terms:product.template,website_description:product.product_product_4_product_template diff --git a/addons/product_email_template/i18n/my.po b/addons/product_email_template/i18n/my.po index d50abd7d130ff3..bf8e5e308a8433 100644 --- a/addons/product_email_template/i18n/my.po +++ b/addons/product_email_template/i18n/my.po @@ -1,19 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * product_email_template +# * product_email_template # +# Oakarmin Iron , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:55+0000\n" -"PO-Revision-Date: 2023-10-26 21:55+0000\n" -"Last-Translator: \n" -"Language-Team: \n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" +"Last-Translator: Oakarmin Iron \n" +"Language-Team: Burmese \n" +"Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" #. module: product_email_template #: model_terms:ir.ui.view,arch_db:product_email_template.product_template_form_view @@ -39,7 +43,7 @@ msgstr "" #. module: product_email_template #: model:ir.model,name:product_email_template.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: product_email_template #: model:ir.model.fields,field_description:product_email_template.field_product_product__email_template_id diff --git a/addons/product_expiry/i18n/my.po b/addons/product_expiry/i18n/my.po index d170f425583867..83dba02fb81085 100644 --- a/addons/product_expiry/i18n/my.po +++ b/addons/product_expiry/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:37+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -125,7 +125,7 @@ msgstr "ဖော်ပြချက်" #. module: product_expiry #: model_terms:ir.ui.view,arch_db:product_expiry.confirm_expiry_view msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: product_expiry #: model:ir.model.fields,field_description:product_expiry.field_res_config_settings__group_expiry_date_on_delivery_slip diff --git a/addons/product_images/i18n/my.po b/addons/product_images/i18n/my.po index 43b6a3136104ff..8bd4fd04b3a09c 100644 --- a/addons/product_images/i18n/my.po +++ b/addons/product_images/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-04 09:57+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -52,7 +52,7 @@ msgstr "" #. module: product_images #: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: product_images #: model:ir.model,name:product_images.model_res_config_settings diff --git a/addons/product_margin/i18n/my.po b/addons/product_margin/i18n/my.po index f3b8a8537d9f00..a54fb7785b0204 100644 --- a/addons/product_margin/i18n/my.po +++ b/addons/product_margin/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:55+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -67,7 +67,7 @@ msgstr "" #. module: product_margin #: model_terms:ir.ui.view,arch_db:product_margin.product_margin_form_view msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: product_margin #: model_terms:ir.ui.view,arch_db:product_margin.view_product_margin_form @@ -128,7 +128,7 @@ msgstr "" #. module: product_margin #: model:ir.model.fields,field_description:product_margin.field_product_margin__from_date msgid "From" -msgstr "" +msgstr "မှ" #. module: product_margin #: model_terms:ir.ui.view,arch_db:product_margin.product_margin_form_view diff --git a/addons/product_matrix/i18n/my.po b/addons/product_matrix/i18n/my.po index 4a1438c5b53aeb..0c59a1767f7bde 100644 --- a/addons/product_matrix/i18n/my.po +++ b/addons/product_matrix/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:55+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -62,7 +62,7 @@ msgstr "အတည်ပြု" #. odoo-javascript #: code:addons/product_matrix/static/src/xml/product_matrix_dialog.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: product_matrix #: model:product.attribute,name:product_matrix.product_attribute_gender diff --git a/addons/project/i18n/my.po b/addons/project/i18n/my.po index 0a5bde01c27b80..d1cd6b18051d7e 100644 --- a/addons/project/i18n/my.po +++ b/addons/project/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-06-27 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1061,7 +1061,7 @@ msgstr "" #. odoo-javascript #: code:addons/project/static/src/components/project_right_side_panel/components/project_profitability.xml:0 msgid "Billed" -msgstr "" +msgstr "ဘေလ်ဆောင်ပြီး" #. module: project #: model:ir.model.fields,field_description:project.field_report_project_task_user__dependent_ids @@ -1750,7 +1750,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:project.view_project_task_type_delete_wizard #: model_terms:ir.ui.view,arch_db:project.view_project_task_type_unarchive_wizard msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: project #: model:ir.model.fields,field_description:project.field_project_collaborator__display_name @@ -4842,7 +4842,7 @@ msgstr "" #. odoo-javascript #: code:addons/project/static/src/components/project_right_side_panel/components/project_profitability.xml:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: project #. odoo-javascript @@ -5090,7 +5090,7 @@ msgstr "" #: model:ir.model.fields.selection,name:project.selection__project_task_burndown_chart_report__state__04_waiting_normal #: model:ir.model.fields.selection,name:project.selection__report_project_task_user__state__04_waiting_normal msgid "Waiting" -msgstr "" +msgstr "စောင့်ဆိုင်း" #. module: project #. odoo-javascript diff --git a/addons/project_purchase/i18n/my.po b/addons/project_purchase/i18n/my.po index 1b64d4edf41b3a..c2382ec8a1d749 100644 --- a/addons/project_purchase/i18n/my.po +++ b/addons/project_purchase/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -63,7 +63,7 @@ msgstr "" #. module: project_purchase #: model:ir.model,name:project_purchase.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: project_purchase #. odoo-python diff --git a/addons/project_todo/i18n/my.po b/addons/project_todo/i18n/my.po index f887ed403bc68a..ea0bfec3290387 100644 --- a/addons/project_todo/i18n/my.po +++ b/addons/project_todo/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-06 09:04+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -305,7 +305,7 @@ msgstr "ဖျက်" #: model_terms:ir.ui.view,arch_db:project_todo.mail_activity_todo_create_popup #: model_terms:ir.ui.view,arch_db:project_todo.project_task_view_todo_conversion_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: project_todo #: model:ir.model.fields,field_description:project_todo.field_mail_activity_todo_create__display_name diff --git a/addons/purchase/i18n/my.po b/addons/purchase/i18n/my.po index 1bdadb3b8c20d4..ea9835f6cb35c9 100644 --- a/addons/purchase/i18n/my.po +++ b/addons/purchase/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -348,7 +348,7 @@ msgstr "" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content msgid "Confirmation Date:" -msgstr "" +msgstr "အတည်ပြု ရက်:" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document @@ -770,7 +770,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase.purchase_bill_line_match_tree #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Billed" -msgstr "" +msgstr "ဘေလ်ဆောင်ပြီး" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_bill_line_match__billed_amount_untaxed @@ -835,7 +835,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: purchase #. odoo-python @@ -955,12 +955,12 @@ msgstr "" #: model:ir.model.fields,field_description:purchase.field_purchase_report__date_approve #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search msgid "Confirmation Date" -msgstr "" +msgstr "အတည်ပြု ရက်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search msgid "Confirmation Date Last Year" -msgstr "" +msgstr "အတည်ပြု ရက်သည် မနှစ်က" #. module: purchase #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_lock__lock @@ -1009,13 +1009,13 @@ msgstr "နိုင်ငံ ကုဒ်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Create Bill" -msgstr "" +msgstr "ဘေလ် ဖွင့်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree msgid "Create Bills" -msgstr "" +msgstr "ဘေလ် ဖွင့်" #. module: purchase #: model:ir.actions.server,name:purchase.action_purchase_batch_bills @@ -1247,7 +1247,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_planned #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__date_planned msgid "Expected Arrival" -msgstr "" +msgstr "ခန့်မှန်း ရောက်ချိန်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search @@ -1512,7 +1512,7 @@ msgstr "" #. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search @@ -1573,7 +1573,7 @@ msgstr "" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Lock" -msgstr "" +msgstr "သော့ခတ်" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_config_settings__lock_confirmed_po @@ -1912,7 +1912,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_order #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs msgid "Order Deadline" -msgstr "" +msgstr "အော်ဒါသက်တမ်း" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order__order_line @@ -1961,12 +1961,12 @@ msgstr "" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_id msgid "Packaging" -msgstr "" +msgstr "ထုပ်ပိုးပုံ" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_qty msgid "Packaging Quantity" -msgstr "" +msgstr "ထုပ်ပိုး အရေအတွက်" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_bill_to_po_wizard__partner_id @@ -2136,7 +2136,7 @@ msgstr "အဝယ်" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_config_settings__module_purchase_requisition msgid "Purchase Agreements" -msgstr "" +msgstr "အဝယ် သဘောတူညီချက်များ" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_bill_line_match__purchase_amount_untaxed @@ -2224,12 +2224,12 @@ msgstr "အဝယ် အော်ဒါ" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document msgid "Purchase Order #" -msgstr "" +msgstr "အဝယ် အော်ဒါ #" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_order_approval msgid "Purchase Order Approval" -msgstr "" +msgstr "အဝယ် အော်ဒါ အတည်ပြုခြင်း" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_account_analytic_account__purchase_order_count @@ -2238,7 +2238,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase.field_res_partner__purchase_order_count #: model:ir.model.fields,field_description:purchase.field_res_users__purchase_order_count msgid "Purchase Order Count" -msgstr "" +msgstr "အဝယ် အော်ဒါ အရေအတွက်" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_history @@ -2247,19 +2247,19 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_form2 msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_product_product__purchase_line_warn #: model:ir.model.fields,field_description:purchase.field_product_template__purchase_line_warn msgid "Purchase Order Line Warning" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း သတိပေးချက်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_tree msgid "Purchase Order Lines" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်းများ" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_company__po_lock @@ -2283,13 +2283,13 @@ msgstr "" #: model:ir.model.fields,field_description:purchase.field_account_bank_statement_line__purchase_order_name #: model:ir.model.fields,field_description:purchase.field_account_move__purchase_order_name msgid "Purchase Order Name" -msgstr "" +msgstr "အဝယ် အော်ဒါ၏ အမည်" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_res_partner__purchase_warn #: model:ir.model.fields,field_description:purchase.field_res_users__purchase_warn msgid "Purchase Order Warning" -msgstr "" +msgstr "အဝယ် အော်ဒါ သတိပေးချက်" #. module: purchase #. odoo-python @@ -2524,7 +2524,7 @@ msgstr "" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Received" -msgstr "" +msgstr "ရရှိပြီး" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_received @@ -2747,7 +2747,7 @@ msgstr "" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form msgid "Send PO by Email" -msgstr "" +msgstr "အီးမေးလ် ဖြင့်ပို့ရန်" #. module: purchase #: model:ir.actions.server,name:purchase.action_purchase_send_reminder @@ -3111,7 +3111,7 @@ msgstr "" #. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 msgid "To Send" -msgstr "" +msgstr "ပို့ရန်" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search @@ -3128,7 +3128,7 @@ msgstr "" #: 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 "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: purchase #: model_terms:ir.ui.view,arch_db:purchase.purchase_bill_line_match_tree @@ -3405,7 +3405,7 @@ msgstr "ထုထည်" #. odoo-javascript #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0 msgid "Waiting" -msgstr "" +msgstr "စောင့်ဆိုင်း" #. module: purchase #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__to_invoice @@ -3453,7 +3453,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: purchase #: model:ir.model.fields,field_description:purchase.field_purchase_order__website_message_ids diff --git a/addons/purchase_mrp/i18n/my.po b/addons/purchase_mrp/i18n/my.po index 2108f0aa2bfcb5..85d8408834161a 100644 --- a/addons/purchase_mrp/i18n/my.po +++ b/addons/purchase_mrp/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -102,7 +102,7 @@ msgstr "အဝယ် အော်ဒါ" #. module: purchase_mrp #: model:ir.model,name:purchase_mrp.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase_mrp #. odoo-python diff --git a/addons/purchase_product_matrix/i18n/my.po b/addons/purchase_product_matrix/i18n/my.po index 67f624e8c23411..64b157b2413491 100644 --- a/addons/purchase_product_matrix/i18n/my.po +++ b/addons/purchase_product_matrix/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:55+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -65,7 +65,7 @@ msgstr "" #. module: purchase_product_matrix #: model_terms:ir.ui.view,arch_db:purchase_product_matrix.purchase_order_form_matrix msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: purchase_product_matrix #: model:ir.model.fields,field_description:purchase_product_matrix.field_purchase_order_line__product_template_id @@ -85,7 +85,7 @@ msgstr "အဝယ် အော်ဒါ" #. module: purchase_product_matrix #: model:ir.model,name:purchase_product_matrix.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase_product_matrix #: model:ir.model.fields,help:purchase_product_matrix.field_purchase_order__grid_product_tmpl_id diff --git a/addons/purchase_requisition/i18n/my.po b/addons/purchase_requisition/i18n/my.po index e550abe6f83cc8..8eab8b7e633694 100644 --- a/addons/purchase_requisition/i18n/my.po +++ b/addons/purchase_requisition/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -194,7 +194,7 @@ msgstr "ဝယ်သူ" #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_requisition_create_alternative_form #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_requisition_alternative_warning_form @@ -378,7 +378,7 @@ msgstr "" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_requisition_alternative_warning_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: purchase_requisition #: model:ir.model.fields,field_description:purchase_requisition.field_purchase_order_group__display_name @@ -584,7 +584,7 @@ msgstr "" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_filter msgid "My Agreements" -msgstr "" +msgstr "ကျွန်ပ်၏ သဘောတူညီချက်များ" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_order_form_inherit @@ -600,7 +600,7 @@ msgstr "အသစ်" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_filter msgid "New Agreements" -msgstr "" +msgstr "သဘောတူညီချက် အသစ်များ" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_form @@ -699,7 +699,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase_requisition.field_purchase_requisition_line__product_id #: model_terms:ir.ui.view,arch_db:purchase_requisition.report_purchaserequisition_document msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: purchase_requisition #: model:ir.model.fields,field_description:purchase_requisition.field_purchase_requisition_line__product_uom_id @@ -739,7 +739,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_form #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_tree msgid "Purchase Agreements" -msgstr "" +msgstr "အဝယ် သဘောတူညီချက်များ" #. module: purchase_requisition #: model:ir.model.fields,field_description:purchase_requisition.field_res_config_settings__group_purchase_alternatives @@ -759,12 +759,12 @@ msgstr "အဝယ် အော်ဒါ" #. module: purchase_requisition #: model:ir.model,name:purchase_requisition.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_order_line_compare_tree msgid "Purchase Order Lines" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်းများ" #. module: purchase_requisition #: model:ir.model.fields,field_description:purchase_requisition.field_purchase_requisition__purchase_ids @@ -872,7 +872,7 @@ msgstr "" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_filter msgid "Search Purchase Agreements" -msgstr "" +msgstr "အဝယ် သဘောတူညီချက်များ ရှာပါ" #. module: purchase_requisition #: model_terms:ir.ui.view,arch_db:purchase_requisition.view_purchase_requisition_filter @@ -990,7 +990,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:purchase_requisition.purchase_order_line_compare_tree #: model_terms:ir.ui.view,arch_db:purchase_requisition.report_purchaserequisition_document msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: purchase_requisition #: model:ir.model.fields,help:purchase_requisition.field_purchase_requisition__activity_exception_decoration diff --git a/addons/purchase_requisition_stock/i18n/my.po b/addons/purchase_requisition_stock/i18n/my.po index 809f7f415aa8fb..03382f8e34e6c1 100644 --- a/addons/purchase_requisition_stock/i18n/my.po +++ b/addons/purchase_requisition_stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -43,7 +43,7 @@ msgstr "အဝယ် အော်ဒါ" #. module: purchase_requisition_stock #: model:ir.model,name:purchase_requisition_stock.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase_requisition_stock #: model:ir.model,name:purchase_requisition_stock.model_purchase_requisition @@ -73,7 +73,7 @@ msgstr "" #. module: purchase_requisition_stock #: model:ir.model.fields,field_description:purchase_requisition_stock.field_purchase_requisition__warehouse_id msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: purchase_requisition_stock #: model:ir.model,name:purchase_requisition_stock.model_purchase_requisition_create_alternative diff --git a/addons/purchase_stock/i18n/my.po b/addons/purchase_stock/i18n/my.po index c9080eb883d7f9..52e3f51786abcf 100644 --- a/addons/purchase_stock/i18n/my.po +++ b/addons/purchase_stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -97,7 +97,7 @@ msgstr "" #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order__effective_date msgid "Arrival" -msgstr "" +msgstr "ရောက်ချိန်" #. module: purchase_stock #. odoo-python @@ -192,7 +192,7 @@ msgstr "" #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_purchase_order__picking_type_id msgid "Deliver To" -msgstr "" +msgstr "ပို့ရန်" #. module: purchase_stock #: model:ir.model.fields,help:purchase_stock.field_product_product__route_ids @@ -528,7 +528,7 @@ msgstr "အဝယ် အော်ဒါ" #: model:ir.model,name:purchase_stock.model_purchase_order_line #: model:ir.model.fields,field_description:purchase_stock.field_stock_move__purchase_line_id msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_stock_lot__purchase_order_ids @@ -557,7 +557,7 @@ msgstr "" #. module: purchase_stock #: model:ir.model.fields,field_description:purchase_stock.field_stock_lot__purchase_order_count msgid "Purchase order count" -msgstr "" +msgstr "အဝယ် အော်ဒါ အရေအတွက်" #. module: purchase_stock #: model:ir.model.fields,help:purchase_stock.field_purchase_order__dest_address_id @@ -630,7 +630,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase_stock.field_product_product__route_ids #: model:ir.model.fields,field_description:purchase_stock.field_product_template__route_ids msgid "Routes" -msgstr "" +msgstr "လမ်းကြောင်းများ" #. module: purchase_stock #: model_terms:ir.ui.view,arch_db:purchase_stock.res_config_settings_view_form_stock @@ -865,7 +865,7 @@ msgstr "" #: model:ir.model,name:purchase_stock.model_stock_warehouse #: model:ir.model.fields,field_description:purchase_stock.field_purchase_report__picking_type_id msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: purchase_stock #: model:ir.model.fields,help:purchase_stock.field_stock_warehouse__buy_to_resupply diff --git a/addons/repair/i18n/my.po b/addons/repair/i18n/my.po index ac4c97e61e69a4..ec8907530c79b7 100644 --- a/addons/repair/i18n/my.po +++ b/addons/repair/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -626,7 +626,7 @@ msgstr "" #: model:ir.model.fields.selection,name:repair.selection__repair_order__parts_availability_state__late #: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: repair #: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form_filter @@ -649,7 +649,7 @@ msgstr "နေရာ" #: model_terms:ir.ui.view,arch_db:repair.repair_view_picking_type_form #: model_terms:ir.ui.view,arch_db:repair.view_repair_order_form msgid "Locations" -msgstr "" +msgstr "နေရာများ" #. module: repair #: model:ir.model,name:repair.model_stock_lot @@ -802,7 +802,7 @@ msgstr "အော်ဒါများ" #. module: repair #: model:ir.ui.menu,name:repair.repair_picking_type_menu msgid "Overview" -msgstr "" +msgstr "ခြုံငုံသုံးသပ်ချက်" #. module: repair #: model:ir.model.fields,field_description:repair.field_repair_order__move_ids @@ -1459,7 +1459,7 @@ msgstr "" #. module: repair #: model:ir.model,name:repair.model_stock_warehouse msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: repair #: model:ir.model,name:repair.model_stock_warn_insufficient_qty_repair diff --git a/addons/sale/i18n/my.po b/addons/sale/i18n/my.po index 107499332dfa24..8cfebe0d4063f2 100644 --- a/addons/sale/i18n/my.po +++ b/addons/sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-11 18:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -1159,7 +1159,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sale.view_order_form #: model_terms:ir.ui.view,arch_db:sale.view_sale_advance_payment_inv msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: sale #. odoo-python @@ -1761,7 +1761,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sale.sale_order_cancel_view_form #: model_terms:ir.ui.view,arch_db:sale.sale_order_line_wizard_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: sale #. odoo-python @@ -2648,7 +2648,7 @@ msgstr "" #. module: sale #: model_terms:ir.ui.view,arch_db:sale.view_order_form msgid "Lock" -msgstr "" +msgstr "သော့ခတ်" #. module: sale #: model:ir.model.fields,field_description:sale.field_res_config_settings__group_auto_done_setting @@ -3205,12 +3205,12 @@ msgstr "" #. module: sale #: model:ir.model.fields,field_description:sale.field_sale_order_line__product_packaging_id msgid "Packaging" -msgstr "" +msgstr "ထုပ်ပိုးပုံ" #. module: sale #: model:ir.model.fields,field_description:sale.field_sale_order_line__product_packaging_qty msgid "Packaging Quantity" -msgstr "" +msgstr "ထုပ်ပိုး အရေအတွက်" #. module: sale #: model:ir.model.fields,field_description:sale.field_sale_order__partner_credit_warning @@ -3393,7 +3393,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sale.view_sales_order_filter #: model_terms:ir.ui.view,arch_db:sale.view_sales_order_line_filter msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale #: model:ir.model,name:sale.model_product_attribute_custom_value @@ -4850,7 +4850,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sale.portal_my_quotations #: model_terms:ir.ui.view,arch_db:sale.view_order_line_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: sale #: model:ir.model.fields,field_description:sale.field_sale_order_line__price_tax diff --git a/addons/sale_crm/i18n/my.po b/addons/sale_crm/i18n/my.po index 135122eac8d2c7..7405c9bc940e7c 100644 --- a/addons/sale_crm/i18n/my.po +++ b/addons/sale_crm/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -32,7 +32,7 @@ msgstr "" #. module: sale_crm #: model_terms:ir.ui.view,arch_db:sale_crm.crm_quotation_partner_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: sale_crm #: model_terms:ir.ui.view,arch_db:sale_crm.crm_quotation_partner_view_form diff --git a/addons/sale_expense/i18n/my.po b/addons/sale_expense/i18n/my.po index 107b6a24521676..55598924c37960 100644 --- a/addons/sale_expense/i18n/my.po +++ b/addons/sale_expense/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 12:32+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -110,7 +110,7 @@ msgstr "" #. module: sale_expense #: model:ir.model,name:sale_expense.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_expense #. odoo-python diff --git a/addons/sale_gelato/i18n/my.po b/addons/sale_gelato/i18n/my.po index 822b2a2396fea0..3caeead659ea5b 100644 --- a/addons/sale_gelato/i18n/my.po +++ b/addons/sale_gelato/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-02-10 13:24+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -215,7 +215,7 @@ msgstr "" #. module: sale_gelato #: model:ir.model,name:sale_gelato.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_gelato #: model:ir.model,name:sale_gelato.model_product_document diff --git a/addons/sale_loyalty/i18n/my.po b/addons/sale_loyalty/i18n/my.po index 8a3b0aebe432c3..0e10b02f7fc871 100644 --- a/addons/sale_loyalty/i18n/my.po +++ b/addons/sale_loyalty/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -120,7 +120,7 @@ msgstr "ဖန်တီးချိန်" #: model_terms:ir.ui.view,arch_db:sale_loyalty.sale_loyalty_coupon_wizard_view_form #: model_terms:ir.ui.view,arch_db:sale_loyalty.sale_loyalty_reward_wizard_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: sale_loyalty #. odoo-python diff --git a/addons/sale_pdf_quote_builder/i18n/my.po b/addons/sale_pdf_quote_builder/i18n/my.po index a07d225dc232c7..0e03d4b4987aab 100644 --- a/addons/sale_pdf_quote_builder/i18n/my.po +++ b/addons/sale_pdf_quote_builder/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -451,7 +451,7 @@ msgstr "" #. odoo-python #: code:addons/sale_pdf_quote_builder/models/sale_order.py:0 msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_pdf_quote_builder #: model:ir.model,name:sale_pdf_quote_builder.model_product_document diff --git a/addons/sale_pdf_quote_builder/i18n/ru.po b/addons/sale_pdf_quote_builder/i18n/ru.po index 8d7853f2453527..8e1ff17765e99a 100644 --- a/addons/sale_pdf_quote_builder/i18n/ru.po +++ b/addons/sale_pdf_quote_builder/i18n/ru.po @@ -1,26 +1,30 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sale_pdf_quote_builder -# +# * sale_pdf_quote_builder +# # Translators: # Irina Fedulova , 2024 # Wil Odoo, 2024 # Ilya Rozhkov, 2025 # Anastasiia Koroleva, 2025 -# +# "Anastasiia Koroleva (koan)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Anastasiia Koroleva, 2025\n" -"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Anastasiia Koroleva (koan)\" \n" +"Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (" +"n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: Weblate 5.12.2\n" #. module: sale_pdf_quote_builder #: model:ir.actions.report,print_report_name:sale_pdf_quote_builder.action_report_saleorder_raw @@ -34,12 +38,12 @@ msgstr "" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_kanban msgid "Templates:" -msgstr "" +msgstr "Шаблоны:" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_kanban msgid "Document type:" -msgstr "" +msgstr "Тип документа:" #. module: sale_pdf_quote_builder #. odoo-python @@ -48,6 +52,8 @@ msgid "" "A form field set as used in product documents can't be linked to a quotation" " document." msgstr "" +"Поле формы, заданное как используемое в документах по товарам, нельзя " +"связать с документом коммерческого предложения." #. module: sale_pdf_quote_builder #. odoo-python @@ -56,6 +62,8 @@ msgid "" "A form field set as used in quotation documents can't be linked to a product" " document." msgstr "" +"Поле формы, заданное как используемое в коммерческих предложениях, нельзя " +"связать с документом по товарам." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__access_token @@ -116,7 +124,7 @@ msgstr "URL-адрес вложения" #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order__available_product_document_ids #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order_line__available_product_document_ids msgid "Available Product Documents" -msgstr "" +msgstr "Доступные документы по товарам" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__checksum @@ -127,7 +135,7 @@ msgstr "Контрольная сумма/SHA1" #. odoo-javascript #: code:addons/sale_pdf_quote_builder/static/src/js/custom_content_kanban_like_widget/custom_field_card/custom_field_card.js:0 msgid "Click to write content for the PDF quote..." -msgstr "" +msgstr "Нажмите, чтобы ввести содержимое для PDF-предложения..." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__company_id @@ -138,12 +146,12 @@ msgstr "Компания" #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.product_document_form #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_form msgid "Configure dynamic fields" -msgstr "" +msgstr "Настроить динамические поля" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.product_document_form msgid "Configure the path to fill the form fields." -msgstr "" +msgstr "Настроить путь для заполнения полей формы." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__create_uid @@ -165,12 +173,12 @@ msgstr "Создать" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_search msgid "Customizable" -msgstr "" +msgstr "С возможностью настройки" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order__customizable_pdf_form_fields msgid "Customizable PDF Form Fields" -msgstr "" +msgstr "Настраиваемые поля PDF-формы" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__db_datas @@ -202,7 +210,7 @@ msgstr "Тип документа" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_search_view msgid "Document type" -msgstr "" +msgstr "Тип документа" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_kanban @@ -244,30 +252,30 @@ msgstr "Футер" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_pdf_form_field__name msgid "Form Field Name" -msgstr "" +msgstr "Название поля формы" #. module: sale_pdf_quote_builder #. odoo-python #: code:addons/sale_pdf_quote_builder/models/product_document.py:0 #: code:addons/sale_pdf_quote_builder/models/quotation_document.py:0 msgid "Form Fields" -msgstr "" +msgstr "Поля формы" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_product_document__form_field_ids #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__form_field_ids msgid "Form Fields Included" -msgstr "" +msgstr "Включенные поля формы" #. module: sale_pdf_quote_builder #: model:ir.model.constraint,message:sale_pdf_quote_builder.constraint_sale_pdf_form_field_unique_name_per_doc_type msgid "Form field name must be unique for a given document type." -msgstr "" +msgstr "Название поля формы должно быть уникальным для данного типа документа." #. module: sale_pdf_quote_builder #: model:ir.model,name:sale_pdf_quote_builder.model_sale_pdf_form_field msgid "Form fields of inside quotation documents." -msgstr "" +msgstr "Поля формы внутри документов коммерческого предложения." #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_search_view @@ -284,12 +292,12 @@ msgstr "Заголовок" #. module: sale_pdf_quote_builder #: model:ir.model.fields.selection,name:sale_pdf_quote_builder.selection__sale_pdf_form_field__document_type__quotation_document msgid "Header/Footer" -msgstr "" +msgstr "Верхний/нижний колонтитул" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order_template__quotation_document_ids msgid "Headers and footers" -msgstr "" +msgstr "Колонтитулы" #. module: sale_pdf_quote_builder #: model:ir.actions.act_window,name:sale_pdf_quote_builder.quotation_document_action @@ -297,7 +305,7 @@ msgstr "" #: model:ir.ui.menu,name:sale_pdf_quote_builder.sale_menu_quotation_document_action #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.res_config_settings_view_form msgid "Headers/Footers" -msgstr "" +msgstr "Колонтитулы (верхний/нижний)" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_form @@ -316,6 +324,8 @@ msgid "" "If unchecked, it will allow you to hide the header or footer without " "removing it." msgstr "" +"Если флажок не установлен, это позволит скрыть верхний или нижний колонтитул " +"без его удаления." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__image_height @@ -340,7 +350,7 @@ msgstr "Индексированное содержимое" #. module: sale_pdf_quote_builder #: model:ir.model.fields.selection,name:sale_pdf_quote_builder.selection__product_document__attached_on_sale__inside msgid "Inside quote pdf" -msgstr "" +msgstr "Внутри PDF-предложения" #. module: sale_pdf_quote_builder #. odoo-python @@ -349,6 +359,8 @@ msgid "" "Invalid form field name %(field_name)s. A form field name in a header or a " "footer can not start with \"sol_id_\"." msgstr "" +"Недопустимое имя поля формы %(field_name)s. Имя поля формы в колонтитуле не " +"может начинаться с «sol_id_»." #. module: sale_pdf_quote_builder #. odoo-python @@ -357,6 +369,8 @@ msgid "" "Invalid form field name %(field_name)s. It should only contain " "alphanumerics, hyphens or underscores." msgstr "" +"Недопустимое имя поля формы %(field_name)s. Имя должно содержать только " +"буквы, цифры, дефисы или подчеркивания." #. module: sale_pdf_quote_builder #. odoo-python @@ -365,11 +379,13 @@ msgid "" "Invalid path %(path)s. It should only contain alphanumerics, hyphens, " "underscores or points." msgstr "" +"Недопустимый путь %(path)s. Путь должен содержать только буквы, цифры, " +"дефисы, подчеркивания или точки." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order__is_pdf_quote_builder_available msgid "Is Pdf Quote Builder Available" -msgstr "" +msgstr "Доступен ли конструктор коммерческих предложений в формате PDF" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__public @@ -407,7 +423,7 @@ msgstr "Дата последнего обновления:" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_form msgid "Mark fields as safe to fill in the quote." -msgstr "" +msgstr "Пометить поля как доступные для заполнения в предложении." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__mimetype @@ -435,7 +451,7 @@ msgstr "В цитату можно вложить только документ #. odoo-python #: code:addons/sale_pdf_quote_builder/models/quotation_document.py:0 msgid "Only PDF documents can be used as header or footer." -msgstr "" +msgstr "В качестве колонтитулов можно использовать только PDF-документы." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__original_id @@ -454,12 +470,18 @@ msgid "" "
\n" " to boost your sales." msgstr "" +"Персонализируйте коммерческие предложения с помощью красивых верхних и " +"нижних колонтитулов,\n" +"
\n" +" чтобы увеличить продажи." #. module: sale_pdf_quote_builder #. odoo-python #: code:addons/sale_pdf_quote_builder/models/sale_pdf_form_field.py:0 msgid "Please use only relational fields until the last value of your path." msgstr "" +"Пожалуйста, используйте только связанные поля до последнего значения вашего " +"пути." #. module: sale_pdf_quote_builder #. odoo-python @@ -477,7 +499,7 @@ msgstr "Документ товара" #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_order_line__product_document_ids #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_pdf_form_field__product_document_ids msgid "Product Documents" -msgstr "" +msgstr "Документы по товарам" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.sale_order_template_form @@ -488,6 +510,15 @@ msgid "" " details of the quote and then the footer pages.
\n" " If empty, it will use those define in the company settings.
" msgstr "" +"Добавьте верхний и нижний колонтитул, чтобы создать привлекательное " +"коммерческое предложение с дополнительной информацией\n" +" о вашей компании, товарах и услугах.
\n" +" PDF вашего предложения будет сформирован путем " +"объединения титульных страниц, описаний товаров,\n" +" деталей предложения и затем завершающих страниц.
" +"\n" +" Если пусто, будут использованы значения из настроек " +"компании.
" #. module: sale_pdf_quote_builder #: model:ir.actions.report,name:sale_pdf_quote_builder.action_report_saleorder_raw @@ -497,12 +528,12 @@ msgstr "Коммерческое предложение/заказ" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_search_view msgid "Quotation Document" -msgstr "" +msgstr "Документ коммерческого предложения" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_sale_pdf_form_field__quotation_document_ids msgid "Quotation Documents" -msgstr "" +msgstr "Документы коммерческих предложений" #. module: sale_pdf_quote_builder #: model:ir.model,name:sale_pdf_quote_builder.model_sale_order_template @@ -518,7 +549,7 @@ msgstr "Шаблоны Коммерческого предложения" #. module: sale_pdf_quote_builder #: model:ir.model,name:sale_pdf_quote_builder.model_quotation_document msgid "Quotation's Headers & Footers" -msgstr "" +msgstr "Колонтитулы коммерческого предложения" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.sale_order_form_inherit_sale_pdf_quote_builder @@ -565,6 +596,8 @@ msgstr "Продажа : отображается в" #: model:ir.actions.server,name:sale_pdf_quote_builder.cron_post_upgrade_assign_missing_form_fields_ir_actions_server msgid "Sale Pdf Quote Builder: assign form fields to documents post upgrade" msgstr "" +"Конструктор PDF-предложений: назначение полей формы документам после " +"обновления" #. module: sale_pdf_quote_builder #: model:ir.model,name:sale_pdf_quote_builder.model_sale_order @@ -590,12 +623,12 @@ msgstr "Сохраненное имя файла" #. odoo-python #: code:addons/sale_pdf_quote_builder/models/sale_pdf_form_field.py:0 msgid "The field %(field_name)s doesn't exist on model %(model_name)s" -msgstr "" +msgstr "Поле %(field_name)s не существует в модели %(model_name)s" #. module: sale_pdf_quote_builder #: model:ir.model.fields,help:sale_pdf_quote_builder.field_sale_pdf_form_field__name msgid "The form field name as written in the PDF." -msgstr "" +msgstr "Название поля формы как указано в PDF." #. module: sale_pdf_quote_builder #: model:ir.model.fields,help:sale_pdf_quote_builder.field_sale_pdf_form_field__path @@ -603,6 +636,9 @@ msgid "" "The path to follow to dynamically fill the form field. \n" "Leave empty to be able to customized it in the quotation form." msgstr "" +"Путь, по которому заполняется поле формы.\n" +"Оставьте пустым, чтобы можно было настроить его в форме коммерческого " +"предложения." #. module: sale_pdf_quote_builder #: model:ir.model.fields,help:sale_pdf_quote_builder.field_sale_order_line__product_document_ids @@ -610,6 +646,8 @@ msgid "" "The product documents for this order line that will be merged in the PDF " "quote." msgstr "" +"Документы по товарам для этой позиции заказа, которые будут объединены в " +"коммерческое предложение в формате PDF." #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__theme_template_id @@ -619,7 +657,7 @@ msgstr "Тематический шаблон" #. module: sale_pdf_quote_builder #: model_terms:ir.ui.view,arch_db:sale_pdf_quote_builder.quotation_document_search msgid "This document" -msgstr "" +msgstr "Этот документ" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__type @@ -629,7 +667,7 @@ msgstr "Тип" #. module: sale_pdf_quote_builder #: model_terms:ir.actions.act_window,help:sale_pdf_quote_builder.quotation_document_action msgid "Upload quotation headers and footers" -msgstr "" +msgstr "Загрузите колонтитулы коммерческого предложения" #. module: sale_pdf_quote_builder #: model:ir.model.fields,field_description:sale_pdf_quote_builder.field_quotation_document__url diff --git a/addons/sale_product_matrix/i18n/my.po b/addons/sale_product_matrix/i18n/my.po index 2f85d9294420ca..3137e1d82657a7 100644 --- a/addons/sale_product_matrix/i18n/my.po +++ b/addons/sale_product_matrix/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:55+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -63,7 +63,7 @@ msgstr "" #. module: sale_product_matrix #: model:ir.model,name:sale_product_matrix.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_product_matrix #: model:ir.model.fields.selection,name:sale_product_matrix.selection__product_template__product_add_mode__configurator diff --git a/addons/sale_project/i18n/my.po b/addons/sale_project/i18n/my.po index 645b643e4a7907..7796558cac05dd 100644 --- a/addons/sale_project/i18n/my.po +++ b/addons/sale_project/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-06-06 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -451,7 +451,7 @@ msgstr "" #. module: sale_project #: model:ir.model,name:sale_project.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_project #: model:ir.model,name:sale_project.model_product_product diff --git a/addons/sale_purchase/i18n/my.po b/addons/sale_purchase/i18n/my.po index af45008a0398ed..869fdff71e3f6b 100644 --- a/addons/sale_purchase/i18n/my.po +++ b/addons/sale_purchase/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -121,7 +121,7 @@ msgstr "" #. module: sale_purchase #: model:ir.model,name:sale_purchase.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_purchase #. odoo-python @@ -142,7 +142,7 @@ msgstr "" #. module: sale_purchase #: model:ir.model,name:sale_purchase.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: sale_purchase #. odoo-python diff --git a/addons/sale_purchase_stock/i18n/my.po b/addons/sale_purchase_stock/i18n/my.po index 52a0037b7db637..3f61a3c1680259 100644 --- a/addons/sale_purchase_stock/i18n/my.po +++ b/addons/sale_purchase_stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -27,7 +27,7 @@ msgstr "အဝယ် အော်ဒါ" #. module: sale_purchase_stock #: model:ir.model,name:sale_purchase_stock.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: sale_purchase_stock #: model:ir.model,name:sale_purchase_stock.model_sale_order diff --git a/addons/sale_stock/i18n/my.po b/addons/sale_stock/i18n/my.po index 821ef3905514a8..445393401285f2 100644 --- a/addons/sale_stock/i18n/my.po +++ b/addons/sale_stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-22 18:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -457,7 +457,7 @@ msgstr "" #. module: sale_stock #: model:ir.model,name:sale_stock.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sale_stock #: model:ir.model,name:sale_stock.model_stock_move_line @@ -524,7 +524,7 @@ msgstr "" #. module: sale_stock #: model:ir.model.fields,field_description:sale_stock.field_sale_order_line__route_id msgid "Route" -msgstr "" +msgstr "လမ်းကြောင်း" #. module: sale_stock #: model:ir.model.fields,field_description:sale_stock.field_stock_move__sale_line_id @@ -740,7 +740,7 @@ msgstr "" #: model:ir.model.fields,field_description:sale_stock.field_sale_order_line__warehouse_id #: model:ir.model.fields,field_description:sale_stock.field_sale_report__warehouse_id msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: sale_stock #. odoo-python diff --git a/addons/sale_timesheet/i18n/da.po b/addons/sale_timesheet/i18n/da.po index d74394290ad242..64c334f854e30d 100644 --- a/addons/sale_timesheet/i18n/da.po +++ b/addons/sale_timesheet/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sale_timesheet -# +# * sale_timesheet +# # Translators: # Mads Søndergaard, 2024 # lhmflexerp , 2024 @@ -10,20 +10,22 @@ # Sammi Iversen , 2025 # Sanne Kristensen , 2025 # Kira Petersen, 2025 -# +# "Kira Petersen François (peti)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-27 13:04+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Kira Petersen, 2025\n" -"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Kira Petersen François (peti)\" \n" +"Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" #. module: sale_timesheet #. odoo-python @@ -1548,7 +1550,7 @@ msgstr "Enhedspris" #: model_terms:hr.job,website_description:sale_timesheet.job_interior_designer #: model_terms:hr.job,website_description:sale_timesheet.job_labour msgid "Valid work permit for Belgium" -msgstr "Gyldig arbejdstilladelse i Belgien" +msgstr "Gyldig arbejdstilladelse til Belgien" #. module: sale_timesheet #. odoo-python diff --git a/addons/sale_timesheet/i18n/my.po b/addons/sale_timesheet/i18n/my.po index 8de91d130e68be..56f4e69fc7714a 100644 --- a/addons/sale_timesheet/i18n/my.po +++ b/addons/sale_timesheet/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-01-27 13:04+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -325,7 +325,7 @@ msgstr "" #. module: sale_timesheet #: model_terms:ir.ui.view,arch_db:sale_timesheet.project_update_default_description msgid "Billed" -msgstr "" +msgstr "ဘေလ်ဆောင်ပြီး" #. module: sale_timesheet #: model:ir.model.fields.selection,name:sale_timesheet.selection__account_analytic_line__timesheet_invoice_type__billable_manual @@ -480,7 +480,7 @@ msgstr "" #. module: sale_timesheet #: model_terms:ir.ui.view,arch_db:sale_timesheet.project_create_invoice_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: sale_timesheet #: model_terms:hr.job,website_description:sale_timesheet.job_engineer @@ -1457,7 +1457,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sale_timesheet.project_update_default_description #: model_terms:ir.ui.view,arch_db:sale_timesheet.timesheets_analysis_report_list_inherited msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: sale_timesheet #: model:ir.model.fields,help:sale_timesheet.field_project_create_invoice__amount_to_invoice diff --git a/addons/sales_team/i18n/my.po b/addons/sales_team/i18n/my.po index e6460f0049d010..9c2cd110f6e057 100644 --- a/addons/sales_team/i18n/my.po +++ b/addons/sales_team/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:40+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -430,7 +430,7 @@ msgstr "" #. module: sales_team #: model:crm.tag,name:sales_team.categ_oppor1 msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: sales_team #: model:ir.model.fields,field_description:sales_team.field_crm_team__rating_ids diff --git a/addons/sms/i18n/ko.po b/addons/sms/i18n/ko.po index b5698db6d8a8b6..0320b3d6243130 100644 --- a/addons/sms/i18n/ko.po +++ b/addons/sms/i18n/ko.po @@ -1,25 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sms +# * sms # # Translators: # Daye Jeong, 2025 # Wil Odoo, 2025 # Sarah Park, 2025 # +# "Kwanghee Park (kwpa)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Sarah Park, 2025\n" -"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" +"Last-Translator: \"Kwanghee Park (kwpa)\" \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_composer__recipient_invalid_count @@ -353,7 +355,7 @@ msgstr "닫기" #. module: sms #: model:ir.model,name:sms.model_res_company msgid "Companies" -msgstr "" +msgstr "회사" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_composer__composition_mode diff --git a/addons/sms/i18n/my.po b/addons/sms/i18n/my.po index 499c64a7e6b6bf..748aba61de13a7 100644 --- a/addons/sms/i18n/my.po +++ b/addons/sms/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -272,7 +272,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:sms.sms_template_reset_view_form #: model_terms:ir.ui.view,arch_db:sms.sms_tsms_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: sms #: model:ir.model.fields.selection,name:sms.selection__sms_sms__state__canceled @@ -405,7 +405,7 @@ msgstr "" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_template_preview_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_account_code__display_name diff --git a/addons/sms/i18n/ru.po b/addons/sms/i18n/ru.po index b94425b652c53b..4297e4bff94a80 100644 --- a/addons/sms/i18n/ru.po +++ b/addons/sms/i18n/ru.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sms +# * sms # # Translators: # Olga Gutorova, 2024 @@ -8,21 +8,24 @@ # Wil Odoo, 2025 # Anastasiia Koroleva, 2025 # +# "Anastasiia Koroleva (koan)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2024-09-25 09:41+0000\n" -"Last-Translator: Anastasiia Koroleva, 2025\n" -"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Anastasiia Koroleva (koan)\" \n" +"Language-Team: Russian " +"\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (" +"n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: Weblate 5.12.2\n" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_composer__recipient_invalid_count @@ -59,7 +62,7 @@ msgstr "%s недействительные получатели" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_phone_view_form msgid "+1 555-555-555" -msgstr "" +msgstr "+1 555-555-555" #. module: sms #. odoo-javascript @@ -73,6 +76,8 @@ msgid "" " An error occurred with your account. Please " "contact the support for more information..." msgstr "" +" Произошла ошибка с вашим аккаунтом. Пожалуйста, " +"свяжитесь со службой поддержки для получения дополнительной информации..." #. module: sms #: model_terms:ir.ui.view,arch_db:sms.iap_account_view_form @@ -80,6 +85,8 @@ msgid "" " You cannot send SMS while your account is not " "registered." msgstr "" +" Вы не можете отправлять СМС, пока ваш аккаунт " +"не зарегистрирован." #. module: sms #: model_terms:ir.ui.view,arch_db:sms.iap_account_view_form @@ -87,6 +94,8 @@ msgid "" "\n" " Register" msgstr "" +"\n" +" Зарегистрировать" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.iap_account_view_form @@ -94,6 +103,8 @@ msgid "" "\n" " Set Sender Name" msgstr "" +"\n" +" Установить имя отправителя" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_template_view_form @@ -226,7 +237,7 @@ msgstr "Произошла ошибка при отправке SMS" #. odoo-javascript #: code:addons/sms/static/src/core/failure_model_patch.js:0 msgid "An error occurred when sending an SMS on “%(record_name)s”" -msgstr "" +msgstr "Произошла ошибка при отправке СМС на «%(record_name)s»" #. module: sms #. odoo-python @@ -235,6 +246,8 @@ msgid "" "An unknown error occurred. Please contact Odoo support if this error " "persists." msgstr "" +"Произошла неизвестная ошибка. Пожалуйста, свяжитесь со службой поддержки " +"Odoo, если ошибка повторится." #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_template__model_id @@ -339,7 +352,7 @@ msgstr "Выберите пример" #: code:addons/sms/wizard/sms_account_code.py:0 #: model_terms:ir.ui.view,arch_db:sms.sms_account_sender_view_form msgid "Choose your sender name" -msgstr "" +msgstr "Выберите имя отправителя" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.mail_resend_message_view_form @@ -350,7 +363,7 @@ msgstr "Закрыть" #. module: sms #: model:ir.model,name:sms.model_res_company msgid "Companies" -msgstr "" +msgstr "Компании" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_composer__composition_mode @@ -419,7 +432,7 @@ msgstr "Дата создания:" #. module: sms #: model:iap.service,unit_name:sms.iap_service_sms msgid "Credits" -msgstr "" +msgstr "Кредиты" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_sms__partner_id @@ -510,7 +523,7 @@ msgstr "Включить SMS" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_phone_view_form msgid "Enter a phone number to get an SMS with a verification code." -msgstr "" +msgstr "Введите номер телефона, чтобы получить СМС с кодом подтверждения." #. module: sms #: model:ir.model.fields.selection,name:sms.selection__sms_sms__state__error @@ -716,6 +729,9 @@ msgid "" "i.e. a plus sign (+), then country code, city code, and local phone number. " "For example: +1 555-555-555" msgstr "" +"Неверный номер телефона. Пожалуйста, убедитесь, что вы используете " +"международный формат: знак плюс (+), затем код страны, код города и местный " +"номер. Например: +1 555-555-555" #. module: sms #. odoo-python @@ -863,6 +879,8 @@ msgid "" "Note that this is not required, if you don't set a sender name, your SMS " "will be sent from a short code." msgstr "" +"Обратите внимание, это не является обязательным: если вы не установите имя " +"отправителя, ваше СМС будет отправлено с короткого номера." #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_resend_recipient__notification_id @@ -1047,7 +1065,7 @@ msgstr "Регистрация" #: code:addons/sms/models/iap_account.py:0 #: code:addons/sms/wizard/sms_account_phone.py:0 msgid "Register Account" -msgstr "" +msgstr "Зарегистрировать аккаунт" #. module: sms #. odoo-python @@ -1059,7 +1077,7 @@ msgstr "Зарегистрируйтесь сейчас." #: model_terms:ir.ui.view,arch_db:sms.sms_account_code_view_form #: model_terms:ir.ui.view,arch_db:sms.sms_account_phone_view_form msgid "Register your SMS account" -msgstr "" +msgstr "Зарегистрировать ваш СМС-аккаунт" #. module: sms #: model:ir.model.fields.selection,name:sms.selection__mail_notification__failure_type__sms_rejected @@ -1139,17 +1157,17 @@ msgstr "SMS (без примечания)" #. module: sms #: model:ir.model,name:sms.model_sms_account_phone msgid "SMS Account Registration Phone Number Wizard" -msgstr "" +msgstr "Инструмент для регистрации номера телефона для СМС-аккаунта" #. module: sms #: model:ir.model,name:sms.model_sms_account_sender msgid "SMS Account Sender Name Wizard" -msgstr "" +msgstr "Инструмент для указания имени отправителя" #. module: sms #: model:ir.model,name:sms.model_sms_account_code msgid "SMS Account Verification Code Wizard" -msgstr "" +msgstr "Инструмент для кода подтверждения для верификации СМС-аккаунта" #. module: sms #: model:ir.model.fields,field_description:sms.field_account_analytic_account__message_has_sms_error @@ -1189,7 +1207,7 @@ msgstr "Ошибка доставки SMS" #. odoo-javascript #: code:addons/sms/static/src/messaging_menu/messaging_menu_patch.js:0 msgid "SMS Failure: %(modelName)s" -msgstr "" +msgstr "Сбой СМС: %(modelName)s" #. module: sms #. odoo-javascript @@ -1352,7 +1370,7 @@ msgstr "Отправить SMS пакетом" #. module: sms #: model:iap.service,description:sms.iap_service_sms msgid "Send SMS to your contacts directly from your database." -msgstr "" +msgstr "Отправить СМС своим контактам прямо из базы данных." #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_composer_view_form @@ -1372,13 +1390,13 @@ msgstr "Отправить по номерам" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_phone_view_form msgid "Send verification code" -msgstr "" +msgstr "Отправить код подтверждения" #. module: sms #: model:ir.model.fields,field_description:sms.field_iap_account__sender_name #: model:ir.model.fields,field_description:sms.field_sms_account_sender__sender_name msgid "Sender Name" -msgstr "" +msgstr "Имя отправителя" #. module: sms #: model:ir.actions.act_window,name:sms.sms_resend_action @@ -1389,7 +1407,7 @@ msgstr "Сбои при отправке" #. odoo-python #: code:addons/sms/models/ir_actions_server.py:0 msgid "Sending SMS can only be done on a not transient mail.thread model" -msgstr "" +msgstr "Отправлять СМС можно только из постоянной модели mail.thread" #. module: sms #: model:ir.model.fields.selection,name:sms.selection__sms_sms__state__pending @@ -1410,7 +1428,7 @@ msgstr "Ошибка сервера" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_sender_view_form msgid "Set sender name" -msgstr "" +msgstr "Установить имя отправителя" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.mail_resend_message_view_form @@ -1439,7 +1457,7 @@ msgstr "Одиночный режим" #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_sender_view_form msgid "Skip for now" -msgstr "" +msgstr "Пропустить" #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_resend_recipient__sms_resend_id @@ -1494,6 +1512,8 @@ msgid "" "The SMS Service is currently unavailable for new users and new accounts " "registrations are suspended." msgstr "" +"СМС-сервис в настоящее время недоступен для новых пользователей, и " +"регистрация новых аккаунтов приостановлена." #. module: sms #. odoo-python @@ -1530,7 +1550,7 @@ msgstr "Тип документа, с которым этот шаблон мо #. odoo-python #: code:addons/sms/tools/sms_api.py:0 msgid "The verification code is incorrect." -msgstr "" +msgstr "Неверный код подтверждения." #. module: sms #. odoo-python @@ -1549,12 +1569,12 @@ msgstr "Это SMS было удалено, так как номер уже ис #: code:addons/sms/tools/sms_api.py:0 msgid "" "This account already has an existing sender name and it cannot be changed." -msgstr "" +msgstr "У этого аккаунта уже есть имя отправителя, и его нельзя изменить." #. module: sms #: model:ir.model.fields,help:sms.field_iap_account__sender_name msgid "This is the name that will be displayed as the sender of the SMS." -msgstr "" +msgstr "Это имя, которое будет отображаться как отправитель СМС." #. module: sms #: model_terms:ir.ui.view,arch_db:sms.res_partner_view_form @@ -1568,7 +1588,7 @@ msgstr "" #. odoo-python #: code:addons/sms/tools/sms_api.py:0 msgid "This phone number/account has been banned from our service." -msgstr "" +msgstr "Этот номер телефона/аккаунт был заблокирован в нашем сервисе." #. module: sms #: model:ir.model.fields,field_description:sms.field_sms_resend_recipient__resend @@ -1689,7 +1709,7 @@ msgstr "Предупреждение" #. odoo-python #: code:addons/sms/tools/sms_api.py:0 msgid "We were not able to find your account in our database." -msgstr "" +msgstr "Нам не удалось найти ваш аккаунт в нашей базе данных." #. module: sms #. odoo-python @@ -1698,6 +1718,8 @@ msgid "" "We were not able to reach you via your phone number. If you have requested " "multiple codes recently, please retry later." msgstr "" +"Нам не удалось связаться с вами по вашему номеру телефона. Если вы недавно " +"запрашивали несколько кодов, пожалуйста, повторите попытку позже." #. module: sms #: model:ir.model.fields,field_description:sms.field_res_partner__website_message_ids @@ -1750,7 +1772,7 @@ msgstr "На вашем IAP-аккаунте недостаточно креди #. odoo-python #: code:addons/sms/tools/sms_api.py:0 msgid "You tried too many times. Please retry later." -msgstr "" +msgstr "Вы сделали слишком много попыток. Пожалуйста, повторите попытку позже." #. module: sms #. odoo-javascript @@ -1763,7 +1785,7 @@ msgstr "Ваше SMS-сообщение должно содержать хотя #. odoo-python #: code:addons/sms/wizard/sms_account_code.py:0 msgid "Your SMS account has been successfully registered." -msgstr "" +msgstr "Ваш СМС-аккаунт был успешно зарегистрирован." #. module: sms #. odoo-python @@ -1772,6 +1794,8 @@ msgid "" "Your sender name must be between 3 and 11 characters long and only contain " "alphanumeric characters." msgstr "" +"Имя отправителя должно быть длиной от 3 до 11 символов и содержать только " +"буквенно-цифровые знаки." #. module: sms #: model_terms:ir.ui.view,arch_db:sms.sms_account_sender_view_form @@ -1781,12 +1805,16 @@ msgid "" " It must fit your company name, and you aren't " "allowed to modify it once you registered one, choose it carefully." msgstr "" +"Имя отправителя должно быть длиной от 3 до 11 символов и содержать только " +"буквенно-цифровые знаки.\n" +" Оно должно соответствовать названию вашей компании, " +"и вы не сможете изменить его после регистрации. Выбирайте его внимательно." #. module: sms #. odoo-python #: code:addons/sms/tools/sms_api.py:0 msgid "Your sms account has not been activated yet." -msgstr "" +msgstr "Ваш СМС-аккаунт еще не активирован." #. module: sms #. odoo-javascript diff --git a/addons/sms_twilio/i18n/ko.po b/addons/sms_twilio/i18n/ko.po index 0bd0b3dcdd269c..984c26c4bc5cb3 100644 --- a/addons/sms_twilio/i18n/ko.po +++ b/addons/sms_twilio/i18n/ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2025-09-05 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" "Last-Translator: \"Kwanghee Park (kwpa)\" \n" "Language-Team: Korean \n" @@ -23,11 +23,10 @@ msgstr "" #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "%(failure_type)s: %(failure_reason)s" -msgstr "" +msgstr "%(failure_type)s: %(failure_reason)s" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form -#, fuzzy msgid "+1 555-123-4567" msgstr "+1 555-123-4567" @@ -35,11 +34,10 @@ msgstr "+1 555-123-4567" #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "A 'To' phone number is required." -msgstr "" +msgstr "'받는 사람' 전화번호가 있어야 합니다." #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form -#, fuzzy msgid "ACabcde12345abcde12345abcde12345ab" msgstr "ACabcde12345abcde12345abcde12345ab" @@ -53,7 +51,7 @@ msgstr "계정 SID" #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "An error occurred while fetching the numbers." -msgstr "" +msgstr "번호를 가져오는 동안 오류가 발생했습니다." #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_twilio_auth_token @@ -64,7 +62,7 @@ msgstr "인증 토큰" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__sms_sms__failure_type__twilio_authentication msgid "Authentication Error\"" -msgstr "" +msgstr "인증 오류\"" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_res_company @@ -86,7 +84,7 @@ msgstr "환경설정 항목 설정" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.res_config_settings_view_form msgid "Configure Twilio Account" -msgstr "" +msgstr "Twilio 계정 환경설정" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__country_id @@ -123,7 +121,7 @@ msgstr "삭제" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Discard" -msgstr "" +msgstr "작성 취소" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__display_name @@ -135,7 +133,7 @@ msgstr "표시명" #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Error: %s" -msgstr "" +msgstr "오류: %s" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_sms__failure_type @@ -151,7 +149,7 @@ msgstr "ID" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__sms_sms__failure_type__twilio_callback msgid "Incorrect callback URL" -msgstr "" +msgstr "잘못된 콜백 URL" #. module: sms_twilio #. odoo-python @@ -201,6 +199,9 @@ msgid "" " " msgstr "" +"도움이 필요하신가요?\n" +" " #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_twilio_number_ids @@ -216,13 +217,13 @@ msgstr "발신 SMS" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Phone Numbers" -msgstr "" +msgstr "전화번호" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Please set the number to which you want to send a test SMS." -msgstr "" +msgstr "테스트 SMS를 보내려는 번호를 지정하세요." #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form @@ -244,7 +245,7 @@ msgstr "SMS Twilio 연결 마법사" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_composer msgid "Send SMS Wizard" -msgstr "" +msgstr "SMS 전송 마법사" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form @@ -254,12 +255,12 @@ msgstr "테스트용 SMS 발송" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__res_company__sms_provider__iap msgid "Send via Odoo" -msgstr "" +msgstr "Odoo를 통해 보내기" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__res_company__sms_provider__twilio msgid "Send via Twilio" -msgstr "" +msgstr "Twilio를 통해 보내기" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__sequence @@ -269,7 +270,7 @@ msgstr "순서" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__test_number msgid "Test Number" -msgstr "" +msgstr "테스트용 번호" #. module: sms_twilio #: model:ir.model.fields,help:sms_twilio.field_sms_twilio_number__country_code @@ -284,7 +285,7 @@ msgstr "" #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "The SMS has been sent from %s" -msgstr "" +msgstr "SMS가 %s부터 발송되었습니다" #. module: sms_twilio #. odoo-python @@ -296,7 +297,7 @@ msgstr "연락 번호 형식이 올바르지 않습니다." #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "This is a test SMS from Odoo" -msgstr "" +msgstr "Odoo에서 전송한 테스트 SMS입니다" #. module: sms_twilio #. odoo-python @@ -314,7 +315,7 @@ msgstr "Twilio 번호" #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Twilio SMS" -msgstr "" +msgstr "Twilio SMS" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form @@ -324,7 +325,6 @@ msgstr "Twilio SMS 연결 관리" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_sms__sms_twilio_sid #: model:ir.model.fields,field_description:sms_twilio.field_sms_tracker__sms_twilio_sid -#, fuzzy msgid "Twilio SMS SID" msgstr "Twilio SMS SID" @@ -332,28 +332,27 @@ msgstr "Twilio SMS SID" #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Twilio StatusCallback URL is incorrect" -msgstr "" +msgstr "Twilio 상태 콜백 URL이 잘못되었습니다" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Unknown error, please contact Odoo support" -msgstr "" +msgstr "알 수 없는 오류가 발생했습니다. Odoo 고객 지원팀에 문의하세요" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Unknown failure at sending, please contact Odoo support" -msgstr "" +msgstr "전송 중 알 수 없는 오류가 발생했습니다. Odoo 고객 지원팀에 문의하세요" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Update Account" -msgstr "" +msgstr "계정 업데이트" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form -#, fuzzy msgid "abcde12345abcde12345abcde12345ab" msgstr "abcde12345abcde12345abcde12345ab" diff --git a/addons/sms_twilio/i18n/ru.po b/addons/sms_twilio/i18n/ru.po index b0139b64b9a65c..3842b4c96b0084 100644 --- a/addons/sms_twilio/i18n/ru.po +++ b/addons/sms_twilio/i18n/ru.po @@ -1,152 +1,156 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * sms_twilio +# * sms_twilio # +# "Anastasiia Koroleva (koan)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 17.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2025-05-16 12:28+0000\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: \n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" +"Last-Translator: \"Anastasiia Koroleva (koan)\" \n" +"Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.12.2\n" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "%(failure_type)s: %(failure_reason)s" -msgstr "" +msgstr "%(failure_type)s: %(failure_reason)s" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "+1 555-123-4567" -msgstr "" +msgstr "+1 555-123-4567" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "A 'To' phone number is required." -msgstr "" +msgstr "Требуется номер телефона получателя." #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "ACabcde12345abcde12345abcde12345ab" -msgstr "" +msgstr "ACabcde12345abcde12345abcde12345ab" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_twilio_account_sid #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__sms_twilio_account_sid msgid "Account SID" -msgstr "" +msgstr "SID аккаунта" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "An error occurred while fetching the numbers." -msgstr "" +msgstr "Произошла ошибка при получении номеров." #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_twilio_auth_token #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__sms_twilio_auth_token msgid "Auth Token" -msgstr "" +msgstr "Токен аутентификации" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__sms_sms__failure_type__twilio_authentication msgid "Authentication Error\"" -msgstr "" +msgstr "Ошибка аутентификации»" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_res_company msgid "Companies" -msgstr "" +msgstr "Компании" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_sms__record_company_id #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__company_id #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__company_id msgid "Company" -msgstr "" +msgstr "Компании" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_res_config_settings msgid "Config Settings" -msgstr "" +msgstr "Настройки конфигурации" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.res_config_settings_view_form msgid "Configure Twilio Account" -msgstr "" +msgstr "Настроить аккаунт Twilio" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__country_id msgid "Country" -msgstr "" +msgstr "Страна" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__country_code msgid "Country Code" -msgstr "" +msgstr "Код страны" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__create_uid #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__create_uid msgid "Created by" -msgstr "" +msgstr "Создано:" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__create_date #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__create_date msgid "Created on" -msgstr "" +msgstr "Дата создания:" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Credentials" -msgstr "" +msgstr "Учетные данные" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Delete" -msgstr "" +msgstr "Удалить" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Discard" -msgstr "" +msgstr "Отменить" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__display_name #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__display_name msgid "Display Name" -msgstr "" +msgstr "Отображаемое имя" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Error: %s" -msgstr "" +msgstr "Ошибка: %s" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_sms__failure_type msgid "Failure Type" -msgstr "" +msgstr "Тип сбоя" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__id #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__id msgid "ID" -msgstr "" +msgstr "ID" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__sms_sms__failure_type__twilio_callback msgid "Incorrect callback URL" -msgstr "" +msgstr "Некорректный URL-адрес обратного вызова" #. module: sms_twilio #. odoo-python @@ -155,6 +159,8 @@ msgid "" "Invalid Twilio Account SID: must only contain alphanumeric characters after " "'AC'." msgstr "" +"Неверный SID аккаунта Twilio: должен содержать только буквенно-цифровые " +"символы после 'AC'." #. module: sms_twilio #. odoo-python @@ -162,30 +168,32 @@ msgstr "" msgid "" "Invalid Twilio Account SID: must start with 'AC' and be 34 characters long." msgstr "" +"Неверный SID аккаунта Twilio: должен начинаться с 'AC' и иметь длину 34 " +"символа." #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__write_uid #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последнее обновление:" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__write_date #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__write_date msgid "Last Updated on" -msgstr "" +msgstr "Дата последнего обновления:" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_tracker msgid "Link SMS to mailing/sms tracking models" -msgstr "" +msgstr "Привязать СМС к моделям отслеживания рассылок/СМС" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/models/res_company.py:0 #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Manage Twilio SMS" -msgstr "" +msgstr "Управлять СМС Twilio" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form @@ -194,75 +202,78 @@ msgid "" " " msgstr "" +"Нужна помощь?\n" +" " #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_twilio_number_ids #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__sms_twilio_number_ids msgid "Numbers" -msgstr "" +msgstr "Номера" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_sms msgid "Outgoing SMS" -msgstr "" +msgstr "Исходящие СМС" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Phone Numbers" -msgstr "" +msgstr "Номера телефонов" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Please set the number to which you want to send a test SMS." -msgstr "" +msgstr "Пожалуйста, укажите номер, на который вы хотите отправить тестовое СМС." #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Reload Numbers from Twilio" -msgstr "" +msgstr "Обновить номера из Twilio" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_res_company__sms_provider #: model:ir.model.fields,field_description:sms_twilio.field_res_config_settings__sms_provider #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__sms_provider msgid "SMS Provider" -msgstr "" +msgstr "Провайдер СМС" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_twilio_account_manage msgid "SMS Twilio Connection Wizard" -msgstr "" +msgstr "Инструмент для подключения СМС Twilio" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_composer msgid "Send SMS Wizard" -msgstr "" +msgstr "Инструмент для отправки СМС" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Send test SMS" -msgstr "" +msgstr "Отправить тестовое СМС" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__res_company__sms_provider__iap msgid "Send via Odoo" -msgstr "" +msgstr "Отправить через Odoo" #. module: sms_twilio #: model:ir.model.fields.selection,name:sms_twilio.selection__res_company__sms_provider__twilio msgid "Send via Twilio" -msgstr "" +msgstr "Отправить через Twilio" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__sequence msgid "Sequence" -msgstr "" +msgstr "Последовательность" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_account_manage__test_number msgid "Test Number" -msgstr "" +msgstr "Тестовый номер" #. module: sms_twilio #: model:ir.model.fields,help:sms_twilio.field_sms_twilio_number__country_code @@ -270,78 +281,83 @@ msgid "" "The ISO country code in two chars. \n" "You can use this field for quick search." msgstr "" +"Код страны в формате ISO из двух символов.\n" +"Вы можете использовать это поле для быстрого поиска." #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "The SMS has been sent from %s" -msgstr "" +msgstr "СМС было отправлено с %s" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "The number you're trying to reach is not correctly formatted." msgstr "" +"Номер, на который вы пытаетесь отправить сообщение, отформатирован неверно." #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "This is a test SMS from Odoo" -msgstr "" +msgstr "Это тестовое СМС из Odoo" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Twilio Authentication Error" -msgstr "" +msgstr "Ошибка аутентификации Twilio" #. module: sms_twilio #: model:ir.model,name:sms_twilio.model_sms_twilio_number #: model:ir.model.fields,field_description:sms_twilio.field_sms_twilio_number__number msgid "Twilio Number" -msgstr "" +msgstr "Номер Twilio" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/wizard/sms_twilio_account_manage.py:0 msgid "Twilio SMS" -msgstr "" +msgstr "СМС Twilio" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Twilio SMS Manage Connection" -msgstr "" +msgstr "Управление подключением СМС Twilio" #. module: sms_twilio #: model:ir.model.fields,field_description:sms_twilio.field_sms_sms__sms_twilio_sid #: model:ir.model.fields,field_description:sms_twilio.field_sms_tracker__sms_twilio_sid msgid "Twilio SMS SID" -msgstr "" +msgstr "SID СМС Twilio" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Twilio StatusCallback URL is incorrect" -msgstr "" +msgstr "URL-адрес обратного вызова статуса Twilio некорректен" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Unknown error, please contact Odoo support" -msgstr "" +msgstr "Неизвестная ошибка, пожалуйста, свяжитесь со службой поддержки Odoo" #. module: sms_twilio #. odoo-python #: code:addons/sms_twilio/tools/sms_api.py:0 msgid "Unknown failure at sending, please contact Odoo support" msgstr "" +"Неизвестный сбой при отправке, пожалуйста, свяжитесь со службой поддержки " +"Odoo" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "Update Account" -msgstr "" +msgstr "Обновить аккаунт" #. module: sms_twilio #: model_terms:ir.ui.view,arch_db:sms_twilio.sms_twilio_account_manage_view_form msgid "abcde12345abcde12345abcde12345ab" -msgstr "" +msgstr "abcde12345abcde12345abcde12345ab" diff --git a/addons/snailmail/i18n/my.po b/addons/snailmail/i18n/my.po index 1c8b09178f8d79..4496f25e8a6847 100644 --- a/addons/snailmail/i18n/my.po +++ b/addons/snailmail/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -108,7 +108,7 @@ msgstr "" #. module: snailmail #: model_terms:ir.ui.view,arch_db:snailmail.snailmail_letter_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: snailmail #: model_terms:ir.ui.view,arch_db:snailmail.snailmail_letter_format_error diff --git a/addons/spreadsheet/i18n/ko.po b/addons/spreadsheet/i18n/ko.po index 96dbba2d7872f3..b7f405dae0b53a 100644 --- a/addons/spreadsheet/i18n/ko.po +++ b/addons/spreadsheet/i18n/ko.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2025-08-25 06:40+0000\n" +"PO-Revision-Date: 2025-09-09 06:58+0000\n" "Last-Translator: \"Kwanghee Park (kwpa)\" \n" "Language-Team: Korean \n" @@ -7842,7 +7842,8 @@ msgstr "첫 번째 추가." msgid "" "The first and second arguments of [[FUNCTION_NAME]] must be non-empty " "matrices." -msgstr "" +msgstr "[[FUNCTION_NAME]]의 첫 번째 및 두 번째 인수는 비어 있지 않은 행렬이어야 " +"합니다." #. module: spreadsheet #. odoo-javascript @@ -11439,7 +11440,8 @@ msgstr "[[FUNCTION_NAME]] 에는 숫자 값이 필요합니다." msgid "" "[[FUNCTION_NAME]] expects the provided values of %(argName)s to be a non-" "empty matrix." -msgstr "" +msgstr "[[FUNCTION_NAME]]의 제공된 %(argName)s 값은 비어 있지 않은 행렬이라고 " +"가정합니다." #. module: spreadsheet #. odoo-javascript diff --git a/addons/spreadsheet/i18n/my.po b/addons/spreadsheet/i18n/my.po index d7de7667f53f9b..f39b3d92d9e66a 100644 --- a/addons/spreadsheet/i18n/my.po +++ b/addons/spreadsheet/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-09-05 18:40+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1517,7 +1517,7 @@ msgstr "" #. odoo-javascript #: code:addons/spreadsheet/static/src/o_spreadsheet/o_spreadsheet.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: spreadsheet #. odoo-javascript @@ -4392,25 +4392,25 @@ msgstr "ဘာသာစကားများ" #. odoo-javascript #: code:addons/spreadsheet/static/src/helpers/constants.js:0 msgid "Last 180 Days" -msgstr "" +msgstr "နောက်ဆုံး ရက် ၁၈၀" #. module: spreadsheet #. odoo-javascript #: code:addons/spreadsheet/static/src/helpers/constants.js:0 msgid "Last 3 Years" -msgstr "" +msgstr "နောက်ဆုံး ၃နှစ်" #. module: spreadsheet #. odoo-javascript #: code:addons/spreadsheet/static/src/helpers/constants.js:0 msgid "Last 30 Days" -msgstr "" +msgstr "နောက်ဆုံး ရက် ၃၀" #. module: spreadsheet #. odoo-javascript #: code:addons/spreadsheet/static/src/helpers/constants.js:0 msgid "Last 365 Days" -msgstr "" +msgstr "နောက်ဆုံး ၃၆၅ ရက်" #. module: spreadsheet #. odoo-javascript @@ -4422,7 +4422,7 @@ msgstr "နောက်ဆုံး ၇ ရက်" #. odoo-javascript #: code:addons/spreadsheet/static/src/helpers/constants.js:0 msgid "Last 90 Days" -msgstr "" +msgstr "နောက်ဆုံး ရက် ၉၀" #. module: spreadsheet #. odoo-javascript @@ -6195,7 +6195,7 @@ msgstr "" #: code:addons/spreadsheet/static/src/global_filters/components/filter_date_value/filter_date_value.xml:0 #: code:addons/spreadsheet/static/src/global_filters/components/filter_value/filter_value.xml:0 msgid "Select period..." -msgstr "" +msgstr "ကာလ ရွေးပါ..." #. module: spreadsheet #. odoo-javascript @@ -10328,7 +10328,7 @@ msgstr "" #: code:addons/spreadsheet/static/src/o_spreadsheet/o_spreadsheet.js:0 #: code:addons/spreadsheet/static/src/pivot/odoo_pivot.js:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: spreadsheet #. odoo-javascript @@ -10725,7 +10725,7 @@ msgstr "" #. odoo-javascript #: code:addons/spreadsheet/static/src/o_spreadsheet/o_spreadsheet.xml:0 msgid "Values" -msgstr "" +msgstr "တန်ဖိုးများ" #. module: spreadsheet #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_account/i18n/my.po b/addons/spreadsheet_dashboard_account/i18n/my.po index 47635c43cfe0d5..8eed71f27dc2b3 100644 --- a/addons/spreadsheet_dashboard_account/i18n/my.po +++ b/addons/spreadsheet_dashboard_account/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -207,7 +207,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_account/data/files/invoicing_dashboard.json:0 #: code:addons/spreadsheet_dashboard_account/data/files/invoicing_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_account #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_event_sale/i18n/my.po b/addons/spreadsheet_dashboard_event_sale/i18n/my.po index 70242338ac0759..6ff4b9c887ab0c 100644 --- a/addons/spreadsheet_dashboard_event_sale/i18n/my.po +++ b/addons/spreadsheet_dashboard_event_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-01 21:17+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -111,7 +111,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_event_sale/data/files/events_dashboard.json:0 #: code:addons/spreadsheet_dashboard_event_sale/data/files/events_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_event_sale #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_hr_expense/i18n/my.po b/addons/spreadsheet_dashboard_hr_expense/i18n/my.po index 5f17cd2c494d42..5c29df1571c714 100644 --- a/addons/spreadsheet_dashboard_hr_expense/i18n/my.po +++ b/addons/spreadsheet_dashboard_hr_expense/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -119,7 +119,7 @@ msgstr "ကာလ" #. odoo-javascript #: code:addons/spreadsheet_dashboard_hr_expense/data/files/expense_dashboard.json:0 msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: spreadsheet_dashboard_hr_expense #. odoo-javascript @@ -175,7 +175,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_hr_expense/data/files/expense_dashboard.json:0 #: code:addons/spreadsheet_dashboard_hr_expense/data/files/expense_sample_dashboard.json:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: spreadsheet_dashboard_hr_expense #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_pos_hr/i18n/my.po b/addons/spreadsheet_dashboard_pos_hr/i18n/my.po index a56b68e8583b52..ff8d913b53f308 100644 --- a/addons/spreadsheet_dashboard_pos_hr/i18n/my.po +++ b/addons/spreadsheet_dashboard_pos_hr/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -101,7 +101,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_dashboard.json:0 #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_sample_dashboard.json:0 msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: spreadsheet_dashboard_pos_hr #. odoo-javascript @@ -115,7 +115,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_dashboard.json:0 #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_pos_hr #. odoo-javascript @@ -171,7 +171,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_dashboard.json:0 #: code:addons/spreadsheet_dashboard_pos_hr/data/files/pos_sample_dashboard.json:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: spreadsheet_dashboard_pos_hr #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_pos_restaurant/i18n/my.po b/addons/spreadsheet_dashboard_pos_restaurant/i18n/my.po index 578422bf6695e8..44a07656237743 100644 --- a/addons/spreadsheet_dashboard_pos_restaurant/i18n/my.po +++ b/addons/spreadsheet_dashboard_pos_restaurant/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -206,7 +206,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_pos_restaurant/data/files/pos_restaurant_dashboard.json:0 #: code:addons/spreadsheet_dashboard_pos_restaurant/data/files/pos_restaurant_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_pos_restaurant #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_sale/i18n/my.po b/addons/spreadsheet_dashboard_sale/i18n/my.po index 45f6cea7cd7245..a8264e53c653ce 100644 --- a/addons/spreadsheet_dashboard_sale/i18n/my.po +++ b/addons/spreadsheet_dashboard_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -257,7 +257,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_sale/data/files/sales_sample_dashboard.json:0 #: model:spreadsheet.dashboard,name:spreadsheet_dashboard_sale.spreadsheet_dashboard_product msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: spreadsheet_dashboard_sale #. odoo-javascript @@ -298,7 +298,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_sale/data/files/sales_dashboard.json:0 #: code:addons/spreadsheet_dashboard_sale/data/files/sales_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_sale #: model:spreadsheet.dashboard,name:spreadsheet_dashboard_sale.spreadsheet_dashboard_sales diff --git a/addons/spreadsheet_dashboard_stock_account/i18n/my.po b/addons/spreadsheet_dashboard_stock_account/i18n/my.po index 158c8274076f8f..baf7bd65d23dad 100644 --- a/addons/spreadsheet_dashboard_stock_account/i18n/my.po +++ b/addons/spreadsheet_dashboard_stock_account/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-02 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -238,7 +238,7 @@ msgstr "" #. odoo-javascript #: code:addons/spreadsheet_dashboard_stock_account/data/files/warehouse_metrics_sample_dashboard.json:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: spreadsheet_dashboard_stock_account #. odoo-javascript @@ -269,7 +269,7 @@ msgstr "" #. odoo-javascript #: code:addons/spreadsheet_dashboard_stock_account/data/files/warehouse_metrics_dashboard.json:0 msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: spreadsheet_dashboard_stock_account #: model:spreadsheet.dashboard,name:spreadsheet_dashboard_stock_account.spreadsheet_dashboard_warehouse_metrics diff --git a/addons/spreadsheet_dashboard_website_sale/i18n/my.po b/addons/spreadsheet_dashboard_website_sale/i18n/my.po index 85f2e0fbc42792..9b0384a9a628bb 100644 --- a/addons/spreadsheet_dashboard_website_sale/i18n/my.po +++ b/addons/spreadsheet_dashboard_website_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -117,7 +117,7 @@ msgstr "ပစ္စည်းများ" #: code:addons/spreadsheet_dashboard_website_sale/data/files/ecommerce_dashboard.json:0 #: code:addons/spreadsheet_dashboard_website_sale/data/files/ecommerce_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_website_sale #. odoo-javascript diff --git a/addons/spreadsheet_dashboard_website_sale_slides/i18n/my.po b/addons/spreadsheet_dashboard_website_sale_slides/i18n/my.po index bd204333535ac5..1b982690c574c8 100644 --- a/addons/spreadsheet_dashboard_website_sale_slides/i18n/my.po +++ b/addons/spreadsheet_dashboard_website_sale_slides/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:49+0000\n" -"PO-Revision-Date: 2025-09-02 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -139,7 +139,7 @@ msgstr "" #: code:addons/spreadsheet_dashboard_website_sale_slides/data/files/elearning_dashboard.json:0 #: code:addons/spreadsheet_dashboard_website_sale_slides/data/files/elearning_sample_dashboard.json:0 msgid "Revenue" -msgstr "" +msgstr "အမြတ်" #. module: spreadsheet_dashboard_website_sale_slides #. odoo-javascript diff --git a/addons/stock/i18n/my.po b/addons/stock/i18n/my.po index 213753a0465f82..426bd3f0e07ec9 100644 --- a/addons/stock/i18n/my.po +++ b/addons/stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1582,7 +1582,7 @@ msgstr "" #: 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 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_rule__propagate_cancel @@ -2973,7 +2973,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_stock_orderpoint_snooze #: model_terms:ir.ui.view,arch_db:stock.view_stock_track_confirmation msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.stock_inventory_conflict_form_view @@ -3541,7 +3541,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_move_tree #: model_terms:ir.ui.view,arch_db:stock.vpicktree msgid "From" -msgstr "" +msgstr "မှ" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move_line__owner_id @@ -4698,7 +4698,7 @@ msgstr "" #: model:ir.model.fields.selection,name:stock.selection__stock_picking__products_availability_state__late #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search msgid "Late" -msgstr "" +msgstr "နောက်ကျ" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search @@ -4874,7 +4874,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_picking_type_form #: model_terms:ir.ui.view,arch_db:stock.view_warehouse msgid "Locations" -msgstr "" +msgstr "နေရာများ" #. module: stock #: model:ir.actions.server,name:stock.action_toggle_is_locked @@ -5992,7 +5992,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.stock_picking_type_menu #: model_terms:ir.ui.view,arch_db:stock.view_stock_rules_report msgid "Overview" -msgstr "" +msgstr "ခြုံငုံသုံးသပ်ချက်" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_quant__owner_id @@ -6214,7 +6214,7 @@ msgstr "" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_move__product_packaging_id msgid "Packaging" -msgstr "" +msgstr "ထုပ်ပိုးပုံ" #. module: stock #: model:ir.model.fields,help:stock.field_stock_package_type__height @@ -6579,7 +6579,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_move_search #: model_terms:ir.ui.view,arch_db:stock.warehouse_orderpoint_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_picking__products_availability @@ -7707,7 +7707,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.stock_location_route_view_search #: model_terms:ir.ui.view,arch_db:stock.view_stock_rule_filter msgid "Route" -msgstr "" +msgstr "လမ်းကြောင်း" #. module: stock #: model:ir.model.fields,field_description:stock.field_stock_rule__route_company_id @@ -7731,7 +7731,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.stock_location_route_tree #: model_terms:ir.ui.view,arch_db:stock.view_warehouse msgid "Routes" -msgstr "" +msgstr "လမ်းကြောင်းများ" #. module: stock #: model:ir.model.fields,field_description:stock.field_product_product__has_available_route_ids @@ -9371,7 +9371,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_move_tree #: model_terms:ir.ui.view,arch_db:stock.vpicktree msgid "To" -msgstr "" +msgstr "ဆီသို့" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.quant_search_view @@ -10110,7 +10110,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.stock_picking_type_kanban #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search msgid "Waiting" -msgstr "" +msgstr "စောင့်ဆိုင်း" #. module: stock #: model:ir.model.fields.selection,name:stock.selection__stock_move__state__waiting @@ -10161,7 +10161,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.view_warehouse_tree #: model_terms:ir.ui.view,arch_db:stock.warehouse_orderpoint_search msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: stock #: model_terms:ir.ui.view,arch_db:stock.view_warehouse @@ -10220,7 +10220,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.stock_location_route_form_view #: model_terms:ir.ui.view,arch_db:stock.view_stock_replenishment_info msgid "Warehouses" -msgstr "" +msgstr "ဂိုဒေါင်များ" #. module: stock #: model:ir.model,name:stock.model_stock_warn_insufficient_qty @@ -10276,7 +10276,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock.res_config_settings_view_form #: model_terms:ir.ui.view,arch_db:stock.view_picking_internal_search msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: stock #: model:ir.model.fields,field_description:stock.field_res_config_settings__group_warning_stock diff --git a/addons/stock_account/i18n/my.po b/addons/stock_account/i18n/my.po index 4a6394db326330..3316d09b9afcbc 100644 --- a/addons/stock_account/i18n/my.po +++ b/addons/stock_account/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-01 07:25+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -212,7 +212,7 @@ msgstr "" #. module: stock_account #: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock_account #. odoo-python @@ -590,7 +590,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id #: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: stock_account #. odoo-python @@ -1257,7 +1257,7 @@ msgstr "" #. module: stock_account #: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form msgid "locations" -msgstr "" +msgstr "နေရာများ" #. module: stock_account #: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document diff --git a/addons/stock_delivery/i18n/my.po b/addons/stock_delivery/i18n/my.po index 76d22374241c21..f60bb8d1cf5b94 100644 --- a/addons/stock_delivery/i18n/my.po +++ b/addons/stock_delivery/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -97,7 +97,7 @@ msgstr "" #. module: stock_delivery #: model_terms:ir.ui.view,arch_db:stock_delivery.view_picking_withcarrier_out_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock_delivery #: model_terms:ir.ui.view,arch_db:stock_delivery.view_picking_withcarrier_out_form @@ -179,7 +179,7 @@ msgstr "" #. module: stock_delivery #: model_terms:ir.ui.view,arch_db:stock_delivery.choose_delivery_package_view_form msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: stock_delivery #: model:ir.model.fields,field_description:stock_delivery.field_choose_delivery_package__display_name @@ -311,7 +311,7 @@ msgstr "" #. module: stock_delivery #: model:ir.model,name:stock_delivery.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: stock_delivery #: model:ir.model,name:stock_delivery.model_stock_move_line @@ -342,7 +342,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_delivery.field_delivery_carrier__route_ids #: model_terms:ir.ui.view,arch_db:stock_delivery.view_delivery_carrier_form_inherit_stock_delivery msgid "Routes" -msgstr "" +msgstr "လမ်းကြောင်းများ" #. module: stock_delivery #: model:ir.model.fields,help:stock_delivery.field_product_product__country_of_origin diff --git a/addons/stock_landed_costs/i18n/my.po b/addons/stock_landed_costs/i18n/my.po index bd5e0725128951..722434d26cf279 100644 --- a/addons/stock_landed_costs/i18n/my.po +++ b/addons/stock_landed_costs/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-25 08:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -117,7 +117,7 @@ msgstr "" #. module: stock_landed_costs #: model_terms:ir.ui.view,arch_db:stock_landed_costs.view_stock_landed_cost_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock_landed_costs #: model:ir.model.fields.selection,name:stock_landed_costs.selection__stock_landed_cost__state__cancel @@ -547,7 +547,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_landed_costs.field_stock_landed_cost_lines__product_id #: model:ir.model.fields,field_description:stock_landed_costs.field_stock_valuation_adjustment_lines__product_id msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: stock_landed_costs #: model:ir.model.fields,field_description:stock_landed_costs.field_account_move_line__product_type @@ -557,7 +557,7 @@ msgstr "" #. module: stock_landed_costs #: model:ir.model,name:stock_landed_costs.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "အဝယ် အော်ဒါ လိုင်း" #. module: stock_landed_costs #: model:ir.model.fields,field_description:stock_landed_costs.field_stock_valuation_adjustment_lines__quantity @@ -638,7 +638,7 @@ msgstr "" #. module: stock_landed_costs #: model:ir.model.fields,field_description:stock_landed_costs.field_stock_landed_cost__amount_total msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: stock_landed_costs #: model:ir.model.fields,field_description:stock_landed_costs.field_stock_landed_cost__picking_ids diff --git a/addons/stock_picking_batch/i18n/my.po b/addons/stock_picking_batch/i18n/my.po index a8991048003d0a..fe5955aa316ad5 100644 --- a/addons/stock_picking_batch/i18n/my.po +++ b/addons/stock_picking_batch/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-19 20:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -295,7 +295,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:stock_picking_batch.stock_picking_batch_form #: model_terms:ir.ui.view,arch_db:stock_picking_batch.stock_picking_to_batch_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock_picking_batch #: model:ir.model.fields.selection,name:stock_picking_batch.selection__stock_picking_batch__state__cancel @@ -736,7 +736,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_picking_batch.field_stock_picking_type__wave_group_by_product #: model_terms:ir.ui.view,arch_db:stock_picking_batch.report_picking_batch msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: stock_picking_batch #: model_terms:ir.ui.view,arch_db:stock_picking_batch.report_picking_batch @@ -1057,7 +1057,7 @@ msgstr "" #: model:ir.model,name:stock_picking_batch.model_stock_warehouse #: model:ir.model.fields,field_description:stock_picking_batch.field_stock_picking_batch__warehouse_id msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: stock_picking_batch #: model:ir.model.fields,field_description:stock_picking_batch.field_stock_picking_type__wave_location_ids diff --git a/addons/stock_sms/i18n/my.po b/addons/stock_sms/i18n/my.po index 56c051fe0dc8e6..03acd85c64f80d 100644 --- a/addons/stock_sms/i18n/my.po +++ b/addons/stock_sms/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:56+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -30,7 +30,7 @@ msgstr "" #. module: stock_sms #: model_terms:ir.ui.view,arch_db:stock_sms.view_confirm_stock_sms msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: stock_sms #: model:ir.model,name:stock_sms.model_res_company diff --git a/addons/web/i18n/my.po b/addons/web/i18n/my.po index a07bf0545891c3..06d7d1d62bab26 100644 --- a/addons/web/i18n/my.po +++ b/addons/web/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:39+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -36,7 +36,7 @@ msgstr "" #. odoo-javascript #: code:addons/web/static/src/core/l10n/translation.js:0 msgid "%d days ago" -msgstr "" +msgstr "%d နေ့ အကြာက" #. module: web #. odoo-javascript @@ -72,7 +72,7 @@ msgstr "" #. odoo-javascript #: code:addons/web/static/src/views/fields/remaining_days/remaining_days_field.js:0 msgid "%s days ago" -msgstr "" +msgstr "%s နေ့ အကြာက" #. module: web #. odoo-javascript @@ -1519,7 +1519,7 @@ msgstr "" #: code:addons/web/static/src/views/view_dialogs/export_data_dialog.xml:0 #: code:addons/web/static/src/webclient/settings_form_view/fields/upgrade_dialog.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: web #. odoo-javascript @@ -2384,7 +2384,7 @@ msgstr "" #: code:addons/web/static/src/webclient/settings_form_view/settings_confirmation_dialog.xml:0 #: model_terms:ir.ui.view,arch_db:web.view_base_document_layout msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: web #. odoo-javascript @@ -5017,7 +5017,7 @@ msgstr "" #. odoo-javascript #: code:addons/web/static/src/webclient/settings_form_view/widgets/res_config_invite_users.xml:0 msgid "Pending Invitations:" -msgstr "" +msgstr "ဆိုင်းငံ့ဆဲ ဖိတ်ကြားချက်များ:" #. module: web #. odoo-javascript @@ -6756,7 +6756,7 @@ msgstr "" #: code:addons/web/static/src/views/graph/graph_model.js:0 #: code:addons/web/static/src/views/pivot/pivot_model.js:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: web #. odoo-javascript @@ -7144,7 +7144,7 @@ msgstr "" #. odoo-javascript #: code:addons/web/static/src/views/fields/properties/property_definition.xml:0 msgid "Values" -msgstr "" +msgstr "တန်ဖိုးများ" #. module: web #. odoo-javascript @@ -7246,7 +7246,7 @@ msgstr "" #. odoo-python #: code:addons/web/models/models.py:0 msgid "Warnings" -msgstr "" +msgstr "သတိပေးချက်များ" #. module: web #. odoo-javascript diff --git a/addons/web_editor/i18n/my.po b/addons/web_editor/i18n/my.po index c5ccc7d27c3ef6..287d3cc4539d3e 100644 --- a/addons/web_editor/i18n/my.po +++ b/addons/web_editor/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-29 18:38+0000\n" -"PO-Revision-Date: 2025-09-06 22:20+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -634,7 +634,7 @@ msgstr "" #: code:addons/web_editor/static/src/js/wysiwyg/widgets/chatgpt_translate_dialog.xml:0 #: code:addons/web_editor/static/src/xml/snippets.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: web_editor #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options @@ -949,7 +949,7 @@ msgstr "" #: code:addons/web_editor/static/src/xml/snippets.xml:0 #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: web_editor #. odoo-javascript diff --git a/addons/website/i18n/lv.po b/addons/website/i18n/lv.po index 61cf25b029a899..a82f932bbb48b8 100644 --- a/addons/website/i18n/lv.po +++ b/addons/website/i18n/lv.po @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 22:09+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Aleksejs Ivanovs \n" "Language-Team: Latvian \n" @@ -59,6 +59,8 @@ msgid "" "\" This company transformed our business.
Their solutions are " "innovative and reliable. \"" msgstr "" +"\" Šis uzņēmums ir mainījis mūsu biznesu.
Viņu risinājumi ir inovatīvi " +"un uzticami. \"" #. module: website #: model_terms:ir.ui.view,arch_db:website.s_blockquote diff --git a/addons/website/i18n/my.po b/addons/website/i18n/my.po index 43ff00192961c0..a4bff8f016a677 100644 --- a/addons/website/i18n/my.po +++ b/addons/website/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-08 18:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -3607,7 +3607,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:website.view_edit_third_party_domains #: model_terms:ir.ui.view,arch_db:website.view_website_form_view_themes_modal msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: website #. odoo-javascript @@ -5178,7 +5178,7 @@ msgstr "" #: code:addons/website/static/src/components/edit_head_body_dialog/edit_head_body_dialog.xml:0 #: code:addons/website/static/src/xml/website.editor.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: website #: model_terms:ir.ui.view,arch_db:website.s_card @@ -7153,7 +7153,7 @@ msgstr "" #: model:ir.model.fields,field_description:website.field_theme_website_page__header_color #: model:ir.model.fields,field_description:website.field_website_page__header_color msgid "Header Color" -msgstr "" +msgstr "ခေါင်းစီး အရောင်" #. module: website #: model:ir.model.fields,field_description:website.field_theme_website_page__header_overlay @@ -11851,7 +11851,7 @@ msgstr "" #: model:ir.model.fields,field_description:website.field_website_rewrite__route_id #: model:ir.model.fields,field_description:website.field_website_route__path msgid "Route" -msgstr "" +msgstr "လမ်းကြောင်း" #. module: website #. odoo-javascript diff --git a/addons/website_crm_iap_reveal/i18n/my.po b/addons/website_crm_iap_reveal/i18n/my.po index 72bc0b067bb0b7..6daf8b39787693 100644 --- a/addons/website_crm_iap_reveal/i18n/my.po +++ b/addons/website_crm_iap_reveal/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-10-26 21:56+0000\n" -"PO-Revision-Date: 2025-09-06 09:02+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -153,7 +153,7 @@ msgstr "" #. module: website_crm_iap_reveal #: model_terms:ir.ui.view,arch_db:website_crm_iap_reveal.crm_reveal_rule_form msgid "From" -msgstr "" +msgstr "မှ" #. module: website_crm_iap_reveal #: model:ir.model.fields,field_description:website_crm_iap_reveal.field_crm_reveal_rule__lead_ids diff --git a/addons/website_crm_partner_assign/i18n/my.po b/addons/website_crm_partner_assign/i18n/my.po index 4591e118660057..1d4b03f878265a 100644 --- a/addons/website_crm_partner_assign/i18n/my.po +++ b/addons/website_crm_partner_assign/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:41+0000\n" -"PO-Revision-Date: 2025-09-06 22:21+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -372,7 +372,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:website_crm_partner_assign.portal_my_opportunities #: model_terms:ir.ui.view,arch_db:website_crm_partner_assign.portal_my_opportunity msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: website_crm_partner_assign #: model_terms:ir.ui.view,arch_db:website_crm_partner_assign.portal_my_opportunity diff --git a/addons/website_event/i18n/my.po b/addons/website_event/i18n/my.po index b6d177a9908d51..da609da86cc9b8 100644 --- a/addons/website_event/i18n/my.po +++ b/addons/website_event/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-23 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -407,7 +407,7 @@ msgstr "" #. module: website_event #: model_terms:ir.ui.view,arch_db:website_event.registration_attendee_details msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: website_event #: model_terms:ir.ui.view,arch_db:website_event.snippet_options diff --git a/addons/website_event_booth_sale/i18n/my.po b/addons/website_event_booth_sale/i18n/my.po index 1704d551f4c64f..aaf51f04482572 100644 --- a/addons/website_event_booth_sale/i18n/my.po +++ b/addons/website_event_booth_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -52,7 +52,7 @@ msgstr "ငွေပေးချေမှု" #. module: website_event_booth_sale #: model:ir.model,name:website_event_booth_sale.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_event_booth_sale #: model:ir.model,name:website_event_booth_sale.model_product_product diff --git a/addons/website_event_meet/i18n/my.po b/addons/website_event_meet/i18n/my.po index bc1daee1138811..89fb81ec3e2ab1 100644 --- a/addons/website_event_meet/i18n/my.po +++ b/addons/website_event_meet/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-06 09:04+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -174,7 +174,7 @@ msgstr "" #. odoo-javascript #: code:addons/website_event_meet/static/src/xml/website_event_meeting_room.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: website_event_meet #: model:ir.model.fields,field_description:website_event_meet.field_event_meeting_room__display_name diff --git a/addons/website_event_sale/i18n/my.po b/addons/website_event_sale/i18n/my.po index e4c7a45dc2fc5b..e44feb63cbc86f 100644 --- a/addons/website_event_sale/i18n/my.po +++ b/addons/website_event_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -100,7 +100,7 @@ msgstr "" #. module: website_event_sale #: model_terms:ir.ui.view,arch_db:website_event_sale.modal_ticket_registration msgid "From" -msgstr "" +msgstr "မှ" #. module: website_event_sale #: model_terms:ir.ui.view,arch_db:website_event_sale.registration_attendee_details @@ -125,7 +125,7 @@ msgstr "" #. module: website_event_sale #: model:ir.model,name:website_event_sale.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_event_sale #: model:ir.model,name:website_event_sale.model_product_product diff --git a/addons/website_forum/i18n/my.po b/addons/website_forum/i18n/my.po index f0dbb5a4e612e6..45ba034ff58f57 100644 --- a/addons/website_forum/i18n/my.po +++ b/addons/website_forum/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:54+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1526,7 +1526,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:website_forum.post_answer #: model_terms:ir.ui.view,arch_db:website_forum.post_comment msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: website_forum #: model:gamification.badge,name:website_forum.badge_6 diff --git a/addons/website_hr_recruitment/i18n/da.po b/addons/website_hr_recruitment/i18n/da.po index bc2b14381797bc..384f99fd813464 100644 --- a/addons/website_hr_recruitment/i18n/da.po +++ b/addons/website_hr_recruitment/i18n/da.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-14 20:47+0000\n" -"PO-Revision-Date: 2025-08-20 09:39+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: \"Kira Petersen François (peti)\" \n" "Language-Team: Danish \n" @@ -760,7 +760,7 @@ msgstr "SEO navn" #. module: website_hr_recruitment #: model:ir.model.fields,help:website_hr_recruitment.field_hr_job__website_published msgid "Set if the application is published on the website of the company." -msgstr "Indstil hvis ansøgningen offentliggøres på virksomhedens hjemmeside." +msgstr "Vælg, om ansøgningen skal vises på virksomhedens hjemmeside." #. module: website_hr_recruitment #. odoo-javascript @@ -828,8 +828,9 @@ msgid "" "There are currently no open job opportunities,
\n" " but feel free to contact us for a spontaneous application." msgstr "" -"Der er i øjeblikket ingen ledige jobmuligheder,
\n" -" men du er velkommen til at kontakte osfor en spontan ansøgning. " +"Der er i øjeblikket ingen ledige stillinger,
\n" +" men du er velkommen til at sende osen uopfordret ansøgning." #. module: website_hr_recruitment #. odoo-javascript @@ -855,7 +856,7 @@ msgstr "Uspecificeret type" #. module: website_hr_recruitment #: model_terms:ir.ui.view,arch_db:website_hr_recruitment.default_website_description msgid "Valid work permit for Belgium" -msgstr "Gyldig arbejdstilladelse i Belgien" +msgstr "Gyldig arbejdstilladelse til Belgien" #. module: website_hr_recruitment #: model:ir.model.fields,field_description:website_hr_recruitment.field_hr_job__website_published diff --git a/addons/website_livechat/i18n/da.po b/addons/website_livechat/i18n/da.po index 7f279b4bb17ab9..dc71d5580e3393 100644 --- a/addons/website_livechat/i18n/da.po +++ b/addons/website_livechat/i18n/da.po @@ -1,26 +1,28 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * website_livechat -# +# * website_livechat +# # Translators: # Mads Søndergaard, 2024 # Sanne Kristensen , 2024 # Martin Trigaux, 2024 # Sammi Iversen , 2025 -# +# "Kira Petersen François (peti)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2024-09-25 09:42+0000\n" -"Last-Translator: Sammi Iversen , 2025\n" -"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Kira Petersen François (peti)\" \n" +"Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" #. module: website_livechat #: model:ir.model.fields,field_description:website_livechat.field_website_visitor__session_count @@ -296,7 +298,7 @@ msgstr "Gæst" #. odoo-python #: code:addons/website_livechat/models/discuss_channel.py:0 msgid "Visitor #%(id)d left the conversation." -msgstr "Besøgende #%(id)d forlod samtalen." +msgstr "Besøgende #%(id)d har forladt samtalen." #. module: website_livechat #. odoo-python diff --git a/addons/website_partner/i18n/da.po b/addons/website_partner/i18n/da.po index 83e72aee6529b6..64b1258c182513 100644 --- a/addons/website_partner/i18n/da.po +++ b/addons/website_partner/i18n/da.po @@ -1,25 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * website_partner -# +# * website_partner +# # Translators: # Martin Trigaux, 2024 # Ejner Sønniksen , 2024 # Sammi Iversen , 2025 -# +# "Kira Petersen François (peti)" , 2025. msgid "" msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2024-09-25 09:42+0000\n" -"Last-Translator: Sammi Iversen , 2025\n" -"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" +"Last-Translator: \"Kira Petersen François (peti)\" \n" +"Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" #. module: website_partner #: model:ir.model,name:website_partner.model_res_partner @@ -29,7 +31,7 @@ msgstr "Kontakt" #. module: website_partner #: model_terms:ir.ui.view,arch_db:website_partner.partner_page msgid "DROP BUILDING BLOCKS HERE TO MAKE THEM AVAILABLE ACROSS ALL PARTNERS" -msgstr "SLIP BYGGEKLODENE HER FOR AT GØRE DEM TILGÆNGELIGE PÅ ALLE PARTNERE" +msgstr "SLIP DESIGNMODULER HER FOR AT GØRE DEM TILGÆNGELIGE FOR ALLE PARTNERE" #. module: website_partner #: model:ir.model.fields,field_description:website_partner.field_res_partner__is_seo_optimized diff --git a/addons/website_sale/i18n/my.po b/addons/website_sale/i18n/my.po index ede1542010f6c4..74c1762ad73b28 100644 --- a/addons/website_sale/i18n/my.po +++ b/addons/website_sale/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-11 18:38+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1724,7 +1724,7 @@ msgstr "" #. odoo-javascript #: code:addons/website_sale/static/src/xml/website_sale_reorder_modal.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: website_sale #: model_terms:ir.ui.view,arch_db:website_sale.coupon_form @@ -3218,7 +3218,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:website_sale.sale_report_view_search_website #: model_terms:ir.ui.view,arch_db:website_sale.website_sale_visitor_page_view_search msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_sale #: model:ir.actions.server,name:website_sale.dynamic_snippet_accessories_action @@ -4361,7 +4361,7 @@ msgstr "" #. odoo-javascript #: code:addons/website_sale/static/src/xml/website_sale_reorder_modal.xml:0 msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: website_sale #: model:ir.model.fields,help:website_sale.field_website_visitor__product_count @@ -4465,7 +4465,7 @@ msgstr "" #. module: website_sale #: model_terms:ir.ui.view,arch_db:website_sale.s_add_to_cart_options msgid "Variant" -msgstr "" +msgstr "မူကွဲ" #. module: website_sale #: model:ir.model.fields,field_description:website_sale.field_product_product__variant_ribbon_id diff --git a/addons/website_sale_collect/i18n/my.po b/addons/website_sale_collect/i18n/my.po index 1b41d353962ec8..8ce3391e22b1b7 100644 --- a/addons/website_sale_collect/i18n/my.po +++ b/addons/website_sale_collect/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-12-16 13:41+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -200,7 +200,7 @@ msgstr "" #. module: website_sale_collect #: model:ir.model,name:website_sale_collect.model_stock_warehouse msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: website_sale_collect #: model:ir.model,name:website_sale_collect.model_website diff --git a/addons/website_sale_gelato/i18n/my.po b/addons/website_sale_gelato/i18n/my.po index b7f0401eabfcc5..41ce5202e1a4ef 100644 --- a/addons/website_sale_gelato/i18n/my.po +++ b/addons/website_sale_gelato/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-02-04 14:15+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -28,7 +28,7 @@ msgstr "" #. module: website_sale_gelato #: model:ir.model,name:website_sale_gelato.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_sale_gelato #: model:ir.model,name:website_sale_gelato.model_product_document diff --git a/addons/website_sale_mondialrelay/i18n/my.po b/addons/website_sale_mondialrelay/i18n/my.po index 2eb236f369614b..906d4d7b6c11a4 100644 --- a/addons/website_sale_mondialrelay/i18n/my.po +++ b/addons/website_sale_mondialrelay/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-25 07:50+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -29,7 +29,7 @@ msgstr "" #. odoo-javascript #: code:addons/website_sale_mondialrelay/static/src/xml/website_sale_mondialrelay.xml:0 msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: website_sale_mondialrelay #. odoo-javascript diff --git a/addons/website_sale_slides/i18n/my.po b/addons/website_sale_slides/i18n/my.po index 5449f508aff455..1914c2e3a23e85 100644 --- a/addons/website_sale_slides/i18n/my.po +++ b/addons/website_sale_slides/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-09-26 08:56+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -173,7 +173,7 @@ msgstr "" #: model:ir.model,name:website_sale_slides.model_product_template #: model:ir.model.fields,field_description:website_sale_slides.field_slide_channel__product_id msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_sale_slides #: model:ir.model,name:website_sale_slides.model_product_product diff --git a/addons/website_sale_stock/i18n/my.po b/addons/website_sale_stock/i18n/my.po index ff4b1a4279dc05..4444f68f70b850 100644 --- a/addons/website_sale_stock/i18n/my.po +++ b/addons/website_sale_stock/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-04-07 20:37+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -143,7 +143,7 @@ msgstr "" #: code:addons/website_sale_stock/models/product_product.py:0 #: model:ir.model,name:website_sale_stock.model_product_template msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_sale_stock #: model:ir.model,name:website_sale_stock.model_product_combo @@ -247,7 +247,7 @@ msgstr "" #: model:ir.model.fields,field_description:website_sale_stock.field_website__warehouse_id #: model_terms:ir.ui.view,arch_db:website_sale_stock.res_config_settings_view_form msgid "Warehouse" -msgstr "" +msgstr "ဂိုဒေါင်" #. module: website_sale_stock #. odoo-javascript diff --git a/addons/website_sale_wishlist/i18n/my.po b/addons/website_sale_wishlist/i18n/my.po index 0ee75cd701292a..9a8e15557363ed 100644 --- a/addons/website_sale_wishlist/i18n/my.po +++ b/addons/website_sale_wishlist/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-06-27 18:40+0000\n" -"PO-Revision-Date: 2025-09-06 09:03+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -157,7 +157,7 @@ msgstr "" #: model:ir.model,name:website_sale_wishlist.model_product_template #: model:ir.model.fields,field_description:website_sale_wishlist.field_product_wishlist__product_id msgid "Product" -msgstr "" +msgstr "ပစ္စည်း" #. module: website_sale_wishlist #: model:ir.model,name:website_sale_wishlist.model_product_product diff --git a/addons/website_slides/i18n/my.po b/addons/website_slides/i18n/my.po index 04fdc919700d5f..8aad2274ce0646 100644 --- a/addons/website_slides/i18n/my.po +++ b/addons/website_slides/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-08-15 18:36+0000\n" -"PO-Revision-Date: 2025-09-08 12:16+0000\n" +"PO-Revision-Date: 2025-09-09 18:53+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese \n" @@ -1595,7 +1595,7 @@ msgstr "" #: code:addons/website_slides/static/src/xml/slide_quiz_create.xml:0 #: model_terms:ir.ui.view,arch_db:website_slides.slide_channel_invite_view_form msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: website_slides #: model:slide.channel.tag,name:website_slides.slide_channel_tag_role_carpenter @@ -2482,7 +2482,7 @@ msgstr "" #. odoo-javascript #: code:addons/website_slides/static/src/js/public/components/slide_unsubscribe_dialog/slide_unsubscribe_dialog.xml:0 msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: website_slides #: model_terms:slide.slide,html_content:website_slides.slide_slide_demo_1_4 @@ -5814,7 +5814,7 @@ msgstr "" #. module: website_slides #: model_terms:ir.ui.view,arch_db:website_slides.view_slide_slide_tree msgid "Total" -msgstr "" +msgstr "စုစုပေါင်း" #. module: website_slides #: model_terms:ir.ui.view,arch_db:website_slides.slide_channel_view_tree_report diff --git a/odoo/addons/base/i18n/my.po b/odoo/addons/base/i18n/my.po index d052dce904edfa..d4179f49c19719 100644 --- a/odoo/addons/base/i18n/my.po +++ b/odoo/addons/base/i18n/my.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-13 15:13+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: Oakarmin Iron \n" "Language-Team: Burmese " "\n" @@ -15064,7 +15064,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:base.view_users_form_simple_modif #: model_terms:ir.ui.view,arch_db:base.wizard_lang_export msgid "Cancel" -msgstr "" +msgstr "ပယ်ဖျက်" #. module: base #: model_terms:ir.ui.view,arch_db:base.module_form @@ -17915,7 +17915,7 @@ msgstr "" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall msgid "Discard" -msgstr "ပယ်" +msgstr "မလုပ်တော့" #. module: base #: model_terms:res.partner,website_description:base.res_partner_1 @@ -20974,7 +20974,7 @@ msgstr "" #. module: base #: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__date_from msgid "From" -msgstr "" +msgstr "မှ" #. module: base #: model_terms:ir.actions.act_window,help:base.action_res_partner_bank_account_form @@ -36734,7 +36734,7 @@ msgstr "" #. module: base #: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__date_to msgid "To" -msgstr "" +msgstr "အထိ" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_todo__state__open diff --git a/odoo/addons/base/i18n/tr.po b/odoo/addons/base/i18n/tr.po index f829bdc93ea4f2..b37ca4e0fb42c2 100644 --- a/odoo/addons/base/i18n/tr.po +++ b/odoo/addons/base/i18n/tr.po @@ -54,7 +54,7 @@ msgstr "" "Project-Id-Version: Odoo Server 18.0+e\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-05-13 15:13+0000\n" -"PO-Revision-Date: 2025-09-08 12:15+0000\n" +"PO-Revision-Date: 2025-09-09 16:40+0000\n" "Last-Translator: \"Deniz Guvener Unal (degu)\" \n" "Language-Team: Turkish " "\n" @@ -18571,7 +18571,7 @@ msgstr "Asya/Yekaterinburg" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__asia/yerevan msgid "Asia/Yerevan" -msgstr "" +msgstr "Asya/Erivan" #. module: base #: model:ir.module.module,summary:base.module_hr_appraisal @@ -18633,67 +18633,67 @@ msgstr "En az bir dil etkin olmalıdır." #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/azores msgid "Atlantic/Azores" -msgstr "" +msgstr "Atlantik/Azorlar" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/bermuda msgid "Atlantic/Bermuda" -msgstr "" +msgstr "Atlantik/Bermuda" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/canary msgid "Atlantic/Canary" -msgstr "" +msgstr "Atlantik/Kanarya" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/cape_verde msgid "Atlantic/Cape_Verde" -msgstr "" +msgstr "Atlantik/Yeşil Burun Adaları" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/faeroe msgid "Atlantic/Faeroe" -msgstr "" +msgstr "Atlantik/Faroe" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/faroe msgid "Atlantic/Faroe" -msgstr "" +msgstr "Atlantik/Faroe" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/jan_mayen msgid "Atlantic/Jan_Mayen" -msgstr "" +msgstr "Atlantik/Jan Mayen" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/madeira msgid "Atlantic/Madeira" -msgstr "" +msgstr "Atlantik/Madeira" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/reykjavik msgid "Atlantic/Reykjavik" -msgstr "" +msgstr "Atlantik/Reykjavik" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/south_georgia msgid "Atlantic/South_Georgia" -msgstr "" +msgstr "Atlantik/Güney Georgia" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/st_helena msgid "Atlantic/St_Helena" -msgstr "" +msgstr "Atlantik/St. Helena" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__atlantic/stanley msgid "Atlantic/Stanley" -msgstr "" +msgstr "Atlantik/Stanley" #. module: base #: model:res.currency,currency_subunit_label:base.LAK msgid "Att" -msgstr "" +msgstr "Att" #. module: base #: model_terms:ir.actions.act_window,help:base.action_attachment @@ -18761,12 +18761,12 @@ msgstr "Posta listelerine abone olmak için ziyaretçileri çekin" #. module: base #: model:ir.module.module,shortdesc:base.module_certification_organism msgid "Audit & Certification" -msgstr "" +msgstr "Denetim & Sertifikasyon" #. module: base #: model:res.currency,currency_subunit_label:base.ISK msgid "Aurar" -msgstr "" +msgstr "Aurar" #. module: base #: model:res.country,name:base.au @@ -18781,7 +18781,7 @@ msgstr "Avustralya & Yeni Zelanda - UBL PINT" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_au msgid "Australia - Accounting" -msgstr "" +msgstr "Avustralya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_au_hr_payroll @@ -18796,117 +18796,117 @@ msgstr "Avustralya - Bordro ve Muhasebe Entegrasyonu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/act msgid "Australia/ACT" -msgstr "" +msgstr "Avustralya/ACT" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/adelaide msgid "Australia/Adelaide" -msgstr "" +msgstr "Avustralya/Adelaide" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/brisbane msgid "Australia/Brisbane" -msgstr "" +msgstr "Avustralya/Brisbane" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/broken_hill msgid "Australia/Broken_Hill" -msgstr "" +msgstr "Avustralya/Broken Hill" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/canberra msgid "Australia/Canberra" -msgstr "" +msgstr "Avustralya/Kanberra" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/currie msgid "Australia/Currie" -msgstr "" +msgstr "Avustralya/Currie" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/darwin msgid "Australia/Darwin" -msgstr "" +msgstr "Avustralya/Darwin" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/eucla msgid "Australia/Eucla" -msgstr "" +msgstr "Avustralya/Eucla" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/hobart msgid "Australia/Hobart" -msgstr "" +msgstr "Avustralya/Hobart" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/lhi msgid "Australia/LHI" -msgstr "" +msgstr "Avustralya/LHI" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/lindeman msgid "Australia/Lindeman" -msgstr "" +msgstr "Avustralya/Lindeman" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/lord_howe msgid "Australia/Lord_Howe" -msgstr "" +msgstr "Avustralya/Lord Howe" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/melbourne msgid "Australia/Melbourne" -msgstr "" +msgstr "Avustralya/Melbourne" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/nsw msgid "Australia/NSW" -msgstr "" +msgstr "Avustralya/NSW" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/north msgid "Australia/North" -msgstr "" +msgstr "Avustralya/Kuzey" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/perth msgid "Australia/Perth" -msgstr "" +msgstr "Avustralya/Perth" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/queensland msgid "Australia/Queensland" -msgstr "" +msgstr "Avustralya/Queensland" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/south msgid "Australia/South" -msgstr "" +msgstr "Avustralya/Güney" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/sydney msgid "Australia/Sydney" -msgstr "" +msgstr "Avustralya/Sidney" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/tasmania msgid "Australia/Tasmania" -msgstr "" +msgstr "Avustralya/Tasmanya" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/victoria msgid "Australia/Victoria" -msgstr "" +msgstr "Avustralya/Victoria" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/west msgid "Australia/West" -msgstr "" +msgstr "Avustralya/Batı" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__australia/yancowinna msgid "Australia/Yancowinna" -msgstr "" +msgstr "Avustralya/Yancowinna" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_au_reports @@ -18936,7 +18936,7 @@ msgstr "Avusturya Finansal Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_at_saft msgid "Austrian SAF-T Export" -msgstr "" +msgstr "Avusturya SAF-T Dışa Aktarımı" #. module: base #: model:ir.module.module,summary:base.module_l10n_at @@ -19037,7 +19037,7 @@ msgstr "Otomasyon" #. module: base #: model:ir.module.module,shortdesc:base.module_base_automation msgid "Automation Rules" -msgstr "" +msgstr "Otomasyon Kuralları" #. module: base #: model:ir.module.module,shortdesc:base.module_base_automation_hr_contract @@ -19047,13 +19047,13 @@ msgstr "Çalışan Sözleşmelerine Dayalı Otomasyon Kuralları" #. module: base #: model:ir.module.module,shortdesc:base.module_automobile msgid "Automobile Spare Parts" -msgstr "" +msgstr "Otomobil Yedek Parçaları" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__available_model_ids #: model:ir.model.fields,field_description:base.field_ir_cron__available_model_ids msgid "Available Models" -msgstr "" +msgstr "Mevcut Modeller" #. module: base #: model_terms:ir.ui.view,arch_db:base.ir_filters_view_form @@ -19109,17 +19109,17 @@ msgstr "Avatax" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br_avatax msgid "Avatax Brazil" -msgstr "" +msgstr "Avatax Brezilya" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br_avatax_sale msgid "Avatax Brazil Sale" -msgstr "" +msgstr "Avatax Brezilya Satışı" #. module: base #: model:ir.module.module,shortdesc:base.module_account_avatax_stock msgid "Avatax for Inventory" -msgstr "" +msgstr "Envanter için Avatax" #. module: base #: model:ir.module.module,shortdesc:base.module_account_avatax_sale @@ -19129,7 +19129,7 @@ msgstr "SO için Avatax" #. module: base #: model:ir.module.module,shortdesc:base.module_account_avatax_geolocalize msgid "Avatax for geo localization" -msgstr "" +msgstr "Coğrafi konumlandırma için Avatax" #. module: base #: model:ir.module.module,summary:base.module_documents_fsm @@ -19242,17 +19242,17 @@ msgstr "Bahreyn" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_bh msgid "Bahrain - Accounting" -msgstr "" +msgstr "Bahreyn - Muhasebe" #. module: base #: model:res.currency,currency_unit_label:base.THB msgid "Baht" -msgstr "" +msgstr "Baht" #. module: base #: model:res.currency,currency_subunit_label:base.OMR msgid "Baisa" -msgstr "" +msgstr "Baisa" #. module: base #: model:ir.module.module,shortdesc:base.module_bakery @@ -19262,7 +19262,7 @@ msgstr "Pastane" #. module: base #: model:res.currency,currency_unit_label:base.PAB msgid "Balboa" -msgstr "" +msgstr "Balboa" #. module: base #: model:res.currency,currency_subunit_label:base.MDL @@ -19297,7 +19297,7 @@ msgstr "Bangladeş - Muhasebe ile Bordro" #. module: base #: model:res.currency,currency_subunit_label:base.RON msgid "Bani" -msgstr "" +msgstr "Bani" #. module: base #: model:ir.model,name:base.model_res_bank @@ -19365,7 +19365,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_bar_industry msgid "Bar & Pub" -msgstr "" +msgstr "Bar ve Pub" #. module: base #: model:res.country,name:base.bb @@ -19399,7 +19399,7 @@ msgstr "Barkodun Son Kullanma Tarihi" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_barcode_quality_mrp msgid "Barcode Quality MRP module" -msgstr "" +msgstr "Barkod Kalite MRP modülü" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_barcode_quality_control @@ -19506,7 +19506,7 @@ msgstr "Temel: Dahili verileri otomatik çekme" #. module: base #: model:ir.actions.server,name:base.ir_cron_res_users_deletion_ir_actions_server msgid "Base: Portal Users Deletion" -msgstr "" +msgstr "Temel: Portal Kullanıcılarını Silme" #. module: base #: model:ir.module.module,summary:base.module_web_grid @@ -19737,7 +19737,7 @@ msgstr "Benin" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_bj msgid "Benin - Accounting" -msgstr "" +msgstr "Benin - Muhasebe" #. module: base #: model:res.country,name:base.bm @@ -19747,7 +19747,7 @@ msgstr "Bermuda" #. module: base #: model:ir.module.module,shortdesc:base.module_beverage_distributor msgid "Beverage Distributor" -msgstr "" +msgstr "İçecek Distribütörü" #. module: base #: model:res.country,name:base.bt @@ -19757,7 +19757,7 @@ msgstr "Bhutan" #. module: base #: model:ir.module.module,shortdesc:base.module_bike_leasing msgid "Bike Leasing" -msgstr "" +msgstr "Bisiklet Kiralama" #. module: base #: model:ir.module.module,summary:base.module_website_sale_ups @@ -19767,7 +19767,7 @@ msgstr "UPS hesap numaranıza faturalandırma" #. module: base #: model:ir.module.module,shortdesc:base.module_billboard_rental msgid "Billboard Rental" -msgstr "" +msgstr "Reklam Panosu Kiralama" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_act_url__binding_model_id @@ -19811,7 +19811,7 @@ msgstr "Bağlantı Görünüm Türleri" #. module: base #: model:res.currency,currency_unit_label:base.ETB msgid "Birr" -msgstr "" +msgstr "Birr" #. module: base #. odoo-python @@ -19836,7 +19836,7 @@ msgstr "Blog" #. module: base #: model:res.currency,currency_unit_label:base.VEF msgid "Bolivar" -msgstr "" +msgstr "Bolivar" #. module: base #: model:res.country,name:base.bo @@ -19856,7 +19856,7 @@ msgstr "Bolivya - Muhasebe Raporları" #. module: base #: model:res.currency,currency_unit_label:base.BOB msgid "Boliviano" -msgstr "" +msgstr "Boliviano" #. module: base #: model:res.country,name:base.bq @@ -19866,13 +19866,13 @@ msgstr "Bonaire, Sint Eustatius and Saba" #. module: base #: model:ir.module.module,shortdesc:base.module_bookstore msgid "Bookstore" -msgstr "" +msgstr "Kitapçı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__update_boolean_value #: model:ir.model.fields,field_description:base.field_ir_cron__update_boolean_value msgid "Boolean Value" -msgstr "" +msgstr "Boole Değeri" #. module: base #: model:ir.module.module,shortdesc:base.module_website_event_booth_sale_exhibitor @@ -19946,27 +19946,27 @@ msgstr "Brezilya - Satış Aboneliği" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br_website_sale msgid "Brazil - Website Sale" -msgstr "" +msgstr "Brezilya - Web Sitesi Satışı" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__brazil/acre msgid "Brazil/Acre" -msgstr "" +msgstr "Brezilya/Acre" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__brazil/denoronha msgid "Brazil/DeNoronha" -msgstr "" +msgstr "Brezilya/De Noronya" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__brazil/east msgid "Brazil/East" -msgstr "" +msgstr "Brezilya/Doğu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__brazil/west msgid "Brazil/West" -msgstr "" +msgstr "Brezilya/Batı" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br @@ -19976,7 +19976,7 @@ msgstr "Brezilya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br_edi msgid "Brazilian Accounting EDI" -msgstr "" +msgstr "Brezilya Muhasebe EBİ" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_br_edi_sale @@ -20230,7 +20230,7 @@ msgstr "Otomatik mail kampanyası oluştur" #. module: base #: model:ir.module.module,description:base.module_sale_pdf_quote_builder msgid "Build nice quotations" -msgstr "" +msgstr "Güzel teklifler oluşturun" #. module: base #: model:ir.module.module,summary:base.module_board @@ -20291,7 +20291,7 @@ msgstr "Butonun bir adı olmalıdır" #. module: base #: model:res.currency,currency_subunit_label:base.GMD msgid "Butut" -msgstr "" +msgstr "Butut" #. module: base #: model_terms:ir.ui.view,arch_db:base.module_form @@ -20322,7 +20322,7 @@ msgstr "C5E 24 163 x 229 mm" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__cet msgid "CET" -msgstr "" +msgstr "OZE (Orta Avrupa Saati)" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mx_edi_sale @@ -20337,7 +20337,7 @@ msgstr "İnşaat Sektörü Vergi Sistemi" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ca_payment_cpa005 msgid "CPA005 Payments" -msgstr "" +msgstr "CPA005 Ödemeleri" #. module: base #: model:ir.module.category,name:base.module_category_sales_crm @@ -20385,7 +20385,7 @@ msgstr "Pazarlama otomasyonunda CRM" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__cst6cdt msgid "CST6CDT" -msgstr "" +msgstr "CST6CDT" #. module: base #: model:ir.model.fields.selection,name:base.selection__base_language_export__format__csv @@ -20409,7 +20409,7 @@ msgstr "CUIT" #. module: base #: model:ir.module.module,shortdesc:base.module_cake_shop msgid "Cake Store" -msgstr "" +msgstr "Pastane" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__calendar @@ -20442,7 +20442,7 @@ msgstr "Kamerun" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cm msgid "Cameroon - Accounting" -msgstr "" +msgstr "Kamerun - Muhasebe" #. module: base #. odoo-python @@ -20478,42 +20478,42 @@ msgstr "Kanada - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ca_reports msgid "Canada - Accounting Reports" -msgstr "" +msgstr "Kanada - Muhasebe Raporları" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/atlantic msgid "Canada/Atlantic" -msgstr "" +msgstr "Kanada/Atlantik" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/central msgid "Canada/Central" -msgstr "" +msgstr "Kanada/Merkez" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/eastern msgid "Canada/Eastern" -msgstr "" +msgstr "Kanada/Doğu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/mountain msgid "Canada/Mountain" -msgstr "" +msgstr "Kanada/Dağ" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/newfoundland msgid "Canada/Newfoundland" -msgstr "" +msgstr "Kanada/Newfoundland" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/pacific msgid "Canada/Pacific" -msgstr "" +msgstr "Kanada/Pasifik" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/saskatchewan msgid "Canada/Saskatchewan" -msgstr "" +msgstr "Kanada/Saskatchewan" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__canada/yukon @@ -20611,6 +20611,9 @@ msgid "" "Fields: %(fields)s\n" "View: %(view)s" msgstr "" +"Görünümlerde hala bulunan alanlar yeniden adlandırılamaz/silinemez:\n" +"Alanlar: %(fields)s\n" +"Görünüm: %(view)s" #. module: base #. odoo-python @@ -20655,17 +20658,17 @@ msgstr "Kayman Adaları" #. module: base #: model:res.currency,currency_unit_label:base.GHS msgid "Cedi" -msgstr "" +msgstr "Cedi" #. module: base #: model:res.currency,currency_subunit_label:base.JPY msgid "Cen" -msgstr "" +msgstr "Cen" #. module: base #: model:res.currency,currency_subunit_label:base.LTL msgid "Centas" -msgstr "" +msgstr "Centas" #. module: base #: model:res.currency,currency_subunit_label:base.CVE @@ -20673,7 +20676,7 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.MZN #: model:res.currency,currency_subunit_label:base.SVC msgid "Centavo" -msgstr "" +msgstr "Centavo" #. module: base #: model:res.currency,currency_subunit_label:base.ARS @@ -20694,12 +20697,12 @@ msgstr "Centavos" #. module: base #: model:res.currency,currency_subunit_label:base.PAB msgid "Centesimo" -msgstr "" +msgstr "Centesimo" #. module: base #: model:res.currency,currency_subunit_label:base.UYU msgid "Centesimos" -msgstr "" +msgstr "Centesimos" #. module: base #: model:res.currency,currency_subunit_label:base.BIF @@ -20709,7 +20712,7 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.HTG #: model:res.currency,currency_subunit_label:base.KMF msgid "Centime" -msgstr "" +msgstr "Santim" #. module: base #: model:res.currency,currency_subunit_label:base.CHF @@ -20719,12 +20722,12 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.XOF #: model:res.currency,currency_subunit_label:base.XPF msgid "Centimes" -msgstr "" +msgstr "Santim" #. module: base #: model:res.currency,currency_subunit_label:base.STD msgid "Centimo" -msgstr "" +msgstr "Centimo" #. module: base #: model:res.currency,currency_subunit_label:base.AOA @@ -20733,7 +20736,7 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.PYG #: model:res.currency,currency_subunit_label:base.VEF msgid "Centimos" -msgstr "" +msgstr "Centimos" #. module: base #: model:res.country,name:base.cf @@ -20800,7 +20803,7 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.XCD #: model:res.currency,currency_subunit_label:base.ZAR msgid "Cents" -msgstr "" +msgstr "Sent" #. module: base #: model_terms:res.company,invoice_terms_html:base.main_company @@ -20941,7 +20944,7 @@ msgstr "Bu kontak bir çalışan ise bu kutuyu işaretleyin." #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_mass_mailing msgid "Checkout Newsletter" -msgstr "" +msgstr "Ödeme Bülteni" #. module: base #: model:ir.module.module,summary:base.module_l10n_latam_check @@ -20956,7 +20959,7 @@ msgstr "Checksum/SHA1" #. module: base #: model:res.currency,currency_subunit_label:base.BTN msgid "Chhertum" -msgstr "" +msgstr "Chhertum" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__child_ids @@ -21023,17 +21026,17 @@ msgstr "Şili - Yerelleştirme: Faktoring Uzantısı" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__chile/continental msgid "Chile/Continental" -msgstr "" +msgstr "Şili/Kıtasal" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__chile/easterisland msgid "Chile/EasterIsland" -msgstr "" +msgstr "Şili/Paskalya Adası" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cl_edi_website_sale msgid "Chilean eCommerce" -msgstr "" +msgstr "Şili eTicaret" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cl_edi_pos @@ -21060,7 +21063,7 @@ msgstr "Çin - Şehir Verileri" #: model:res.currency,currency_subunit_label:base.KPW #: model:res.currency,currency_subunit_label:base.KRW msgid "Chon" -msgstr "" +msgstr "Chon" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_country_form @@ -21074,7 +21077,7 @@ msgstr "" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Choose a value..." -msgstr "" +msgstr "Bir değer seçin..." #. module: base #: model:ir.model.fields,help:base.field_ir_mail_server__smtp_encryption @@ -21117,17 +21120,17 @@ msgstr "Semt/İlçe" #. module: base #: model:ir.module.module,shortdesc:base.module_cleaning_services msgid "Cleaning Services" -msgstr "" +msgstr "Temizlik Hizmetleri" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__update_m2m_operation__clear msgid "Clearing it" -msgstr "" +msgstr "Kontrol ediliyor" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_collect msgid "Click & Collect" -msgstr "" +msgstr "Mağazadan Teslim Alma" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_logging__type__client @@ -21145,7 +21148,7 @@ msgstr "İstemci İşlemi" #: model:ir.ui.menu,name:base.menu_ir_client_actions_report #: model_terms:ir.ui.view,arch_db:base.view_client_action_tree msgid "Client Actions" -msgstr "" +msgstr "Müşteri Eylemleri" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_client__tag @@ -21163,22 +21166,22 @@ msgstr "Kapat" #. module: base #: model:ir.module.module,shortdesc:base.module_clothing_boutique msgid "Clothing Store" -msgstr "" +msgstr "Giyim Mağazası" #. module: base #: model:ir.module.module,shortdesc:base.module_cloud_storage msgid "Cloud Storage" -msgstr "" +msgstr "Bulut Depolama" #. module: base #: model:ir.module.module,shortdesc:base.module_cloud_storage_azure msgid "Cloud Storage Azure" -msgstr "" +msgstr "Bulut Depolama Azure" #. module: base #: model:ir.module.module,shortdesc:base.module_cloud_storage_google msgid "Cloud Storage Google" -msgstr "" +msgstr "Bulut Depolama Google" #. module: base #: model:ir.module.module,shortdesc:base.module_website_cf_turnstile @@ -21287,12 +21290,12 @@ msgstr "EDI belgeleri için Kolombiya Yerelleştirmesi" #. module: base #: model:res.currency,currency_unit_label:base.CRC msgid "Colon" -msgstr "" +msgstr "Kolon" #. module: base #: model:res.currency,currency_unit_label:base.SVC msgid "Colones" -msgstr "" +msgstr "Kolonlar" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__color @@ -21368,7 +21371,7 @@ msgstr "" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_mail_server__smtp_authentication__cli msgid "Command Line Interface" -msgstr "" +msgstr "Komut Satırı Arayüzü" #. module: base #: model:ir.model.fields,field_description:base.field_res_groups__comment @@ -21399,7 +21402,7 @@ msgstr "Komorlar" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_km msgid "Comoros - Accounting" -msgstr "" +msgstr "Komorlar - Muhasebe" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form @@ -21443,7 +21446,7 @@ msgstr "" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__company_dependent msgid "Company Dependent" -msgstr "" +msgstr "Şirkete Bağımlı" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__company_details @@ -21463,7 +21466,7 @@ msgstr "Kurum Kimliği" #: model:ir.model.fields,field_description:base.field_res_partner__company_registry_label #: model:ir.model.fields,field_description:base.field_res_users__company_registry_label msgid "Company ID Label" -msgstr "" +msgstr "Şirket Kimlik Etiketi" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__logo @@ -21607,7 +21610,7 @@ msgstr "" #: model:ir.model.fields.selection,name:base.selection__res_device__device_type__computer #: model:ir.model.fields.selection,name:base.selection__res_device_log__device_type__computer msgid "Computer" -msgstr "" +msgstr "Bilgisayar" #. module: base #: model:ir.model.fields,field_description:base.field_ir_default__condition @@ -21675,7 +21678,7 @@ msgstr "Kongo" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cg msgid "Congo - Accounting" -msgstr "" +msgstr "Kongo - Muhasebe" #. module: base #: model:ir.module.module,summary:base.module_hw_drivers @@ -21946,12 +21949,12 @@ msgstr "Kopyalanan" #. module: base #: model:res.currency,currency_unit_label:base.NIO msgid "Cordoba" -msgstr "" +msgstr "Cordoba" #. module: base #: model:ir.module.module,shortdesc:base.module_corporate_gifts msgid "Corporate Gifts" -msgstr "" +msgstr "Kurumsal Hediyeler" #. module: base #: model:res.country,name:base.cr @@ -22113,7 +22116,7 @@ msgstr "Menü Oluşturma Sihirbazı" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__object_create msgid "Create Record" -msgstr "" +msgstr "Kayıt Oluştur" #. module: base #: model:ir.module.module,summary:base.module_industry_fsm_report @@ -22527,7 +22530,7 @@ msgstr "Küba" #. module: base #: model:res.currency,currency_unit_label:base.CUC msgid "Cuban convertible peso" -msgstr "" +msgstr "Küba dönüştürülebilir pesosu" #. module: base #: model:res.country,name:base.cw @@ -22588,7 +22591,7 @@ msgstr "Para Birimi" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__currency_field msgid "Currency field" -msgstr "" +msgstr "Para birimi alanı" #. module: base #. odoo-python @@ -22600,7 +22603,7 @@ msgstr "Para birimi alanı many2one türünde değil" #. odoo-python #: code:addons/base/models/ir_model.py:0 msgid "Currency field is empty and there is no fallback field in the model" -msgstr "" +msgstr "Para birimi alanı boş ve modelde yedek bir alan yok" #. module: base #. odoo-python @@ -22611,7 +22614,7 @@ msgstr "Para birimi alanı bir res.currency ilişkisine sahip olmalı" #. module: base #: model:ir.model.fields,field_description:base.field_res_currency__iso_numeric msgid "Currency numeric code." -msgstr "" +msgstr "Para birimi sayısal kodu." #. module: base #: model:ir.model.fields,help:base.field_res_currency__symbol @@ -22628,7 +22631,7 @@ msgstr "Mevcut Görünüm Yapısı" #: model:ir.model.fields,field_description:base.field_res_device__is_current #: model:ir.model.fields,field_description:base.field_res_device_log__is_current msgid "Current Device" -msgstr "" +msgstr "Mevcut Cihaz" #. module: base #: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__current_line_id @@ -22662,7 +22665,7 @@ msgstr "Özel Alan" #. module: base #: model:ir.module.module,shortdesc:base.module_custom_furniture msgid "Custom Furniture Production" -msgstr "" +msgstr "Kişiye Özel Mobilya İmalatı" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_model__state__manual @@ -22755,7 +22758,7 @@ msgstr "Kıbrıs Rum Kesimi" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cy msgid "Cyprus - Accounting" -msgstr "" +msgstr "Kıbrıs - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_cy_reports @@ -22820,7 +22823,7 @@ msgstr "DIN 5008 - Satın Alma" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_din5008_sale_renting msgid "DIN 5008 - Rental" -msgstr "" +msgstr "DIN 5008 - Kiralama" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_din5008_repair @@ -22845,7 +22848,7 @@ msgstr "DLE 26 110 x 220 mm" #. module: base #: model:res.currency,currency_unit_label:base.GMD msgid "Dalasi" -msgstr "" +msgstr "Dalasi" #. module: base #. odoo-python @@ -22993,7 +22996,7 @@ msgstr "Hata Ayıklama" #. odoo-python #: code:addons/base/models/ir_ui_view.py:0 msgid "Debugging information:" -msgstr "" +msgstr "Hata ayıklama bilgileri:" #. module: base #: model:ir.actions.act_window,name:base.action_decimal_precision_form @@ -23107,7 +23110,7 @@ msgstr "Öntanımlı Değerler" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__default_view_mode msgid "Default View" -msgstr "" +msgstr "Varsayılan Görünüm" #. module: base #: model:ir.model.fields,help:base.field_ir_embedded_actions__filter_ids @@ -23122,12 +23125,12 @@ msgstr "Listeleme görünümü için öntanımlı sınır" #. module: base #: model:ir.model.fields,field_description:base.field_report_paperformat__default msgid "Default paper format?" -msgstr "" +msgstr "Varsayılan kağıt formatı?" #. module: base #: model:ir.model.fields,help:base.field_ir_embedded_actions__default_view_mode msgid "Default view (if none, default view of the action is taken)" -msgstr "" +msgstr "Varsayılan görünüm (hiçbiri yoksa, eylemin varsayılan görünümü alınır)" #. module: base #: model:ir.module.module,description:base.module_theme_default @@ -23178,6 +23181,8 @@ msgid "" "Deleting the template users is not allowed. Deleting this profile will " "compromise critical functionalities." msgstr "" +"Şablon kullanıcılarını silmeye izin verilmez. Bu profili silmek kritik " +"işlevleri tehlikeye atacaktır." #. module: base #: model:ir.module.category,name:base.module_category_inventory_delivery @@ -23188,7 +23193,7 @@ msgstr "Teslimat" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_delivery msgid "Delivery - Stock" -msgstr "" +msgstr "Teslimat - Stok" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__type__delivery @@ -23242,7 +23247,7 @@ msgstr "Demo hatası" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_company__layout_background__demo_logo msgid "Demo logo" -msgstr "" +msgstr "Demo logosu" #. module: base #: model:res.country,name:base.cd @@ -23257,12 +23262,12 @@ msgstr "Demokratik Kongo Cumhuryeti - Muhasebe" #. module: base #: model:res.currency,currency_unit_label:base.MKD msgid "Denar" -msgstr "" +msgstr "Dinar" #. module: base #: model:res.currency,currency_subunit_label:base.MKD msgid "Deni" -msgstr "" +msgstr "Deni" #. module: base #: model:res.country,name:base.dk @@ -23282,17 +23287,17 @@ msgstr "Denmark - Accounting Reports" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_dk_oioubl msgid "Denmark - E-invoicing" -msgstr "" +msgstr "Danimarka - E-fatura" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_dk_intrastat msgid "Denmark - Intrastat" -msgstr "" +msgstr "Danimarka - Intrastat" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_dk_saft_import msgid "Denmark - SAF-T Import" -msgstr "" +msgstr "Danimarka - SAF-T İçe Aktarma" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__depends @@ -23397,13 +23402,13 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_device_log msgid "Device Log" -msgstr "" +msgstr "Cihaz Günlüğü" #. module: base #: model:ir.model.fields,field_description:base.field_res_device__device_type #: model:ir.model.fields,field_description:base.field_res_device_log__device_type msgid "Device Type" -msgstr "" +msgstr "Cihaz Türü" #. module: base #: model:ir.model,name:base.model_res_device @@ -23443,12 +23448,12 @@ msgstr "Basamaklar" #: model:res.currency,currency_unit_label:base.RSD #: model:res.currency,currency_unit_label:base.TND msgid "Dinar" -msgstr "" +msgstr "Dinar" #. module: base #: model:res.currency,currency_subunit_label:base.TJS msgid "Diram" -msgstr "" +msgstr "Diram" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__direction @@ -23466,7 +23471,7 @@ msgstr "Yönerge" #: model:res.currency,currency_unit_label:base.AED #: model:res.currency,currency_unit_label:base.MAD msgid "Dirham" -msgstr "" +msgstr "Dirhem" #. module: base #: model_terms:ir.ui.view,arch_db:base.res_lang_tree @@ -23734,7 +23739,7 @@ msgstr "Cibuti" #: model:res.currency,currency_unit_label:base.STD #: model:res.currency,currency_unit_label:base.STN msgid "Dobra" -msgstr "" +msgstr "Dobra" #. module: base #: model:res.partner.title,name:base.res_partner_title_doctor @@ -23899,7 +23904,7 @@ msgstr "Silinecek Belgeler" #: model:res.currency,currency_unit_label:base.USD #: model:res.currency,currency_unit_label:base.XCD msgid "Dollars" -msgstr "" +msgstr "Dolar" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__domain @@ -23970,7 +23975,7 @@ msgstr "Done!" #. module: base #: model:res.currency,currency_unit_label:base.VND msgid "Dong" -msgstr "" +msgstr "Dong" #. module: base #: model:res.partner,website_short_description:base.res_partner_address_3 @@ -24001,7 +24006,7 @@ msgstr "Dr." #. module: base #: model:res.currency,currency_unit_label:base.AMD msgid "Dram" -msgstr "" +msgstr "Dram" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_dropshipping @@ -24044,17 +24049,17 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_co_edi_website_sale msgid "E-Commerce Colombian Localization" -msgstr "" +msgstr "E-Ticaret Kolombiya Yerelleştirmesi" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_automation_website_sale msgid "E-Commerce Marketing Automation" -msgstr "" +msgstr "E-Ticaret Pazarlama Otomasyonu" #. module: base #: model:ir.module.module,summary:base.module_l10n_ro_edi msgid "E-Invoice implementation for Romania" -msgstr "" +msgstr "Romanya için E-Fatura uygulaması" #. module: base #: model:ir.module.module,summary:base.module_l10n_rs_edi @@ -24070,7 +24075,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_l10n_my_edi msgid "E-invoicing using MyInvois" -msgstr "" +msgstr "MyInvois kullanarak E-fatura" #. module: base #: model:ir.module.module,summary:base.module_l10n_vn_edi_viettel @@ -24105,12 +24110,12 @@ msgstr "Peru için EDI" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__eet msgid "EET" -msgstr "" +msgstr "EET" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_nz_eft msgid "EFT Batch Payment" -msgstr "" +msgstr "EFT Toplu Ödeme" #. module: base #: model:ir.module.module,shortdesc:base.module_hw_escpos @@ -24120,12 +24125,12 @@ msgstr "ESC / POS Donanım Sürücüsü" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__est msgid "EST" -msgstr "" +msgstr "EST" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__est5edt msgid "EST5EDT" -msgstr "" +msgstr "EST5EDT" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_eu_oss @@ -24181,13 +24186,13 @@ msgstr "Ekvador" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_reports_ats msgid "Ecuador - ATS Report" -msgstr "" +msgstr "Ekvador - ATS Raporu" #. module: base #: model:ir.module.module,description:base.module_l10n_ec_stock #: model:ir.module.module,shortdesc:base.module_l10n_ec_stock msgid "Ecuador - Stock" -msgstr "" +msgstr "Ekvador - Stok" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec @@ -24197,17 +24202,17 @@ msgstr "Ekvador Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_edi msgid "Ecuadorian Accounting EDI" -msgstr "" +msgstr "Ekvador Muhasebe EBİ" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_reports msgid "Ecuadorian Accounting Reports" -msgstr "" +msgstr "Ekvador Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_edi_stock msgid "Ecuadorian Delivery Guide" -msgstr "" +msgstr "Ekvador Teslimat Kılavuzu" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_edi_pos @@ -24217,7 +24222,7 @@ msgstr "Ekvador Satış Noktası" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ec_website_sale msgid "Ecuadorian Website" -msgstr "" +msgstr "Ekvador Web Sitesi" #. module: base #: model:res.partner.industry,name:base.res_partner_industry_P @@ -24248,12 +24253,12 @@ msgstr "Mısır - Muhasebe ile Bordro" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_eg_edi_eta msgid "Egypt E-Invoicing" -msgstr "" +msgstr "Mısır E-Fatura" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__eire msgid "Eire" -msgstr "" +msgstr "Eire" #. module: base #: model:ir.model.fields,help:base.field_res_partner__partner_share @@ -24275,7 +24280,7 @@ msgstr "El Salvador" #. module: base #: model:ir.module.module,shortdesc:base.module_electrician msgid "Electricians" -msgstr "" +msgstr "Elektrikçiler" #. module: base #: model:ir.module.module,summary:base.module_l10n_pe_edi_stock @@ -24300,7 +24305,7 @@ msgstr "Peru için Elektronik Faturalandırma (OSE yöntemi) ve UBL 2.1" #. module: base #: model:ir.module.module,shortdesc:base.module_electronic_store msgid "Electronic Store" -msgstr "" +msgstr "Elektronik Mağazası" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_co_edi @@ -24370,24 +24375,24 @@ msgstr "E-posta azami boyutu güncellendi (%(details)s)." #: model:ir.model.fields,field_description:base.field_ir_actions_act_window__embedded_action_ids #: model:ir.model.fields,field_description:base.field_ir_filters__embedded_action_id msgid "Embedded Action" -msgstr "" +msgstr "Gömülü Eylem" #. module: base #: model:ir.actions.act_window,name:base.ir_embedded_action #: model:ir.model,name:base.model_ir_embedded_actions #: model:ir.ui.menu,name:base.menu_ir_embedded_action msgid "Embedded Actions" -msgstr "" +msgstr "Gömülü Eylemler" #. module: base #: model:ir.model.fields,field_description:base.field_ir_filters__embedded_parent_res_id msgid "Embedded Parent Res" -msgstr "" +msgstr "Gömülü Üst Kayıt" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__is_visible msgid "Embedded visibility" -msgstr "" +msgstr "Gömülü görünürlük" #. module: base #: model:ir.model.fields,field_description:base.field_res_partner__employee @@ -24463,7 +24468,7 @@ msgstr "Randevulu Personel" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_employment_hero msgid "Employment Hero Payroll" -msgstr "" +msgstr "Employment Hero Bordro" #. module: base #. odoo-python @@ -24477,6 +24482,8 @@ msgid "" "Enable a payment step to your bookings, using the e-commerce features of the" " website." msgstr "" +"Web sitesinin e-ticaret özelliklerini kullanarak rezervasyonlarınıza bir " +"ödeme adımı ekleyin." #. module: base #: model:ir.module.module,description:base.module_appointment_google_calendar @@ -24528,6 +24535,8 @@ msgstr "" #: model:ir.module.category,description:base.module_category_productivity_room msgid "Enable the user to manage meeting rooms available for booking" msgstr "" +"Kullanıcının rezervasyon için uygun olan toplantı odalarını yönetmesini " +"sağlar" #. module: base #: model:ir.module.category,description:base.module_category_human_resources_contracts @@ -24635,12 +24644,12 @@ msgstr "Giriş sayısı" #. module: base #: model:ir.module.module,shortdesc:base.module_delivery_envia msgid "Envia Shipping" -msgstr "" +msgstr "Envia Nakliye" #. module: base #: model:ir.module.module,shortdesc:base.module_environmental_agency msgid "Environmental Agency" -msgstr "" +msgstr "Çevre Ajansı" #. module: base #: model:ir.module.module,summary:base.module_pos_epson_printer @@ -24742,7 +24751,7 @@ msgstr "Hata! Tekrarlanan menüler oluşturamazsınız." #. module: base #: model:res.currency,currency_unit_label:base.CVE msgid "Escudo" -msgstr "" +msgstr "Escudo" #. module: base #: model:res.country,name:base.ee @@ -24752,22 +24761,22 @@ msgstr "Estonya" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ee msgid "Estonia - Accounting" -msgstr "" +msgstr "Estonya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ee_reports msgid "Estonia - Accounting Reports" -msgstr "" +msgstr "Estonya - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ee_rounding msgid "Estonia - Rounding" -msgstr "" +msgstr "Estonya - Yuvarlama" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ee_intrastat msgid "Estonia Intrastat Declaration" -msgstr "" +msgstr "Estonya Intrastat Beyannamesi" #. module: base #: model:res.country,name:base.sz @@ -24777,177 +24786,177 @@ msgstr "Svaziland" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt msgid "Etc/GMT" -msgstr "" +msgstr "Etc/GMT" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+0 msgid "Etc/GMT+0" -msgstr "" +msgstr "Etc/GMT+0" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+1 msgid "Etc/GMT+1" -msgstr "" +msgstr "Etc/GMT+1" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+10 msgid "Etc/GMT+10" -msgstr "" +msgstr "Etc/GMT+10" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+11 msgid "Etc/GMT+11" -msgstr "" +msgstr "Etc/GMT+11" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+12 msgid "Etc/GMT+12" -msgstr "" +msgstr "Etc/GMT+12" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+2 msgid "Etc/GMT+2" -msgstr "" +msgstr "Etc/GMT+2" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+3 msgid "Etc/GMT+3" -msgstr "" +msgstr "Etc/GMT+3" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+4 msgid "Etc/GMT+4" -msgstr "" +msgstr "Etc/GMT+4" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+5 msgid "Etc/GMT+5" -msgstr "" +msgstr "Etc/GMT+5" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+6 msgid "Etc/GMT+6" -msgstr "" +msgstr "Etc/GMT+6" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+7 msgid "Etc/GMT+7" -msgstr "" +msgstr "Etc/GMT+7" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+8 msgid "Etc/GMT+8" -msgstr "" +msgstr "Etc/GMT+8" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt+9 msgid "Etc/GMT+9" -msgstr "" +msgstr "Etc/GMT+9" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-0 msgid "Etc/GMT-0" -msgstr "" +msgstr "Etc/GMT-0" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-1 msgid "Etc/GMT-1" -msgstr "" +msgstr "Etc/GMT-1" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-10 msgid "Etc/GMT-10" -msgstr "" +msgstr "Etc/GMT-10" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-11 msgid "Etc/GMT-11" -msgstr "" +msgstr "Etc/GMT-11" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-12 msgid "Etc/GMT-12" -msgstr "" +msgstr "Etc/GMT-12" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-13 msgid "Etc/GMT-13" -msgstr "" +msgstr "Etc/GMT-13" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-14 msgid "Etc/GMT-14" -msgstr "" +msgstr "Etc/GMT-14" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-2 msgid "Etc/GMT-2" -msgstr "" +msgstr "Etc/GMT-2" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-3 msgid "Etc/GMT-3" -msgstr "" +msgstr "Etc/GMT-3" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-4 msgid "Etc/GMT-4" -msgstr "" +msgstr "Etc/GMT-4" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-5 msgid "Etc/GMT-5" -msgstr "" +msgstr "Etc/GMT-5" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-6 msgid "Etc/GMT-6" -msgstr "" +msgstr "Etc/GMT-6" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-7 msgid "Etc/GMT-7" -msgstr "" +msgstr "Etc/GMT-7" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-8 msgid "Etc/GMT-8" -msgstr "" +msgstr "Etc/GMT-8" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt-9 msgid "Etc/GMT-9" -msgstr "" +msgstr "Etc/GMT-9" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/gmt0 msgid "Etc/GMT0" -msgstr "" +msgstr "Etc/GMT0" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/greenwich msgid "Etc/Greenwich" -msgstr "" +msgstr "Etc/Greenwich" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/uct msgid "Etc/UCT" -msgstr "" +msgstr "Etc/UCT" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/utc msgid "Etc/UTC" -msgstr "" +msgstr "Etc/UTC" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/universal msgid "Etc/Universal" -msgstr "" +msgstr "Etc/Evrensel" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__etc/zulu msgid "Etc/Zulu" -msgstr "" +msgstr "Etc/Zulu" #. module: base #: model:res.country,name:base.et @@ -24962,337 +24971,337 @@ msgstr "Etiyopya - Muhasebe" #. module: base #: model:res.country.group,name:base.eurasian_economic_union msgid "Eurasian Economic Union" -msgstr "" +msgstr "Avrasya Ekonomik Birliği" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/amsterdam msgid "Europe/Amsterdam" -msgstr "" +msgstr "Avrupa/Amsterdam" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/andorra msgid "Europe/Andorra" -msgstr "" +msgstr "Avrupa/Andorra" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/astrakhan msgid "Europe/Astrakhan" -msgstr "" +msgstr "Avrupa/Astrahan" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/athens msgid "Europe/Athens" -msgstr "" +msgstr "Avrupa/Atina" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/belfast msgid "Europe/Belfast" -msgstr "" +msgstr "Avrupa/Belfast" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/belgrade msgid "Europe/Belgrade" -msgstr "" +msgstr "Avrupa/Belgrad" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/berlin msgid "Europe/Berlin" -msgstr "" +msgstr "Avrupa/Berlin" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/bratislava msgid "Europe/Bratislava" -msgstr "" +msgstr "Avrupa/Bratislava" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/brussels msgid "Europe/Brussels" -msgstr "" +msgstr "Avrupa/Brüksel" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/bucharest msgid "Europe/Bucharest" -msgstr "" +msgstr "Avrupa/Bükreş" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/budapest msgid "Europe/Budapest" -msgstr "" +msgstr "Avrupa/Budapeşte" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/busingen msgid "Europe/Busingen" -msgstr "" +msgstr "Avrupa/Büsingen" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/chisinau msgid "Europe/Chisinau" -msgstr "" +msgstr "Avrupa/Kişinev" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/copenhagen msgid "Europe/Copenhagen" -msgstr "" +msgstr "Avrupa/Kopenhag" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/dublin msgid "Europe/Dublin" -msgstr "" +msgstr "Avrupa/Dublin" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/gibraltar msgid "Europe/Gibraltar" -msgstr "" +msgstr "Avrupa/Cebelitarık" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/guernsey msgid "Europe/Guernsey" -msgstr "" +msgstr "Avrupa/Guernsey" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/helsinki msgid "Europe/Helsinki" -msgstr "" +msgstr "Avrupa/Helsinki" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/isle_of_man msgid "Europe/Isle_of_Man" -msgstr "" +msgstr "Avrupa/Man Adası" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/istanbul msgid "Europe/Istanbul" -msgstr "" +msgstr "Avrupa/İstanbul" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/jersey msgid "Europe/Jersey" -msgstr "" +msgstr "Avrupa/Jersey" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/kaliningrad msgid "Europe/Kaliningrad" -msgstr "" +msgstr "Avrupa/Kaliningrad" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/kiev msgid "Europe/Kiev" -msgstr "" +msgstr "Avrupa/Kiev" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/kirov msgid "Europe/Kirov" -msgstr "" +msgstr "Avrupa/Kirov" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/kyiv msgid "Europe/Kyiv" -msgstr "" +msgstr "Avrupa/Kiev" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/lisbon msgid "Europe/Lisbon" -msgstr "" +msgstr "Avrupa/Lizbon" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/ljubljana msgid "Europe/Ljubljana" -msgstr "" +msgstr "Avrupa/Ljubljana" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/london msgid "Europe/London" -msgstr "" +msgstr "Avrupa/Londra" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/luxembourg msgid "Europe/Luxembourg" -msgstr "" +msgstr "Avrupa/Lüksemburg" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/madrid msgid "Europe/Madrid" -msgstr "" +msgstr "Avrupa/Madrid" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/malta msgid "Europe/Malta" -msgstr "" +msgstr "Avrupa/Malta" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/mariehamn msgid "Europe/Mariehamn" -msgstr "" +msgstr "Avrupa/Mariehamn" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/minsk msgid "Europe/Minsk" -msgstr "" +msgstr "Avrupa/Minsk" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/monaco msgid "Europe/Monaco" -msgstr "" +msgstr "Avrupa/Monako" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/moscow msgid "Europe/Moscow" -msgstr "" +msgstr "Avrupa/Moskova" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/nicosia msgid "Europe/Nicosia" -msgstr "" +msgstr "Avrupa/Lefkoşa" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/oslo msgid "Europe/Oslo" -msgstr "" +msgstr "Avrupa/Oslo" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/paris msgid "Europe/Paris" -msgstr "" +msgstr "Avrupa/Paris" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/podgorica msgid "Europe/Podgorica" -msgstr "" +msgstr "Avrupa/Podgoritsa" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/prague msgid "Europe/Prague" -msgstr "" +msgstr "Avrupa/Prag" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/riga msgid "Europe/Riga" -msgstr "" +msgstr "Avrupa/Riga" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/rome msgid "Europe/Rome" -msgstr "" +msgstr "Avrupa/Roma" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/samara msgid "Europe/Samara" -msgstr "" +msgstr "Avrupa/Samara" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/san_marino msgid "Europe/San_Marino" -msgstr "" +msgstr "Avrupa/San Marino" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/sarajevo msgid "Europe/Sarajevo" -msgstr "" +msgstr "Avrupa/Saraybosna" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/saratov msgid "Europe/Saratov" -msgstr "" +msgstr "Avrupa/Saratov" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/simferopol msgid "Europe/Simferopol" -msgstr "" +msgstr "Avrupa/Simferopol" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/skopje msgid "Europe/Skopje" -msgstr "" +msgstr "Avrupa/Üsküp" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/sofia msgid "Europe/Sofia" -msgstr "" +msgstr "Avrupa/Sofya" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/stockholm msgid "Europe/Stockholm" -msgstr "" +msgstr "Avrupa/Stockholm" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/tallinn msgid "Europe/Tallinn" -msgstr "" +msgstr "Avrupa/Tallinn" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/tirane msgid "Europe/Tirane" -msgstr "" +msgstr "Avrupa/Tiran" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/tiraspol msgid "Europe/Tiraspol" -msgstr "" +msgstr "Avrupa/Tiraspol" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/ulyanovsk msgid "Europe/Ulyanovsk" -msgstr "" +msgstr "Avrupa/Ulyanovsk" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/uzhgorod msgid "Europe/Uzhgorod" -msgstr "" +msgstr "Avrupa/Ujgorod" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/vaduz msgid "Europe/Vaduz" -msgstr "" +msgstr "Avrupa/Vaduz" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/vatican msgid "Europe/Vatican" -msgstr "" +msgstr "Avrupa/Vatikan" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/vienna msgid "Europe/Vienna" -msgstr "" +msgstr "Avrupa/Viyana" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/vilnius msgid "Europe/Vilnius" -msgstr "" +msgstr "Avrupa/Vilnius" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/volgograd msgid "Europe/Volgograd" -msgstr "" +msgstr "Avrupa/Volgograd" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/warsaw msgid "Europe/Warsaw" -msgstr "" +msgstr "Avrupa/Varşova" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/zagreb msgid "Europe/Zagreb" -msgstr "" +msgstr "Avrupa/Zagreb" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/zaporozhye msgid "Europe/Zaporozhye" -msgstr "" +msgstr "Avrupa/Zaporojya" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__europe/zurich msgid "Europe/Zurich" -msgstr "" +msgstr "Avrupa/Zürih" #. module: base #: model:res.country.group,name:base.europe msgid "European Union" -msgstr "" +msgstr "Avrupa Birliği" #. module: base #: model:res.currency,currency_unit_label:base.EUR msgid "Euros" -msgstr "" +msgstr "Euro" #. module: base #: model:ir.module.module,shortdesc:base.module_website_event_jitsi @@ -25379,7 +25388,7 @@ msgstr "Etkinlik Organizasyonu Eklentisi" #. module: base #: model:ir.module.module,shortdesc:base.module_event_product msgid "Events Product" -msgstr "" +msgstr "Etkinlik Ürünü" #. module: base #: model:ir.module.module,shortdesc:base.module_event_sale @@ -25399,7 +25408,7 @@ msgstr "Etkinlikler, standlarınızı online satmak" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Example of Python code:" -msgstr "" +msgstr "Python kodu örneği:" #. module: base #: model:ir.module.module,description:base.module_gamification_sale_crm @@ -25435,6 +25444,8 @@ msgid "" "Exclude the timeoff timesheet entries from the rank calculation in the " "Timesheets Leaderboard." msgstr "" +"İzinler için çalışma çizelgesi girişlerini, Çalışma Çizelgesi Liderlik " +"Tablosundaki sıralama hesaplamasından hariç tut." #. module: base #: model:ir.model.fields,field_description:base.field_ir_module_module_exclusion__exclusion_id @@ -25465,7 +25476,7 @@ msgstr "Herşeyi Yürüt" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__multi msgid "Execute Existing Actions" -msgstr "" +msgstr "Mevcut Eylemleri Çalıştır" #. module: base #: model_terms:ir.ui.view,arch_db:base.ir_cron_view_search @@ -25499,6 +25510,8 @@ msgid "" "Experience the Ease of Booking Meeting Rooms with Real-Time Availability " "Display." msgstr "" +"Toplantı Odalarını Gerçek Zamanlı Müsaitlik Görüntüsüyle Kolayca Rezerve " +"Edin." #. module: base #: model:ir.model.fields,field_description:base.field_res_users_apikeys__expiration_date @@ -25567,7 +25580,7 @@ msgstr "Çevirileri Dışa Aktar" #. module: base #: model:ir.model.fields,field_description:base.field_base_language_export__export_type msgid "Export Type" -msgstr "" +msgstr "Dışa Aktarma Türü" #. module: base #: model:ir.module.module,description:base.module_l10n_us_hr_payroll_adp @@ -25735,7 +25748,7 @@ msgstr "Abonelikler için Harici Vergi Hesaplama" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_external_tax msgid "External calculation for Ecommerce" -msgstr "" +msgstr "Eticaret için harici hesaplama" #. module: base #: model:ir.model.fields,help:base.field_res_users__share @@ -25771,6 +25784,7 @@ msgstr "" #: model:ir.module.module,summary:base.module_account_bank_statement_extract msgid "Extract data from bank statement scans to fill them automatically" msgstr "" +"Banka ekstresi taramalarından verileri otomatik olarak doldurmak için çıkar" #. module: base #: model:ir.module.module,summary:base.module_hr_expense_extract @@ -25790,7 +25804,7 @@ msgstr "Yasal Sınırların Dışında" #. module: base #: model:ir.module.module,shortdesc:base.module_eyewear_shop msgid "Eyewear Store" -msgstr "" +msgstr "Optik Mağazası" #. module: base #: model:res.partner.industry,full_name:base.res_partner_industry_F @@ -25825,7 +25839,7 @@ msgstr "Bazı modüller için demo verileri yüklenemedi, demo devre dışı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_cron__failure_count msgid "Failure Count" -msgstr "" +msgstr "Hata Sayısı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_demo_failure_wizard__failures_count @@ -25851,7 +25865,7 @@ msgstr "Faroe Adaları" #. module: base #: model:ir.module.module,shortdesc:base.module_fast_food msgid "Fast Food" -msgstr "" +msgstr "Fast Food" #. module: base #: model:ir.module.module,summary:base.module_l10n_it_edi_website_sale @@ -25885,18 +25899,18 @@ msgstr "Fedex Kargo" #. module: base #: model:ir.module.module,shortdesc:base.module_delivery_fedex msgid "Fedex Shipping (Legacy)" -msgstr "" +msgstr "Fedex Gönderimi (Eski)" #. module: base #: model:res.currency,currency_subunit_label:base.CNH #: model:res.currency,currency_subunit_label:base.CNY msgid "Fen" -msgstr "" +msgstr "Fen" #. module: base #: model:res.currency,currency_subunit_label:base.BAM msgid "Fening" -msgstr "" +msgstr "Fening" #. module: base #: model:ir.model.fields,field_description:base.field_ir_default__field_id @@ -25990,7 +26004,7 @@ msgstr "Saha Hizmeti - Satış Aboneliği" #. module: base #: model:ir.module.module,shortdesc:base.module_industry_fsm_repair msgid "Field Service Repair" -msgstr "" +msgstr "Saha Hizmeti Onarımı" #. module: base #: model:ir.module.module,shortdesc:base.module_industry_fsm_report @@ -26045,13 +26059,13 @@ msgstr "Alan etiketinin tanımlanmış bir \"name\" özniteliği olmalıdır" #: model:ir.model.fields,field_description:base.field_ir_actions_server__update_field_id #: model:ir.model.fields,field_description:base.field_ir_cron__update_field_id msgid "Field to Update" -msgstr "" +msgstr "Güncellenecek Alan" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__update_path #: model:ir.model.fields,field_description:base.field_ir_cron__update_path msgid "Field to Update Path" -msgstr "" +msgstr "Güncellenecek Alan Yolu" #. module: base #. odoo-python @@ -26059,6 +26073,8 @@ msgstr "" msgid "" "Field “%(name)s” used in %(use)s is present in view but is in select multi." msgstr "" +"%(use)s içinde kullanılan “%(name)s” alanı görünümde mevcut ancak çoklu " +"seçimde yer alıyor." #. module: base #: model:ir.actions.act_window,name:base.action_model_fields @@ -26185,7 +26201,7 @@ msgstr "Denetleyiciler için dosya akışı yardımcı modeli" #. module: base #: model:res.currency,currency_subunit_label:base.HUF msgid "Filler" -msgstr "" +msgstr "Dolgu" #. module: base #: model:res.currency,currency_subunit_label:base.AED @@ -26196,7 +26212,7 @@ msgstr "" #: model:res.currency,currency_subunit_label:base.KWD #: model:res.currency,currency_subunit_label:base.YER msgid "Fils" -msgstr "" +msgstr "Fils" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_act_window__filter @@ -26213,7 +26229,7 @@ msgstr "Filtre Adı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_report__domain msgid "Filter domain" -msgstr "" +msgstr "Alanı filtrele" #. module: base #: model:ir.model.constraint,message:base.constraint_ir_filters_name_model_uid_unique @@ -26311,13 +26327,13 @@ msgstr "Fince Yerelleştirme" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_company__font__fira_mono msgid "Fira Mono" -msgstr "" +msgstr "Fira Mono" #. module: base #: model:ir.model.fields,field_description:base.field_res_device__first_activity #: model:ir.model.fields,field_description:base.field_res_device_log__first_activity msgid "First Activity" -msgstr "" +msgstr "İlk Etkinlik" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__week_start @@ -26327,7 +26343,7 @@ msgstr "Haftanın ilk Günü" #. module: base #: model:ir.model.fields,field_description:base.field_ir_cron__first_failure_date msgid "First Failure Date" -msgstr "" +msgstr "İlk Hata Tarihi" #. module: base #: model:ir.model.fields,field_description:base.field_base_language_install__first_lang_id @@ -26348,13 +26364,15 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_fitness msgid "Fitness Center" -msgstr "" +msgstr "Fitness Merkezi" #. module: base #: model:ir.module.module,summary:base.module_l10n_nl_reports_sbr_ob_nummer msgid "" "Fix to add the omzetbelastingnummer in Dutch Localization for SBR documents" msgstr "" +"SBR belgeleri için Hollanda yerelleştirmesine omzetbelastingnummer ekleme " +"düzeltmesi" #. module: base #: model:ir.model.fields,field_description:base.field_ir_module_module__icon_flag @@ -26412,7 +26430,7 @@ msgstr "Font" #. module: base #: model:ir.module.module,shortdesc:base.module_food_trucks msgid "Food Trucks" -msgstr "" +msgstr "Yemek Kamyonları" #. module: base #: model:res.partner.industry,name:base.res_partner_industry_I @@ -26432,6 +26450,13 @@ msgid "" "\n" "For Static values, the value will be used directly without evaluation, e.g.`42` or `My custom name` or the selected record." msgstr "" +"Python ifadeleri için, bu alan sunucu eylemindeki kod alanı için kullanılan " +"aynı değerleri kullanabilen bir Python ifadesi içerebilir, örneğin " +"env.user.name geçerli kullanıcının adını değer olarak ayarlamak için veya " +"record.id eylemin çalıştırıldığı kaydın kimliğini ayarlamak için.\n" +"\n" +"Statik değerler için, değer doğrudan değerlendirme yapılmadan " +"kullanılacaktır, örneğin '42' veya 'Benim özel adım' ya da seçilen kayıt." #. module: base #: model_terms:ir.ui.view,arch_db:base.wizard_lang_export @@ -26490,7 +26515,7 @@ msgstr "Parolanızı mı unuttunuz?" #. module: base #: model:res.currency,currency_unit_label:base.HUF msgid "Forint" -msgstr "" +msgstr "Forint" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__form @@ -26536,7 +26561,7 @@ msgstr "Kurs Forumu" #. module: base #: model:ir.module.module,shortdesc:base.module_coal_petroleum msgid "Fossil Fuel Trading" -msgstr "" +msgstr "Fosil Yakıt Ticareti" #. module: base #. odoo-python @@ -26555,6 +26580,8 @@ msgid "" "Found multiple matches for value \"%(value)s\" in field \"%%(field)s\" " "(%(match_count)s matches)" msgstr "" +"\"%%(field)s\" alanında \"%(value)s\" değeri için birden fazla eşleşme " +"bulundu (%(match_count)s eşleşme)" #. module: base #: model:res.currency,currency_unit_label:base.BIF @@ -26568,7 +26595,7 @@ msgstr "" #: model:res.currency,currency_unit_label:base.XOF #: model:res.currency,currency_unit_label:base.XPF msgid "Franc" -msgstr "" +msgstr "Frank" #. module: base #: model:res.country,name:base.fr @@ -26598,7 +26625,7 @@ msgstr "Fransa - Factur-X'in Chorus Pro ile entegrasyonu" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr msgid "France - Localizations" -msgstr "" +msgstr "Fransa - Yerelleştirmeler" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr_hr_payroll_account @@ -26679,7 +26706,7 @@ msgstr "Tekliflerden faturalara" #: model:ir.module.category,name:base.module_category_human_resources_frontdesk #: model:ir.module.module,shortdesc:base.module_frontdesk msgid "Frontdesk" -msgstr "" +msgstr "Resepsiyon" #. module: base #: model_terms:ir.ui.view,arch_db:base.ir_access_view_search @@ -26717,7 +26744,7 @@ msgstr "Fonksiyon" #. module: base #: model:ir.module.module,shortdesc:base.module_furniture_store msgid "Furniture Store" -msgstr "" +msgstr "Mobilya Mağazası" #. module: base #: model:res.partner.industry,full_name:base.res_partner_industry_G @@ -26735,32 +26762,32 @@ msgstr "G.C.C. - Arapça/İngilizce Fatura" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gb msgid "GB" -msgstr "" +msgstr "GB" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gb-eire msgid "GB-Eire" -msgstr "" +msgstr "GB-Eire" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gmt msgid "GMT" -msgstr "" +msgstr "GMT" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gmt+0 msgid "GMT+0" -msgstr "" +msgstr "GMT+0" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gmt-0 msgid "GMT-0" -msgstr "" +msgstr "GMT-0" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__gmt0 msgid "GMT0" -msgstr "" +msgstr "GMT0" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_module_module__license__gpl-2 @@ -26785,7 +26812,7 @@ msgstr "GPL-3 or later version" #. module: base #: model:res.country,vat_label:base.nz msgid "GST" -msgstr "" +msgstr "GST" #. module: base #: model:res.country,vat_label:base.sg @@ -26815,7 +26842,7 @@ msgstr "GST Stok Raporu" #. module: base #: model:res.country,vat_label:base.ca msgid "GST/HST number" -msgstr "" +msgstr "GST/HST numarası" #. module: base #: model:res.country,vat_label:base.in @@ -26830,7 +26857,7 @@ msgstr "Gabon" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ga msgid "Gabon - Accounting" -msgstr "" +msgstr "Gabon - Muhasebe" #. module: base #: model:res.country,name:base.gm @@ -26855,17 +26882,17 @@ msgstr "Zaman Kapalı Gösterge Tablosu için Gantt görünümü" #. module: base #: model:ir.module.module,shortdesc:base.module_gardening msgid "Gardening" -msgstr "" +msgstr "Bahçe Tasarımı" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_gelato msgid "Gelato" -msgstr "" +msgstr "Gelato" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_gelato_stock msgid "Gelato/Stock bridge" -msgstr "" +msgstr "Gelato/Stok entegrasyonu" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_rule_form @@ -26972,7 +26999,7 @@ msgstr "Gürcistan" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_de_intrastat msgid "German Intrastat Declaration" -msgstr "" +msgstr "Alman Intrastat Beyannamesi" #. module: base #: model:res.country,name:base.de @@ -27046,7 +27073,7 @@ msgstr "Fatura Satın Alma Siparişinden oluşturulduysa depo adresini alın" #. module: base #: model:ir.module.module,summary:base.module_l10n_in_sale_stock msgid "Get warehouse address if the invoice is created from Sale Order" -msgstr "" +msgstr "Fatura Satış Siparişinden oluşturulursa depo adresini al" #. module: base #: model:res.country,name:base.gh @@ -27153,7 +27180,7 @@ msgstr "" #. module: base #: model:res.currency,currency_unit_label:base.HTG msgid "Gourde" -msgstr "" +msgstr "Gourde" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__graph @@ -27179,7 +27206,7 @@ msgstr "Yunanistan - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_gr_edi msgid "Greece - MyDATA" -msgstr "" +msgstr "Yunanistan - MyDATA" #. module: base #: model:res.country,name:base.gl @@ -27189,7 +27216,7 @@ msgstr "Grönland" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__greenwich msgid "Greenwich" -msgstr "" +msgstr "Greenwich" #. module: base #: model:res.country,name:base.gd @@ -27204,12 +27231,12 @@ msgstr "Tablo Görünümü" #. module: base #: model:ir.module.module,shortdesc:base.module_fmcg_store msgid "Grocery Store" -msgstr "" +msgstr "Gıda Marketi" #. module: base #: model:res.currency,currency_subunit_label:base.PLN msgid "Groszy" -msgstr "" +msgstr "Groszy" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_access__group_id @@ -27310,6 +27337,7 @@ msgstr "Gruplar (grupsuz = global)" msgid "" "Groups that can execute the embedded action. Leave empty to allow everybody." msgstr "" +"Gömülü eylemi çalıştırabilecek gruplar. Herkese izin vermek için boş bırakın." #. module: base #: model:ir.model.fields,help:base.field_ir_actions_server__groups_id @@ -27317,6 +27345,8 @@ msgstr "" msgid "" "Groups that can execute the server action. Leave empty to allow everybody." msgstr "" +"Sunucu eylemini çalıştırabilecek gruplar. Herkese izin vermek için boş " +"bırakın." #. module: base #: model:res.country,name:base.gp @@ -27331,7 +27361,7 @@ msgstr "Guam" #. module: base #: model:res.currency,currency_unit_label:base.PYG msgid "Guarani" -msgstr "" +msgstr "Guarani" #. module: base #: model:res.country,name:base.gt @@ -27352,7 +27382,7 @@ msgstr "Guernsey" #: model:res.currency,currency_unit_label:base.ANG #: model:res.currency,currency_unit_label:base.AWG msgid "Guilder" -msgstr "" +msgstr "Gulden" #. module: base #: model:res.country,name:base.gn @@ -27362,7 +27392,7 @@ msgstr "Gine" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_gn msgid "Guinea - Accounting" -msgstr "" +msgstr "Gine - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_gq @@ -27377,7 +27407,7 @@ msgstr "Gine-Bissau" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_gw msgid "Guinea-Bissau - Accounting" -msgstr "" +msgstr "Gine-Bissau - Muhasebe" #. module: base #: model:res.country.group,name:base.gulf_cooperation_council @@ -27442,12 +27472,12 @@ msgstr "HTML" #. module: base #: model:ir.module.module,shortdesc:base.module_html_editor msgid "HTML Editor" -msgstr "" +msgstr "HTML Düzenleyici" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_model_fields_form msgid "HTML/Sanitization Properties" -msgstr "" +msgstr "HTML/Temizleme Özellikleri" #. module: base #: model:ir.model,name:base.model_ir_http @@ -27457,7 +27487,7 @@ msgstr "HTTP Yönlendirme" #. module: base #: model:ir.module.module,shortdesc:base.module_hair_salon msgid "Hair Salon" -msgstr "" +msgstr "Kuaför Salonu" #. module: base #: model:res.country,name:base.ht @@ -27467,12 +27497,12 @@ msgstr "Haiti" #. module: base #: model:res.currency,currency_subunit_label:base.SAR msgid "Halala" -msgstr "" +msgstr "Halala" #. module: base #: model:res.currency,currency_subunit_label:base.CZK msgid "Halers" -msgstr "" +msgstr "Halers" #. module: base #: model:ir.module.module,description:base.module_sale_mrp_margin @@ -27492,7 +27522,7 @@ msgstr "Çalışanlarınızın öğle yemeği siparişleri ile ilgilenin" #. module: base #: model:ir.module.module,shortdesc:base.module_handyman msgid "Handyman Services" -msgstr "" +msgstr "Tamirat Hizmetleri" #. module: base #: model_terms:res.partner,website_description:base.res_partner_1 @@ -27515,7 +27545,7 @@ msgstr "Donanım Proxy" #. module: base #: model:ir.module.module,shortdesc:base.module_hardware_shop msgid "Hardware Store" -msgstr "" +msgstr "Hırdavat Dükkanı" #. module: base #: model:ir.model.fields,field_description:base.field_reset_view_arch_wizard__has_diff @@ -27540,7 +27570,7 @@ msgstr "Tüm raporların en üstünde görüntülenen üstbilgi metni." #. module: base #: model:ir.module.category,name:base.module_category_health_and_fitness msgid "Health and Fitness" -msgstr "" +msgstr "Sağlık ve Spor" #. module: base #: model:res.partner.industry,name:base.res_partner_industry_Q @@ -27778,6 +27808,7 @@ msgstr "" #: model:ir.module.category,description:base.module_category_marketing_surveys msgid "Helps you manage your survey for review of different users." msgstr "" +"Farklı kullanıcıların incelemesi için anketinizi yönetmenize yardımcı olur." #. module: base #: model:ir.module.category,description:base.module_category_sales_sign @@ -27868,12 +27899,12 @@ msgstr "Hong Kong - Muhasebe ile Bordro" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__hongkong msgid "Hongkong" -msgstr "" +msgstr "Hong Kong" #. module: base #: model:ir.module.category,name:base.module_category_hospitality msgid "Hospitality" -msgstr "" +msgstr "Ağırlama" #. module: base #: model:ir.model.fields,help:base.field_ir_mail_server__smtp_host @@ -27924,7 +27955,7 @@ msgstr "İK İşe Alım Görüşme Formları" #. module: base #: model:res.currency,currency_unit_label:base.UAH msgid "Hryvnia" -msgstr "" +msgstr "Grivna" #. module: base #. odoo-python @@ -27956,7 +27987,7 @@ msgstr "Macaristan - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hu_edi msgid "Hungary - E-invoicing" -msgstr "" +msgstr "Macaristan - E-fatura" #. module: base #: model:res.partner.industry,full_name:base.res_partner_industry_I @@ -27990,7 +28021,7 @@ msgstr "" #: code:addons/base/models/ir_actions.py:0 msgid "" "I'm sorry to say that JSON fields (such as %s) are currently not supported." -msgstr "" +msgstr "Üzgünüz, JSON alanları ( %s gibi) şu anda desteklenmiyor." #. module: base #: model:ir.module.module,shortdesc:base.module_iap_crm @@ -28163,7 +28194,7 @@ msgstr "BT/İletişim" #. module: base #: model:ir.module.module,shortdesc:base.module_iap_extract msgid "Iap Extract" -msgstr "" +msgstr "Iap Çıkarımı" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__iceland @@ -28278,7 +28309,7 @@ msgstr "Ayarlanırsa, koşullu varsayılanı uygular." #: model:ir.model.fields,help:base.field_ir_actions_report__domain msgid "" "If set, the action will only appear on records that matches the domain." -msgstr "" +msgstr "Ayarlanırsa, eylem yalnızca etki alanına uyan kayıtlarda görünecektir." #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form @@ -28578,7 +28609,7 @@ msgstr "Çeviri İçe Aktar" #. module: base #: model:ir.module.module,summary:base.module_website_generator msgid "Import a pre-existing website" -msgstr "" +msgstr "Önceden var olan bir web sitesini içe aktar" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_edi_ubl @@ -28805,12 +28836,12 @@ msgstr "Hindistan Bordro" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/antananarivo msgid "Indian/Antananarivo" -msgstr "" +msgstr "Hint/Antananarivo" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/chagos msgid "Indian/Chagos" -msgstr "" +msgstr "Hint/Chagos" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/christmas @@ -28820,42 +28851,42 @@ msgstr "Hintli/Noel" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/cocos msgid "Indian/Cocos" -msgstr "" +msgstr "Hint/Cocos" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/comoro msgid "Indian/Comoro" -msgstr "" +msgstr "Hint/Komoro" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/kerguelen msgid "Indian/Kerguelen" -msgstr "" +msgstr "Hint/Kerguelen" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/mahe msgid "Indian/Mahe" -msgstr "" +msgstr "Hint/Mahe" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/maldives msgid "Indian/Maldives" -msgstr "" +msgstr "Hint/Maldivler" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/mauritius msgid "Indian/Mauritius" -msgstr "" +msgstr "Hint/Mauritius" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/mayotte msgid "Indian/Mayotte" -msgstr "" +msgstr "Hint/Mayotte" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__indian/reunion msgid "Indian/Reunion" -msgstr "" +msgstr "Hint/Reunion" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__company_type__person @@ -28895,7 +28926,7 @@ msgstr "Endonezya E-faktur" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_id_efaktur_coretax msgid "Indonesia E-faktur (Coretax)" -msgstr "" +msgstr "Endonezya E-faktur (Coretax)" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_id @@ -28980,7 +29011,7 @@ msgstr "Baştaki yığın izleme" #. module: base #: model:ir.module.module,summary:base.module_account_online_payment msgid "Initiate online payments" -msgstr "" +msgstr "Çevrim içi ödemeleri başlat" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window__target__inline @@ -29076,6 +29107,8 @@ msgid "" "Integrate features developped in Mail in use case involving resources " "instead of users" msgstr "" +"Kullanıcılar yerine kaynakları içeren kullanım durumunda Posta'da " +"geliştirilen özellikleri entegre et" #. module: base #: model:ir.module.module,description:base.module_sale_loyalty_delivery @@ -29326,6 +29359,9 @@ msgid "" "\n" " %(error)s" msgstr "" +"Geçersiz bağlam: “%(expr)s” geçerli bir Python ifadesi değil \n" +"\n" +" %(error)s" #. module: base #. odoo-python @@ -29353,7 +29389,7 @@ msgstr "Tarih filtresi için geçersiz varsayılan dönem %(default_period)s" #. odoo-python #: code:addons/base/models/ir_rule.py:0 msgid "Invalid domain: %s" -msgstr "" +msgstr "Geçersiz etki alanı: %s" #. module: base #. odoo-python @@ -29422,6 +29458,8 @@ msgid "" "Invalid separator %(separator)s for python expression %(expression)s; valid " "values are 'and' and 'or'" msgstr "" +"Python ifadesi %(expression)s için geçersiz ayırıcı %(separator)s; geçerli " +"değerler 'and' ve 'or'" #. module: base #. odoo-python @@ -29430,11 +29468,13 @@ msgid "" "Invalid server name!\n" " %s" msgstr "" +"Geçersiz sunucu adı!\n" +" %s" #. module: base #: model:ir.model.constraint,message:base.constraint_ir_filters_check_sort_json msgid "Invalid sort definition" -msgstr "" +msgstr "Geçersiz sıralama tanımı" #. module: base #. odoo-python @@ -29570,7 +29610,7 @@ msgstr "Ir profili" #. module: base #: model:res.currency,currency_subunit_label:base.MGA msgid "Iraimbilanja" -msgstr "" +msgstr "Iraimbilanja" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__iran @@ -29586,7 +29626,7 @@ msgstr "Irak" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_iq msgid "Iraq - Accounting" -msgstr "" +msgstr "Irak - Muhasebe" #. module: base #: model:res.country,name:base.ie @@ -29621,7 +29661,7 @@ msgstr "Mevcut Şirket Para Birimi" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__is_deletable msgid "Is Deletable" -msgstr "" +msgstr "Silinebilir" #. module: base #: model:ir.model.fields,field_description:base.field_res_partner__is_public @@ -29762,7 +29802,7 @@ msgstr "İtalya - Satış E-Faturalama" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_it_stock_ddt msgid "Italy - Stock DDT" -msgstr "" +msgstr "İtalya - Stok DDT" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_it_xml_export @@ -29772,7 +29812,7 @@ msgstr "İtalya - Vergi Raporu XML Dışa Aktarma" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_it_edi_website_sale msgid "Italy eCommerce eInvoicing" -msgstr "" +msgstr "İtalya eTicaret e-Faturalama" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ci @@ -29804,7 +29844,7 @@ msgstr "Japon - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_jp_ubl_pint msgid "Japan - UBL PINT" -msgstr "" +msgstr "Japonya - UBL PINT" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_jp_zengin @@ -29830,7 +29870,7 @@ msgstr "Ürdün" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_jo msgid "Jordan - Accounting" -msgstr "" +msgstr "Ürdün - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_jo_hr_payroll @@ -29845,7 +29885,7 @@ msgstr "Ürdün - Muhasebe ile Bordro" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_jo_edi msgid "Jordan E-Invoicing" -msgstr "" +msgstr "Ürdün E-Faturalama" #. module: base #: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__exclude_journal_item @@ -29878,7 +29918,7 @@ msgstr "Kanban" #. module: base #: model:res.currency,currency_subunit_label:base.BYR msgid "Kapeyka" -msgstr "" +msgstr "Kapeyka" #. module: base #: model:res.country,name:base.kz @@ -29888,7 +29928,7 @@ msgstr "Kazakistan" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_kz msgid "Kazakhstan - Accounting" -msgstr "" +msgstr "Kazakistan - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_kz_reports @@ -29984,17 +30024,17 @@ msgstr "Anahtar tekil olmak zorunda." #: model:res.currency,currency_subunit_label:base.MRO #: model:res.currency,currency_subunit_label:base.MRU msgid "Khoums" -msgstr "" +msgstr "Khoums" #. module: base #: model:res.currency,currency_unit_label:base.PGK msgid "Kina" -msgstr "" +msgstr "Kina" #. module: base #: model:res.currency,currency_unit_label:base.LAK msgid "Kip" -msgstr "" +msgstr "Kip" #. module: base #: model:res.country,name:base.ki @@ -30004,7 +30044,7 @@ msgstr "Kiribati" #. module: base #: model:ir.module.module,summary:base.module_sale_mrp_renting msgid "Kits rental" -msgstr "" +msgstr "Ekipman kiralama" #. module: base #: model:ir.module.category,name:base.module_category_productivity_knowledge @@ -30020,27 +30060,27 @@ msgstr "Bilgi Birikimi Web Sitesi" #. module: base #: model:res.currency,currency_subunit_label:base.NGN msgid "Kobo" -msgstr "" +msgstr "Kobo" #. module: base #: model:res.currency,currency_subunit_label:base.RUB msgid "Kopek" -msgstr "" +msgstr "Kopek" #. module: base #: model:res.currency,currency_subunit_label:base.BYN msgid "Kopeks" -msgstr "" +msgstr "Kopekler" #. module: base #: model:res.currency,currency_subunit_label:base.UAH msgid "Kopiyka" -msgstr "" +msgstr "Kopiyka" #. module: base #: model:res.currency,currency_unit_label:base.CZK msgid "Koruna" -msgstr "" +msgstr "Koruna" #. module: base #: model:res.country,name:base.xk @@ -30051,13 +30091,13 @@ msgstr "Kosova" #: model:res.currency,currency_unit_label:base.ISK #: model:res.currency,currency_unit_label:base.SEK msgid "Krona" -msgstr "" +msgstr "Krona" #. module: base #: model:res.currency,currency_unit_label:base.DKK #: model:res.currency,currency_unit_label:base.NOK msgid "Krone" -msgstr "" +msgstr "Krone" #. module: base #: model:res.currency,currency_unit_label:base.HRK @@ -30067,7 +30107,7 @@ msgstr "Kuna" #. module: base #: model:res.currency,currency_subunit_label:base.TRY msgid "Kurus" -msgstr "" +msgstr "Kuruş" #. module: base #: model:res.country,name:base.kw @@ -30077,28 +30117,28 @@ msgstr "Kuveyt" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_kw msgid "Kuwait - Accounting" -msgstr "" +msgstr "Kuveyt - Muhasebe" #. module: base #: model:res.currency,currency_unit_label:base.MWK #: model:res.currency,currency_unit_label:base.ZMW msgid "Kwacha" -msgstr "" +msgstr "Kvacha" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__kwajalein msgid "Kwajalein" -msgstr "" +msgstr "Kwajalein" #. module: base #: model:res.currency,currency_unit_label:base.AOA msgid "Kwanza" -msgstr "" +msgstr "Kwanza" #. module: base #: model:res.currency,currency_unit_label:base.MMK msgid "Kyat" -msgstr "" +msgstr "Kyat" #. module: base #: model:res.country,name:base.kg @@ -30138,7 +30178,7 @@ msgstr "LGPL Sürüm 3" #. module: base #: model:res.currency,currency_subunit_label:base.MVR msgid "Laari" -msgstr "" +msgstr "Laari" #. module: base #. odoo-python @@ -30223,7 +30263,7 @@ msgstr "Laos" #. module: base #: model:res.currency,currency_unit_label:base.GEL msgid "Lari" -msgstr "" +msgstr "Lari" #. module: base #: model:ir.model.fields,field_description:base.field_res_device__last_activity @@ -30239,7 +30279,7 @@ msgstr "Son Yürütme Tarihi" #. module: base #: model_terms:ir.ui.view,arch_db:base.res_device_view_form msgid "Last IP Address" -msgstr "" +msgstr "Son IP Adresi" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_currency_tree @@ -30439,7 +30479,7 @@ msgstr "Lato" #. module: base #: model:res.currency,currency_unit_label:base.LVL msgid "Lats" -msgstr "" +msgstr "Lats" #. module: base #: model:res.country,name:base.lv @@ -30449,7 +30489,7 @@ msgstr "Letonya" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lv msgid "Latvia - Accounting" -msgstr "" +msgstr "Letonya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lv_reports @@ -30471,7 +30511,7 @@ msgstr "Yapılandırma Sihirbazı'nı başlatın" #. module: base #: model:ir.module.module,shortdesc:base.module_industry_lawyer msgid "Law Firm" -msgstr "" +msgstr "Hukuk Firması" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__layout_background @@ -30526,7 +30566,7 @@ msgstr "Lübnan" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lb_account msgid "Lebanon - Accounting" -msgstr "" +msgstr "Lübnan - Muhasebe" #. module: base #: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__ledger @@ -30561,18 +30601,18 @@ msgstr "Desteklenen Tarih ve Saat Biçimleri" #. module: base #: model:res.currency,currency_unit_label:base.ALL msgid "Lek" -msgstr "" +msgstr "Lek" #. module: base #: model:res.currency,currency_unit_label:base.HNL msgid "Lempiras" -msgstr "" +msgstr "Lempira" #. module: base #: model:res.currency,currency_unit_label:base.SLE #: model:res.currency,currency_unit_label:base.SLL msgid "Leone" -msgstr "" +msgstr "Leone" #. module: base #: model:res.country,name:base.ls @@ -30582,7 +30622,7 @@ msgstr "Lesotho" #. module: base #: model:ir.module.module,summary:base.module_website_sale_mass_mailing msgid "Let new customers sign up for a newsletter during checkout" -msgstr "" +msgstr "Yeni müşterilerin ödeme sırasında bültene kaydolmasına izin verin" #. module: base #: model:ir.module.module,description:base.module_hr_referral @@ -30615,12 +30655,12 @@ msgstr "Letter 2 8.5 x 11 inç, 215.9 x 279.4 mm" #: model:res.currency,currency_unit_label:base.MDL #: model:res.currency,currency_unit_label:base.RON msgid "Leu" -msgstr "" +msgstr "Leu" #. module: base #: model:res.currency,currency_unit_label:base.BGN msgid "Lev" -msgstr "" +msgstr "Lev" #. module: base #: model:ir.model.fields,field_description:base.field_ir_logging__level @@ -30652,7 +30692,7 @@ msgstr "Lihtenştayn" #. module: base #: model:res.currency,currency_unit_label:base.SZL msgid "Lilangeni" -msgstr "" +msgstr "Lilangeni" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_act_window__limit @@ -30777,7 +30817,7 @@ msgstr "Pos_sale ve pos_loyalty arasındaki bağlantı modülü" #: model:ir.model.fields,field_description:base.field_res_device__linked_ip_addresses #: model:ir.model.fields,field_description:base.field_res_device_log__linked_ip_addresses msgid "Linked IP address" -msgstr "" +msgstr "Bağlı IP adresi" #. module: base #: model:res.currency,currency_subunit_label:base.HRK @@ -30787,7 +30827,7 @@ msgstr "Lipa" #. module: base #: model:res.currency,currency_unit_label:base.TRY msgid "Lira" -msgstr "" +msgstr "Lira" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_act_window_view__view_mode__list @@ -30801,6 +30841,8 @@ msgstr "Liste" #: code:addons/base/models/ir_ui_view.py:0 msgid "List child can only have one of %(tags)s tag (not %(wrong_tag)s)" msgstr "" +"Alt liste yalnızca %(tags)s etiketlerinden birine sahip olabilir ( " +"%(wrong_tag)s değil)" #. module: base #. odoo-python @@ -30821,7 +30863,7 @@ msgstr "Nesne tanımlanmış veya miras olduğu modüllerin Listesi" #. module: base #: model:res.currency,currency_unit_label:base.LTL msgid "Litas" -msgstr "" +msgstr "Litas" #. module: base #: model:res.country,name:base.lt @@ -30851,12 +30893,12 @@ msgstr "Litvanya - Muhasebe ile Bordro" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lt_saft_import msgid "Lithuania - SAF-T Import" -msgstr "" +msgstr "Litvanya - SAF-T İçe Aktarma" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lt_intrastat msgid "Lithuanian Intrastat Declaration" -msgstr "" +msgstr "Litvanya Intrastat Beyannamesi" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lt_saft @@ -30892,7 +30934,7 @@ msgstr "Demo verilerini yükle" #. module: base #: model:ir.module.module,shortdesc:base.module_account_loans msgid "Loans Management" -msgstr "" +msgstr "Kredi Yönetimi" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__code @@ -30960,12 +31002,12 @@ msgstr "Long" #. module: base #: model:res.currency,currency_unit_label:base.LSL msgid "Loti" -msgstr "" +msgstr "Loti" #. module: base #: model:res.currency,currency_subunit_label:base.AMD msgid "Luma" -msgstr "" +msgstr "Luma" #. module: base #: model:ir.module.category,name:base.module_category_human_resources_lunch @@ -31006,12 +31048,12 @@ msgstr "M - MESLEKİ, BİLİMSEL VE TEKNİK FAALİYETLER" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__met msgid "MET" -msgstr "" +msgstr "MET" #. module: base #: model:ir.module.module,shortdesc:base.module_project_mrp_account msgid "MRP Account Project" -msgstr "" +msgstr "MRP Hesap Projesi" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_barcode_mrp @@ -31036,12 +31078,12 @@ msgstr "MRP Projesi" #. module: base #: model:ir.module.module,shortdesc:base.module_project_mrp_sale msgid "MRP Project Sale" -msgstr "" +msgstr "MRP Proje Satışı" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_subcontracting msgid "MRP Subcontracting" -msgstr "" +msgstr "MRP Alt Yüklenicilik" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_subcontracting_enterprise @@ -31082,12 +31124,12 @@ msgstr "IoT ile Kalite Kontrol için MRP özellikleri" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__mst msgid "MST" -msgstr "" +msgstr "MST" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__mst7mdt msgid "MST7MDT" -msgstr "" +msgstr "MST7MDT" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_purchase_stock @@ -31248,7 +31290,7 @@ msgstr "Malezya - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_my_edi msgid "Malaysia - E-invoicing" -msgstr "" +msgstr "Malezya - E-faturalama" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_my_edi_extended @@ -31283,7 +31325,7 @@ msgstr "Mali" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ml msgid "Mali - Accounting" -msgstr "" +msgstr "Mali - Muhasebe" #. module: base #: model:res.country,name:base.mt @@ -31293,7 +31335,7 @@ msgstr "Malta" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mt msgid "Malta - Accounting" -msgstr "" +msgstr "Malta - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mt_reports @@ -31330,7 +31372,7 @@ msgstr "İş ilanları panosunun web sitesi ile entegrasyonunu yönetin" #. module: base #: model:ir.module.module,summary:base.module_room msgid "Manage Meeting Rooms" -msgstr "" +msgstr "Toplantı Odalarını Yönetin" #. module: base #: model:ir.module.module,summary:base.module_hr_recruitment_integration_skills_monster @@ -31477,7 +31519,7 @@ msgstr "Filolarla varlıkları yönetin" #. module: base #: model:ir.module.module,summary:base.module_certificate msgid "Manage certificate" -msgstr "" +msgstr "Sertifika yönetin" #. module: base #: model:ir.module.module,description:base.module_account_disallowed_expenses @@ -31666,7 +31708,7 @@ msgstr "Fransa'da yarı zamanlı çalışanların izin yönetimi" #: model:res.currency,currency_unit_label:base.AZN #: model:res.currency,currency_unit_label:base.TMT msgid "Manat" -msgstr "" +msgstr "Manat" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_co_edi_mandate @@ -31697,7 +31739,7 @@ msgstr "Üretim Emirleri & Ürün Ağaçları" #: model:ir.model.fields,field_description:base.field_ir_actions_server__update_m2m_operation #: model:ir.model.fields,field_description:base.field_ir_cron__update_m2m_operation msgid "Many2many Operations" -msgstr "" +msgstr "Çoktan-Çoka İşlemler" #. module: base #. odoo-python @@ -31731,7 +31773,7 @@ msgstr "Satış Siparişleri Marjların" #. module: base #: model:res.currency,currency_unit_label:base.BAM msgid "Mark" -msgstr "" +msgstr "Mark" #. module: base #: model:ir.module.category,name:base.module_category_marketing @@ -31742,7 +31784,7 @@ msgstr "Pazarlama" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_agency msgid "Marketing Agency" -msgstr "" +msgstr "Pazarlama Ajansı" #. module: base #: model:ir.module.category,name:base.module_category_marketing_marketing_automation @@ -31763,7 +31805,7 @@ msgstr "Pazarlama Otomasyon Testleri" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_card msgid "Marketing Card" -msgstr "" +msgstr "Pazarlama Kartı" #. module: base #: model:res.country,name:base.mh @@ -31865,12 +31907,12 @@ msgstr "Mauritius" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mu_account msgid "Mauritius - Accounting" -msgstr "" +msgstr "Mauritius - Muhasebe" #. module: base #: model:ir.model.fields,field_description:base.field_ir_mail_server__max_email_size msgid "Max Email Size" -msgstr "" +msgstr "Azami E-posta Boyutu" #. module: base #: model:ir.model.fields,field_description:base.field_base_partner_merge_automatic_wizard__maximum_group @@ -31885,7 +31927,7 @@ msgstr "Mayotte" #. module: base #: model:ir.module.module,shortdesc:base.module_room msgid "Meeting Rooms" -msgstr "" +msgstr "Toplantı Odaları" #. module: base #: model:ir.module.module,shortdesc:base.module_membership @@ -31972,7 +32014,7 @@ msgstr "Mesaj" #. module: base #: model:res.currency,currency_unit_label:base.MZN msgid "Metical" -msgstr "" +msgstr "Metikal" #. module: base #: model:ir.module.module,summary:base.module_l10n_mx_edi @@ -32032,22 +32074,22 @@ msgstr "Mexico Month 13 Trial Balance Report" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__mexico/bajanorte msgid "Mexico/BajaNorte" -msgstr "" +msgstr "Meksika/BajaNorte" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__mexico/bajasur msgid "Mexico/BajaSur" -msgstr "" +msgstr "Meksika/BajaSur" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__mexico/general msgid "Mexico/General" -msgstr "" +msgstr "Meksika/Genel" #. module: base #: model:ir.module.module,shortdesc:base.module_micro_brewery msgid "Microbrewery" -msgstr "" +msgstr "Küçük Bira Fabrikası" #. module: base #: model:res.country,name:base.fm @@ -32067,7 +32109,7 @@ msgstr "Microsoft Users" #. module: base #: model:res.currency,currency_subunit_label:base.TND msgid "Millimes" -msgstr "" +msgstr "Millimes" #. module: base #: model:ir.model.fields,field_description:base.field_ir_attachment__mimetype @@ -32268,6 +32310,8 @@ msgid "" "Missing required value for the field '%(name)s' on a linked model " "[%(linked_model)s]" msgstr "" +"Bağlı bir modelde '%(name)s' alanı için gerekli değer eksik " +"[%(linked_model)s]" #. module: base #. odoo-python @@ -32296,7 +32340,7 @@ msgstr "Mobil" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_act_window__mobile_view_mode msgid "Mobile View Mode" -msgstr "" +msgstr "Mobil Görünüm Modu" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_form @@ -32378,12 +32422,12 @@ msgstr "Model Açıklaması" #. module: base #: model:ir.model.fields,field_description:base.field_base_language_export__domain msgid "Model Domain" -msgstr "" +msgstr "Model Etki Alanı" #. module: base #: model:ir.model,name:base.model_ir_model_inherit msgid "Model Inheritance Tree" -msgstr "" +msgstr "Model Kalıtım Ağacı" #. module: base #: model:ir.model.fields,field_description:base.field_base_language_export__model_name @@ -32414,7 +32458,7 @@ msgstr "%(model)s bulunamadı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_ui_view__model_id msgid "Model of the view" -msgstr "" +msgstr "Görünümün modeli" #. module: base #: model:ir.model.fields,help:base.field_ir_actions_server__model_id @@ -32425,7 +32469,7 @@ msgstr "Sunucunun çalıştığı model." #. module: base #: model:ir.model.fields,field_description:base.field_base_language_export__model_id msgid "Model to Export" -msgstr "" +msgstr "Dışa Aktarılacak Model" #. module: base #. odoo-python @@ -32558,6 +32602,9 @@ msgid "" "Module loading %(module)s failed: file %(file)s could not be processed:\n" "%(message)s" msgstr "" +"%(module)s modülünün yüklenmesi başarısız oldu: %(file)s dosyası işlenemedi:" +"\n" +"%(message)s" #. module: base #: model:ir.model.fields,field_description:base.field_ir_module_category__module_ids @@ -32583,7 +32630,7 @@ msgstr "Monako" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mc msgid "Monaco - Accounting" -msgstr "" +msgstr "Monako - Muhasebe" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_lang__week_start__1 @@ -32593,7 +32640,7 @@ msgstr "Pazartesi" #. module: base #: model:res.currency,currency_subunit_label:base.MNT msgid "Mongo" -msgstr "" +msgstr "Mongo" #. module: base #: model:res.country,name:base.mn @@ -32674,7 +32721,7 @@ msgstr "Mozambik" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mz msgid "Mozambique - Accounting" -msgstr "" +msgstr "Mozambik - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mz_reports @@ -32689,7 +32736,7 @@ msgstr "Bay." #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_accountant msgid "Mrp Accounting" -msgstr "" +msgstr "MRP Muhasebesi" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_repair @@ -32767,12 +32814,12 @@ msgstr "NPWP" #. module: base #: model:res.country,vat_label:base.pk msgid "NTN" -msgstr "" +msgstr "NTN" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__nz msgid "NZ" -msgstr "" +msgstr "NZ" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_nz_reports @@ -32782,17 +32829,17 @@ msgstr "Yeni Zelanda - Muhasebe Raporları" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__nz-chat msgid "NZ-CHAT" -msgstr "" +msgstr "NZ-CHAT" #. module: base #: model:res.currency,currency_unit_label:base.NGN msgid "Naira" -msgstr "" +msgstr "Naira" #. module: base #: model:res.currency,currency_unit_label:base.ERN msgid "Nakfa" -msgstr "" +msgstr "Nakfa" #. module: base #. odoo-python @@ -32854,6 +32901,8 @@ msgid "" "Name or id “%(name_or_id)s” in %(use)s must be present in view but is " "missing." msgstr "" +"%(use)s içinde “%(name_or_id)s” adı veya kimliği görünümde mevcut olmalı " +"ancak eksik." #. module: base #: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description @@ -32884,7 +32933,7 @@ msgstr "Nauru" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__navajo msgid "Navajo" -msgstr "" +msgstr "Navajo" #. module: base #: model:res.country,name:base.np @@ -32924,12 +32973,12 @@ msgstr "Hollanda - Muhasebe ile Bordro" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_nl_reports_sbr msgid "Netherlands - SBR" -msgstr "" +msgstr "Hollanda - SBR" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_nl_reports_sbr_icp msgid "Netherlands - SBR ICP" -msgstr "" +msgstr "Hollanda - SBR ICP" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_nl_reports_sbr_ob_nummer @@ -33037,12 +33086,12 @@ msgstr "Bu iş için bir sonraki planlanan yürütme tarihi." #. module: base #: model:res.currency,currency_unit_label:base.BTN msgid "Ngultrum" -msgstr "" +msgstr "Ngultrum" #. module: base #: model:res.currency,currency_subunit_label:base.ZMW msgid "Ngwee" -msgstr "" +msgstr "Ngwee" #. module: base #: model:res.country,name:base.ni @@ -33081,7 +33130,7 @@ msgstr "Nijer" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ne msgid "Niger - Accounting" -msgstr "" +msgstr "Nijer - Muhasebe" #. module: base #: model:res.country,name:base.ng @@ -33091,7 +33140,7 @@ msgstr "Nijerya" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ng msgid "Nigeria - Accounting" -msgstr "" +msgstr "Nijerya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ng_reports @@ -33106,7 +33155,7 @@ msgstr "Niue" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__update_boolean_value__false msgid "No (False)" -msgstr "" +msgstr "Hayır (False)" #. module: base #: model_terms:ir.actions.act_window,help:base.action_country @@ -33226,7 +33275,7 @@ msgstr "Hiçbiri" #. module: base #: model:ir.module.module,shortdesc:base.module_non_profit_organization msgid "Nonprofit Organization" -msgstr "" +msgstr "Kar Amacı Gütmeyen Kuruluş" #. module: base #: model:res.country,name:base.nf @@ -33467,6 +33516,114 @@ msgid "" "etc) and directly following Odoo's standard access rights management, so you do\n" "not have to configure things twice.\n" msgstr "" +"Odoo Blog\n" +"----------\n" +"\n" +"Odoo Blog ile Yazın, " +"Tasarlayın, Tanıtın ve Etkileşime Geçin.\n" +"\n" +"Odoo’nun kurumsal seviye blog platformuyla kendinizi ifade edin. Güzel\n" +"blog yazıları yazın, ziyaretçilerle etkileşime geçin, içerik çevirin ve\n" +"sosyal akışları yönetin.\n" +"\n" +"Blog yazılarınızı Google’da verimli şekilde indeksletin ve sadece birkaç\n" +"tıklamayla birden fazla dile çevirtin.\n" +"\n" +"Güzel Blog Yazıları Yazın\n" +"--------------------------\n" +"\n" +"Görseller, videolar, harekete geçirici mesajlar, alıntılar, bannerlar vb. " +"ile\n" +"mükemmel şekilde bütünleşen güzel blog yazıları oluşturmak için tasarlanmış\n" +"'Yapı Bloklarını’ sürükleyip bırakın..\n" +"\n" +"Benzersiz ‘satır içi düzenleme’ yaklaşımımızla, şahane, göze hitap eden " +"içerikler \n" +"oluşturmak için tasarımcı olmanıza gerek yok. Her blog yazısı\n" +"profesyonel bir tasarımcı tarafından hazırlanmış gibi görünecek.\n" +"\n" +"Profesyoneller Tarafından Otomatik Çeviri\n" +"--------------------------------------\n" +"\n" +"Blog yazılarınızı hiçbir çaba harcamadan birden fazla dile çevirtin.\n" +"Talep üzerine çeviri özelliğimiz, tüm değişikliklerinizi profesyonel " +"çevirmenler\n" +"tarafından otomatik olarak çevrilmesini sağlar. (Kelime başına 0,05 $).\n" +"Çevrilmiş sürümler, profesyonel çevirmenler tarafından çevrildikten sonra\n" +"(yaklaşık 32 saat içinde) otomatik olarak güncellenir.\n" +"\n" +"Ziyaretçilerinizle Etkileşime Geçin\n" +"-------------------------\n" +"\n" +"Entegre canlı sohbet özelliği, ziyaretçilerinizle gerçek zamanlı sohbet " +"etmenize,\n" +"yeni yazılarınız hakkında geri bildirim almanıza veya yeni yazılar için " +"fikir toplamanıza\n" +"olanak tanır.\n" +"\n" +"Ziyaretçilerle etkileşim, onları müşteriye dönüştürmenin de harika bir\n" +"yoludur.\n" +"\n" +"Ziyaretçi Sadakati Oluşturun\n" +"---------------------\n" +"\n" +"Tek tıklamayla takip et butonu, ziyaretçilerin blog yazılarınızı hiçbir " +"kayıt\n" +"olmadan kolayca e-posta ile almasını sağlar. Sosyal medya simgeleri, " +"ziyaretçilerin en iyi \n" +"blog yazılarınızı kolayca paylaşmasına olanak tanır.\n" +"\n" +"Google Analytics Entegrasyonu\n" +"----------------------------\n" +"\n" +"Satış huninizin net görünürlüğünü edinin. Odoo’nun Google Analytics \n" +"izleyicileri, alışveriş sepetleri, harekete geçirici mesajlar vb. ile ilgili " +"tüm\n" +"olayları izlemek üzere varsayılan olarak yapılandırılmıştır.\n" +"\n" +"Odoo pazarlama araçları (toplu e-posta, kampanyalar vb.) da Google Analytics " +"ile\n" +"bağlantılı olduğu için işletmenizin 360 derece görünümüne sahip olursunuz.\n" +"\n" +"SEO Optimizasyonlu Blog Yazıları\n" +"------------------------\n" +"\n" +"SEO araçları, herhangi bir yapılandırma gerekmeden kullanıma hazırdır.\n" +"Odoo, başlıklarınız için Google’da en çok aranan terimlere göre anahtar\n" +"kelimeler önerir, Google Analytics ziyaretçilerinizin ilgi alanlarını takip " +"eder,\n" +"site haritaları Google’da hızlı indeksleme için otomatik olarak oluşturulur " +"vb.\n" +"\n" +"Sistem, ürünlerinizi ve etkinliklerinizi Google’da etkili bir şekilde " +"tanıtmak\n" +"için yapılandırılmış içerikleri bile otomatik olarak oluşturur.\n" +"\n" +"Tasarımcı Dostu Temalar\n" +"------------------------\n" +"\n" +"Temalar harika ve tasarımı kolaydır. Yeni sayfalar, temalar veya yapı " +"blokları\n" +"oluşturmak için geliştirme yapmanıza gerek yoktur. Temiz bir HTML yapısı,\n" +"[bootstrap](http://getbootstrap.com/) CSS ve modülerlik sayesinde\n" +"temalarınızı kolayca dağıtabilirsiniz.\n" +"\n" +"Yapı bloğu yaklaşımı, son kullanıcılar yeni içerik oluşturmaya başladığında\n" +"bile web sitesinin düzenli kalmasını sağlar.\n" +"\n" +"Kolay Erişim Hakları\n" +"------------------\n" +"\n" +"Herkesin web sitenize aynı erişime ihtiyacı yoktur. Tasarımcılar sitenin\n" +"düzenini yönetir, editörler içerikleri onaylar ve yazarlar içerik üretir. " +"Bu\n" +"sayede yayın sürecinizi ihtiyaçlarınıza göre organize edebilirsiniz.\n" +"\n" +"Diğer erişim hakları ise iş nesneleriyle (ürünler, kişiler, etkinlikler vb.) " +"ilgilidir\n" +"ve doğrudan Odoo’nun standart erişim hakları yönetimini takip eder, böylece " +"\n" +"aynı ayarları iki kez yapmanıza gerek kalmaz.\n" #. module: base #: model:ir.module.module,description:base.module_crm @@ -34093,6 +34250,133 @@ msgid "" "emails directly into the application.\n" "\n" msgstr "" +"Odoo Toplu E-posta\n" +"-----------------\n" +"\n" +"Odoo E-posta Pazarlama uygulaması ile\n" +"müşteri adaylarınıza, fırsatlarınıza veya müşterilerinize kolayca toplu e-" +"posta gönderin.\n" +"Kampanyalarınızın performansını takip ederek dönüşüm oranlarını artırın. " +"Profesyonel\n" +"e-postalar tasarlayın ve şablonları birkaç tıklamayla yeniden kullanın.\n" +"\n" +"Profesyonel E-postalar Gönderin\n" +"------------------------\n" +"\n" +"Aday müşteri veri tabanını içe aktarın veya mevcut müşteri adayları, " +"fırsatlar\n" +"ve müşteriler üzerinde filtreleme yapın.\n" +"\n" +"Haber bülteniniz için içerik veya özel tasarımlarınızı tekrar kullanmak " +"üzere e-posta şablonları tanımlayın.\n" +"Açılma oranlarını en iyi duruma getirmek için kendi IP/adres alanına sahip " +"birkaç e-posta sunucusu yapılandırın.\n" +"\n" +"Pazarlama Kampanyalarını Organize Edin\n" +"----------------------------\n" +"\n" +"Müşteri Adayı " +"Otomasyonu uygulamamız ile kampanyalara göre Tasarlayın, Gönderin ve " +"Takip Edin.\n" +"\n" +"Gerçek zamanlı kampanya performans istatistiklerini elde ederek dönüşüm\n" +"oranınızı geliştirin. Gönderilen, alınan, açılan ve yanıtlanan e-postaları " +"takip edin.\n" +"\n" +"Pazarlama kampanyalarınızı, tartışma gruplarınızı, müşteri adaylarınızı ve\n" +"fırsatlarınızı tek ve güçlü bir platformda kolayca yönetin.\n" +"\n" +"Odoo Uygulamalarıyla Entegre\n" +"-------------------------\n" +"\n" +"Kullanıcılarınızın iletişim şeklini geliştirmek için her Odoo uygulamasından " +"toplu e-posta özelliklerine erişin.\n" +"\n" +"Odoo CRM " +"fırsatlarından\n" +"e-posta şablonları gönderin, pazarlama segmentlerine göre müşteri adayı " +"seçin, \n" +"iş ilanları gönderin ve adaylara yanıtları otomatikleştirin, e-posta " +"şablonlarını müşteri adayı\n" +"otomasyonu pazarlama kampanyalarında yeniden kullanın.\n" +"\n" +"E-postalarınıza gelen yanıtlar, sosyal ağ modülü ile her belgenin geçmişine\n" +"otomatik olarak eklenir.\n" +"\n" +"Müşteri Adayı Veri Tabanınızı Temizleyin\n" +"------------------------\n" +"\n" +"E-postalarınızın performansını kullanarak zaman içinde gelişen temiz bir " +"müşteri adayı veri tabanına\n" +"sahip olun. Odoo, geri dönen e-postaları verimli bir şekilde yönetir, hatalı " +"müşteri\n" +"adaylarını işaretler ve müşteri adayı kalitenizle ilgili istatistikler sunar." +"\n" +"\n" +"Tek Tıkla E-posta Gönderimi\n" +"---------------------\n" +"\n" +"Pazarlama departmanı kampanyalar üzerinde çalışmayı çok sevecek. Ama\n" +"aynı zamanda diğer tüm kullanıcılara da kendi müşteri adayları veya\n" +"belgeleri üzerinde tek tıkla toplu e-posta gönderme imkanı verebilirsiniz.\n" +"\n" +"Birkaç belge seçin (ör. müşteri adayları, destek biletleri, tedarikçiler, " +"adaylar,\n" +"...) ve mevcut e-posta şablonlarını yeniden kullanarak tek tıkla onların\n" +"kişilerine e-posta gönderin.\n" +"\n" +"Yanıtların Takibi\n" +"--------------------\n" +"\n" +"Yazışma özelliği, müşterilerinizle daha hızlı ve verimli iletişim kurmanızı " +"sağlar. Toplu e-posta\n" +"kampanyalarınıza verilen yanıtlara dayalı olarak otomatik belgeler (müşteri " +"adayları, fırsatlar,\n" +"görevler vb.) oluşturun. Tartışmayı doğrudan Odoo’daki iş belgeleri " +"üzerinde\n" +"veya e-posta üzerinden takip edin.\n" +"\n" +"Tüm müzakereler ve görüşmeler ilgili belgelere eklenir ve belirli olaylarda\n" +"ilgili yöneticiler bilgilendirilir.\n" +"\n" +"Kampanyalar Gösterge Paneli\n" +"-------------------\n" +"\n" +"Daha akıllı pazarlama kampanyaları yürütmek için ihtiyaç duyduğunuz içgörüyü " +"edinin. Kampanya\n" +"başına istatistikleri takip edin: geri dönüş oranları, gönderilen e-" +"postalar, en iyi içerik vb.\n" +"Net gösterge panelleri, kampanya performansınızın doğrudan bir özetini verir." +"\n" +"\n" +"Diğer Uygulamalarla Tam Entegrasyon\n" +"---------------------------------\n" +"\n" +"Tetikleyicilere (ör. 20 gündür etkinlik yok, promosyon e-postasına yanıt\n" +"verildi, vb.) dayalı olarak otomasyon kuralları tanımlayın (ör. satış\n" +"temsilcisinden arama yapmasını istemek, e-posta göndermek, ...).\n" +"\n" +"Kampanyaları müşteri adayı oluşturma aşamasından satış kapatmaya kadar her " +"kanalda\n" +"optimize edin. Nereye yatırım yapacağınız konusunda daha akılcı kararlar " +"verin ve\n" +"pazarlama faaliyetlerinizin şirketinizin karlılığı üzerindeki etkisini " +"gösterin.\n" +"\n" +"Web sitenize kolayca bir iletişim formu entegre edin. Form gönderimleri Odoo " +"CRM’de otomatik\n" +"olarak müşteri adayı oluşturur. Bu müşteri adayları pazarlama " +"kampanyalarında kullanılabilir.\n" +"\n" +"Satış huninizi zahmetsizce " +"yönetin.\n" +"Müşteri adayları çekin, telefon görüşmeleri ve toplantıların takibini yapın." +"\n" +"Müşteri adayı kalitesini analiz edin, bilinçli kararlar verin ve e-" +"postaları\n" +"doğrudan uygulamaya entegre ederek zamandan tasarruf edin.\n" +"\n" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mx_reports @@ -34122,7 +34406,7 @@ msgstr "Odoo Mobil Satış Noktası modülü" #. module: base #: model:ir.module.module,shortdesc:base.module_odoo_partner msgid "Odoo Partner" -msgstr "" +msgstr "Odoo Partner" #. module: base #: model:ir.module.module,description:base.module_point_of_sale @@ -34598,6 +34882,145 @@ msgid "" "\n" "Schedule, organize, promote or sell events online; conferences, trainings, webinars, etc.\n" msgstr "" +"Odoo Web Sitesi Oluşturucu\n" +"--------------------\n" +"\n" +"Harika ve ücretsiz bir web " +"sitesi edinin,\n" +"Odoo web sitesi oluşturucu " +"ile kolayca özelleştirin.\n" +"\n" +"Kullanımı son derece kolay oluşturucumuzla kurumsal seviyede bir web sitesi " +"yaratın.\n" +"Özenle tasarlanmış yapı bloklarını kullanın ve her şeyi satır içinde " +"düzenleyin.\n" +"\n" +"Hazır gelen işlevlerden yararlanın; e-Ticaret, etkinlikler, bloglar, iş " +"ilanları,\n" +"müşteri referansları, harekete geçirici mesajlar vb.\n" +"\n" +"Satır İçi Düzenleme\n" +"--------------------\n" +"\n" +"Hiçbir teknik bilgiye gerek duymadan güzel web siteleri oluşturun. Odoo’nun " +"benzersiz “satır içi\n" +"düzenleme” yaklaşımı, web sitesi oluşturmayı şaşırtıcı derecede kolay hale " +"getirir. Artık karmaşık \n" +"bir arka uca gerek yok; herhangi bir içeriği değiştirmek için sadece üzerine " +"tıklayın.\n" +"\n" +"“Bir ürünün fiyatını değiştirmek mi istiyorsunuz? Ya da fontu kalın yapmak " +"mı? Bir blog\n" +"başlığını değiştirmek mi istiyorsunuz?” Sadece tıklayın ve değiştirin. Ne " +"görürseniz, onu alırsınız. Gerçekten.\n" +"\n" +"Harika. Şaşırtıcı Derecede Güzel.\n" +"---------------------------------\n" +"\n" +"Odoo’nun yapı blokları, geleneksel WYSIWYG sayfa düzenleyicileriyle\n" +"mümkün olmayan modern web siteleri tasarlamanıza imkan tanır.\n" +"\n" +"Ürün açıklamaları, bloglar veya statik sayfalar için olsun, temiz içerikler\n" +"oluşturmak için profesyonel bir tasarımcı olmanıza gerek yok. Sadece\n" +"sürükleyip bırakın ve önceden tanımlanmış yapı bloklarını özelleştirin.\n" +"\n" +"Kurumsal Kullanıma Hazır; Kutudan Çıkar Çıkmaz\n" +"--------------------------------\n" +"\n" +"Yalnızca bir tıkla hazır kurumsal özellikleri etkinleştirin; e-Ticaret, " +"harekete\n" +"geçirici mesajlar, iş ilanları, etkinlikler, müşteri referansları, bloglar " +"vb.\n" +"\n" +"Geleneksel eTicaret ve CMS sistemleri kötü tasarlanmış arka uçlara sahiptir " +"çünkü bu onların\n" +"ana odak noktası değildir. Odoo entegrasyonu ile siparişlerinizi, iş " +"başvurularınızı,\n" +"müşteri adaylarınızı takip etmek için en iyi yönetim yazılımından " +"faydalanırsınız.\n" +"\n" +"Harika Bir Mobil Deneyim\n" +"-------------------------\n" +"\n" +"Bootstrap tabanlı duyarlı tasarımımız sayesinde mobil uyumlu bir web " +"sitesine sahip olun.\n" +"Tüm sayfalarınız ekran boyutuna otomatik olarak uyum sağlar (cep " +"telefonları, tabletler, masaüstü).\n" +"Mobil içeriklerle uğraşmanıza gerek yok, varsayılan olarak çalışır.\n" +"\n" +"SEO araçları parmaklarınızın ucunda\n" +"-----------------------------\n" +"\n" +"‘Tanıt’ aracı, Google’da en çok aranan terimlere göre anahtar kelimeler " +"önerir.\n" +"Arama Motoru Optimizasyonu (SEO) araçları hiçbir yapılandırma gerektirmeden " +"kullanıma\n" +"hazırdır.\n" +"\n" +"Google Analytics, alışveriş sepeti etkinliklerinizi varsayılan olarak takip " +"eder. Site haritası ve\n" +"yapılandırılmış içerikler, Google dizinlemesi için otomatik olarak " +"oluşturulur.\n" +"\n" +"Çoklu Dil Kolaylığı\n" +"-------------------------\n" +"\n" +"Web sitenizi zahmetsizce birden çok dile çevirin. Odoo, ana sayfada\n" +"yaptığınız düzenlemeleri takip ederek çevirileri otomatik olarak sayfalar\n" +"arasında önerir ve uygular.\n" +"\n" +"Tasarımcı Dostu Şablonlar\n" +"---------------------------\n" +"\n" +"Şablonlar harika ve tasarımı kolaydır. Yeni sayfalar, temalar veya yapı " +"blokları\n" +"oluşturmak için geliştirme yapmanıza gerek yoktur. Temiz bir HTML yapısı,\n" +"[bootstrap](http://getbootstrap.com/) CSS kullanıyoruz.\n" +"\n" +"Entegre şablon düzenleyici ile her sayfayı anında özelleştirin. " +"Çalışmalarınızı\n" +"kolayca bir Odoo modülü olarak dağıtın.\n" +"\n" +"Akışkan Izgara Düzeni\n" +"--------------------\n" +"\n" +"Yapı bloklarını sürükleyip bırakarak mükemmel sayfalar tasarlayın. " +"Aradığınız\n" +"düzene uyması için bunları taşıyın ve ölçeklendirin.\n" +"\n" +"Yapı blokları, cihaz veya görüntüleme alanı boyutu arttıkça uygun şekilde " +"12\n" +"sütuna kadar ölçeklenen duyarlı, mobil uyumlu akışkan bir ızgara sistemine\n" +"dayanır.\n" +"\n" +"Profesyonel Temalar\n" +"-------------------\n" +"\n" +"Özel bir tema tasarlayın veya önceden tanımlı temaları kullanarak web\n" +"sitenizin görünümünü ve hissini özelleştirin.\n" +"\n" +"Yeni bir renk şemasını kolayca test edin; temanızı istediğiniz zaman tek " +"tıkla\n" +"değiştirebilirsiniz.\n" +"\n" +"Odoo Uygulamalarıyla Entegre\n" +"-------------------------\n" +"\n" +"### e-Ticaret\n" +"\n" +"Ürünlerinizi tanıtın, çevrim içi satış yapın, ziyaretçilerin alışveriş " +"deneyimini optimize edin.\n" +"\n" +"\n" +"### Blog\n" +"\n" +"Haberler yazın, yeni ziyaretçiler çekin, müşteri sadakati oluşturun.\n" +"\n" +"\n" +"### Çevrim İçi Etkinlikler\n" +"\n" +"Konferanslar, eğitimler, web seminerleri vb. etkinlikleri çevrim içi " +"planlayın, düzenleyin, tanıtın veya satın.\n" #. module: base #: model:ir.module.module,description:base.module_website_sale @@ -34976,6 +35399,8 @@ msgid "" "Odoo is unable to merge the generated PDFs because of %(num_errors)s " "corrupted file(s)" msgstr "" +"Odoo, %(num_errors)s bozuk dosya nedeniyle oluşturulan PDF'leri " +"birleştiremiyor" #. module: base #. odoo-python @@ -35036,7 +35461,7 @@ msgstr "Many2one alanlarda silinmede gerçekleştirilecek özellik" #. module: base #: model:ir.module.module,shortdesc:base.module_onboarding msgid "Onboarding Toolbox" -msgstr "" +msgstr "Başlangıç Araç Kutusu" #. module: base #: model:ir.module.module,description:base.module_sale_stock_margin @@ -35305,7 +35730,7 @@ msgstr "Sipariş" #: model:res.currency,currency_subunit_label:base.NOK #: model:res.currency,currency_subunit_label:base.SEK msgid "Ore" -msgstr "" +msgstr "Cevher" #. module: base #: model:ir.module.module,description:base.module_website_event_track @@ -35712,7 +36137,7 @@ msgstr "" #: model:res.currency,currency_unit_label:base.MRO #: model:res.currency,currency_unit_label:base.MRU msgid "Ouguiya" -msgstr "" +msgstr "Ouguiya" #. module: base #: model_terms:res.partner,website_description:base.res_partner_2 @@ -35750,7 +36175,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_outdoor_activities msgid "Outdoor Activities" -msgstr "" +msgstr "Açık Hava Etkinlikleri" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_ir_mail_server_search @@ -36027,37 +36452,37 @@ msgstr "POS Viva Wallet" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__prc msgid "PRC" -msgstr "" +msgstr "ÇHC" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pst8pdt msgid "PST8PDT" -msgstr "" +msgstr "PST8PDT" #. module: base #: model:res.currency,currency_unit_label:base.TOP msgid "Paanga" -msgstr "" +msgstr "Paanga" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/apia msgid "Pacific/Apia" -msgstr "" +msgstr "Pasifik/Apia" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/auckland msgid "Pacific/Auckland" -msgstr "" +msgstr "Pasifik/Auckland" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/bougainville msgid "Pacific/Bougainville" -msgstr "" +msgstr "Pasifik/Bougainville" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/chatham msgid "Pacific/Chatham" -msgstr "" +msgstr "Pasifik/Chatham" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/chuuk @@ -36067,177 +36492,177 @@ msgstr "Pacific/Chuuk" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/easter msgid "Pacific/Easter" -msgstr "" +msgstr "Pasifik/Easter" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/efate msgid "Pacific/Efate" -msgstr "" +msgstr "Pasifik/Efate" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/enderbury msgid "Pacific/Enderbury" -msgstr "" +msgstr "Pasifik/Enderbury" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/fakaofo msgid "Pacific/Fakaofo" -msgstr "" +msgstr "Pasifik/Fakaofo" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/fiji msgid "Pacific/Fiji" -msgstr "" +msgstr "Pasifik/Fiji" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/funafuti msgid "Pacific/Funafuti" -msgstr "" +msgstr "Pasifik/Funafuti" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/galapagos msgid "Pacific/Galapagos" -msgstr "" +msgstr "Pasifik/Galapagos" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/gambier msgid "Pacific/Gambier" -msgstr "" +msgstr "Pasifik/Gambier" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/guadalcanal msgid "Pacific/Guadalcanal" -msgstr "" +msgstr "Pasifik/Guadalcanal" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/guam msgid "Pacific/Guam" -msgstr "" +msgstr "Pasifik/Guam" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/honolulu msgid "Pacific/Honolulu" -msgstr "" +msgstr "Pasifik/Honolulu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/johnston msgid "Pacific/Johnston" -msgstr "" +msgstr "Pasifik/Johnston" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/kanton msgid "Pacific/Kanton" -msgstr "" +msgstr "Pasifik/Kanton" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/kiritimati msgid "Pacific/Kiritimati" -msgstr "" +msgstr "Pasifik/Kiritimati" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/kosrae msgid "Pacific/Kosrae" -msgstr "" +msgstr "Pasifik/Kosrae" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/kwajalein msgid "Pacific/Kwajalein" -msgstr "" +msgstr "Pasifik/Kwajalein" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/majuro msgid "Pacific/Majuro" -msgstr "" +msgstr "Pasifik/Majuro" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/marquesas msgid "Pacific/Marquesas" -msgstr "" +msgstr "Pasifik/Marquesas" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/midway msgid "Pacific/Midway" -msgstr "" +msgstr "Pasifik/Midway" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/nauru msgid "Pacific/Nauru" -msgstr "" +msgstr "Pasifik/Nauru" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/niue msgid "Pacific/Niue" -msgstr "" +msgstr "Pasifik/Niue" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/norfolk msgid "Pacific/Norfolk" -msgstr "" +msgstr "Pasifik/Norfolk" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/noumea msgid "Pacific/Noumea" -msgstr "" +msgstr "Pasifik/Noumea" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/pago_pago msgid "Pacific/Pago_Pago" -msgstr "" +msgstr "Pasifik/Pago_Pago" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/palau msgid "Pacific/Palau" -msgstr "" +msgstr "Pasifik/Palau" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/pitcairn msgid "Pacific/Pitcairn" -msgstr "" +msgstr "Pasifik/Pitcairn" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/pohnpei msgid "Pacific/Pohnpei" -msgstr "" +msgstr "Pasifik/Pohnpei" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/ponape msgid "Pacific/Ponape" -msgstr "" +msgstr "Pasifik/Ponape" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/port_moresby msgid "Pacific/Port_Moresby" -msgstr "" +msgstr "Pasifik/Port_Moresby" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/rarotonga msgid "Pacific/Rarotonga" -msgstr "" +msgstr "Pasifik/Rarotonga" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/saipan msgid "Pacific/Saipan" -msgstr "" +msgstr "Pasifik/Saipan" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/samoa msgid "Pacific/Samoa" -msgstr "" +msgstr "Pasifik/Samoa" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/tahiti msgid "Pacific/Tahiti" -msgstr "" +msgstr "Pasifik/Tahiti" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/tarawa msgid "Pacific/Tarawa" -msgstr "" +msgstr "Pasifik/Tarawa" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/tongatapu msgid "Pacific/Tongatapu" -msgstr "" +msgstr "Pasifik/Tongatapu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/truk @@ -36247,17 +36672,17 @@ msgstr "Pacific/Truk" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/wake msgid "Pacific/Wake" -msgstr "" +msgstr "Pasifik/Wake" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/wallis msgid "Pacific/Wallis" -msgstr "" +msgstr "Pasifik/Wallis" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__pacific/yap msgid "Pacific/Yap" -msgstr "" +msgstr "Pasifik/Yap" #. module: base #. odoo-python @@ -36280,12 +36705,12 @@ msgstr "Sayfa genişliği (mm)" #: model:res.currency,currency_subunit_label:base.NPR #: model:res.currency,currency_subunit_label:base.PKR msgid "Paisa" -msgstr "" +msgstr "Paisa" #. module: base #: model:res.currency,currency_subunit_label:base.INR msgid "Paise" -msgstr "" +msgstr "Paise" #. module: base #: model:res.country,name:base.pk @@ -36367,7 +36792,7 @@ msgstr "Papua Yeni Gine" #. module: base #: model:res.currency,currency_subunit_label:base.RSD msgid "Para" -msgstr "" +msgstr "Para" #. module: base #: model:res.country,name:base.py @@ -36393,7 +36818,7 @@ msgstr "Üst" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__parent_action_id msgid "Parent Action" -msgstr "" +msgstr "Üst İşlem" #. module: base #: model:ir.model.fields,field_description:base.field_ir_module_category__parent_id @@ -36409,7 +36834,7 @@ msgstr "Üst Şirket" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_inherit__parent_field_id msgid "Parent Field" -msgstr "" +msgstr "Üst Alan" #. module: base #: model:ir.model.fields,field_description:base.field_ir_ui_menu__parent_id @@ -36554,7 +36979,7 @@ msgstr "Kayıt için şifre politikası desteği" #. module: base #: model:res.currency,currency_unit_label:base.MOP msgid "Pataca" -msgstr "" +msgstr "Pataka" #. module: base #: model:ir.model.fields,field_description:base.field_ir_logging__path @@ -36589,7 +37014,7 @@ msgstr "URL'de gösterilecek yol" #: model:ir.model.constraint,message:base.constraint_ir_act_window_path_unique #: model:ir.model.constraint,message:base.constraint_ir_actions_path_unique msgid "Path to show in the URL must be unique! Please choose another one." -msgstr "" +msgstr "URL’de gösterilecek yol benzersiz olmalı! Lütfen başka bir tane seçin." #. module: base #: model:ir.model.fields,help:base.field_ir_actions_server__update_path @@ -36606,7 +37031,7 @@ msgstr "Biçimlendirilecek desen" #. module: base #: model:ir.module.module,shortdesc:base.module_appointment_account_payment msgid "Pay to Book" -msgstr "" +msgstr "Rezervasyon İçin Ödeme Yapın" #. module: base #: model:ir.module.module,shortdesc:base.module_website_appointment_account_payment @@ -36696,7 +37121,7 @@ msgstr "Ödeme Sağlayıcısı: Mollie" #. module: base #: model:ir.module.module,shortdesc:base.module_payment_nuvei msgid "Payment Provider: Nuvei" -msgstr "" +msgstr "Ödeme Sağlayıcı: Nuvei" #. module: base #: model:ir.module.module,shortdesc:base.module_payment_paypal @@ -36721,12 +37146,12 @@ msgstr "Ödeme Sağlayıcısı: Stripe" #. module: base #: model:ir.module.module,shortdesc:base.module_payment_worldline msgid "Payment Provider: Worldline" -msgstr "" +msgstr "Ödeme Sağlayıcı: Worldline" #. module: base #: model:ir.module.module,shortdesc:base.module_payment_xendit msgid "Payment Provider: Xendit" -msgstr "" +msgstr "Ödeme Sağlayıcı: Xendit" #. module: base #: model:ir.module.category,name:base.module_category_accounting_payment_providers @@ -36775,7 +37200,7 @@ msgstr "Bordro Yerelleştirmesi" #: model:res.currency,currency_subunit_label:base.GIP #: model:res.currency,currency_subunit_label:base.SHP msgid "Penny" -msgstr "" +msgstr "Peni" #. module: base #: model:ir.module.module,shortdesc:base.module_account_peppol @@ -36785,7 +37210,7 @@ msgstr "Peppol" #. module: base #: model:ir.module.module,shortdesc:base.module_personal_trainer msgid "Personal Trainer" -msgstr "" +msgstr "Kişisel Antrenör" #. module: base #: model_terms:res.partner,website_description:base.res_partner_2 @@ -36831,12 +37256,12 @@ msgstr "Satış Noktası için Peru Yerelleştirmesi" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pe_website_sale msgid "Peruvian eCommerce" -msgstr "" +msgstr "Peru e-Ticaret" #. module: base #: model:res.currency,currency_subunit_label:base.GHS msgid "Pesewas" -msgstr "" +msgstr "Pesewa" #. module: base #: model:res.currency,currency_unit_label:base.ARS @@ -36849,7 +37274,7 @@ msgstr "" #: model:res.currency,currency_unit_label:base.UYI #: model:res.currency,currency_unit_label:base.UYU msgid "Peso" -msgstr "" +msgstr "Peso" #. module: base #: model:res.currency,currency_unit_label:base.DOP @@ -36860,7 +37285,7 @@ msgstr "Pesos" #. module: base #: model:ir.module.module,shortdesc:base.module_pharmacy_retail msgid "Pharmacy" -msgstr "" +msgstr "Eczane" #. module: base #: model:res.country,name:base.ph @@ -36880,7 +37305,7 @@ msgstr "Filipinler - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ph_check_printing msgid "Philippines Checks Layout" -msgstr "" +msgstr "Filipin Çek Düzeni" #. module: base #. odoo-python @@ -36906,23 +37331,23 @@ msgstr "Telefon:" #. module: base #: model:ir.module.module,shortdesc:base.module_photography msgid "Photography" -msgstr "" +msgstr "Fotoğrafçılık" #. module: base #: model:res.currency,currency_subunit_label:base.SSP msgid "Piasters" -msgstr "" +msgstr "Piaster" #. module: base #: model:res.currency,currency_subunit_label:base.EGP #: model:res.currency,currency_subunit_label:base.LBP msgid "Piastres" -msgstr "" +msgstr "Piaster" #. module: base #: model:res.currency,currency_subunit_label:base.SYP msgid "Piastrp" -msgstr "" +msgstr "Piastrp" #. module: base #: model:res.country,name:base.pn @@ -37214,7 +37639,7 @@ msgstr "Bir many2many ilişki uygulanması PostgreSQL tablo adı." #: model:res.currency,currency_unit_label:base.SHP #: model:res.currency,currency_unit_label:base.SYP msgid "Pound" -msgstr "" +msgstr "Pound (Sterlin)" #. module: base #: model:res.currency,currency_unit_label:base.SSP @@ -37296,7 +37721,7 @@ msgstr "CA Çeklerini Yazdır" #. module: base #: model:ir.module.module,summary:base.module_l10n_ph_check_printing msgid "Print PH Checks" -msgstr "" +msgstr "PH Çeklerini Yazdır" #. module: base #: model:ir.module.module,summary:base.module_l10n_us_check_printing @@ -37344,7 +37769,7 @@ msgstr "Özel methodlar (gibi %s) uzaktan aranamaz." #. odoo-python #: code:addons/base/models/ir_actions_report.py:0 msgid "Problematic record(s)" -msgstr "" +msgstr "Sorunlu kayıt(lar)" #. module: base #: model:ir.module.module,summary:base.module_stock_barcode_mrp @@ -37365,7 +37790,7 @@ msgstr "Ürün Kullanılabilirliği Bildirimleri" #. module: base #: model:ir.module.module,shortdesc:base.module_product_barcodelookup msgid "Product Barcode Lookup" -msgstr "" +msgstr "Ürün Barkod Arama" #. module: base #: model:ir.module.module,shortdesc:base.module_website_product_barcodelookup @@ -37490,7 +37915,7 @@ msgstr "Proje" #. module: base #: model:ir.module.module,shortdesc:base.module_project_account msgid "Project - Account" -msgstr "" +msgstr "Proje - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_project_purchase_stock @@ -37734,12 +38159,12 @@ msgstr "Proje Satış Abonelik Çalışma Çizelgesi" #. module: base #: model:ir.module.module,shortdesc:base.module_project_stock msgid "Project Stock" -msgstr "" +msgstr "Proje Stok" #. module: base #: model:ir.module.module,shortdesc:base.module_project_stock_account msgid "Project Stock Account" -msgstr "" +msgstr "Proje Stok Muhasebesi" #. module: base #: model:ir.module.module,shortdesc:base.module_project_stock_landed_costs @@ -37857,7 +38282,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_condominium msgid "Property Owner Association" -msgstr "" +msgstr "Mülk Sahipleri Derneği" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -37959,12 +38384,12 @@ msgstr "Porto Riko" #. module: base #: model:res.currency,currency_unit_label:base.BWP msgid "Pula" -msgstr "" +msgstr "Pula" #. module: base #: model:res.currency,currency_subunit_label:base.AFN msgid "Puls" -msgstr "" +msgstr "Puls" #. module: base #: model:ir.module.category,name:base.module_category_accounting_localizations_purchase @@ -38039,7 +38464,7 @@ msgstr "Push notification to track listeners" #. module: base #: model:res.currency,currency_subunit_label:base.MMK msgid "Pya" -msgstr "" +msgstr "Pya" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__code @@ -38050,7 +38475,7 @@ msgstr "Python Kodu" #. module: base #: model:ir.model.fields,field_description:base.field_ir_embedded_actions__python_method msgid "Python Method" -msgstr "" +msgstr "Python Metodu" #. module: base #: model:ir.model.fields,help:base.field_ir_embedded_actions__python_method @@ -38076,7 +38501,7 @@ msgstr "QWeb Zaman alanı" #. module: base #: model:res.currency,currency_subunit_label:base.AZN msgid "Qapik" -msgstr "" +msgstr "Qapik" #. module: base #: model:res.country,name:base.qa @@ -38086,12 +38511,12 @@ msgstr "Katar" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_qa msgid "Qatar - Accounting" -msgstr "" +msgstr "Katar - Muhasebe" #. module: base #: model:res.currency,currency_subunit_label:base.ALL msgid "Qindarke" -msgstr "" +msgstr "Qindarka" #. module: base #: model:ir.module.category,name:base.module_category_manufacturing_quality @@ -38155,7 +38580,7 @@ msgstr "Sorgu Sayısı" #. module: base #: model:res.currency,currency_unit_label:base.GTQ msgid "Quetzales" -msgstr "" +msgstr "Quetzal" #. module: base #: model:ir.module.module,shortdesc:base.module_website_event_meet_quiz @@ -38303,12 +38728,12 @@ msgstr "RNC" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__roc msgid "ROC" -msgstr "" +msgstr "ROC" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__rok msgid "ROK" -msgstr "" +msgstr "ROK" #. module: base #: model:res.country,vat_label:base.hn @@ -38334,7 +38759,7 @@ msgstr "Raleway" #. module: base #: model:res.currency,currency_unit_label:base.ZAR msgid "Rand" -msgstr "" +msgstr "Rand" #. module: base #: model:ir.model.fields,field_description:base.field_res_currency__rate_string @@ -38350,13 +38775,13 @@ msgstr "Oranlar" #. module: base #: model:ir.module.module,shortdesc:base.module_payment_razorpay_oauth msgid "Razorpay OAuth Integration" -msgstr "" +msgstr "Razorpay OAuth Entegrasyonu" #. module: base #: model:ir.model.fields,field_description:base.field_ir_rule__perm_read #: model_terms:ir.ui.view,arch_db:base.view_rule_search msgid "Read" -msgstr "" +msgstr "Oku" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_access__perm_read @@ -38373,7 +38798,7 @@ msgstr "Salt Okunur" #. module: base #: model:res.currency,currency_unit_label:base.BRL msgid "Real" -msgstr "" +msgstr "Real" #. module: base #: model:ir.module.module,shortdesc:base.module_industry_real_estate @@ -38443,7 +38868,7 @@ msgstr "Record time" #: model:ir.model.fields,field_description:base.field_ir_actions_server__crud_model_id #: model:ir.model.fields,field_description:base.field_ir_cron__crud_model_id msgid "Record to Create" -msgstr "" +msgstr "Oluşturulacak Kayıt" #. module: base #: model:ir.module.category,name:base.module_category_human_resources_recruitment @@ -38557,7 +38982,7 @@ msgstr "İlişkili Alan" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__related msgid "Related Field Definition" -msgstr "" +msgstr "İlgili Alan Tanımı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__relation @@ -38660,7 +39085,7 @@ msgstr "Kiralık" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_mrp_renting msgid "Rental Manufacturing Bridge" -msgstr "" +msgstr "Kiralama Üretim Köprüsü" #. module: base #: model:ir.module.module,shortdesc:base.module_test_rental_product_configurators @@ -38675,7 +39100,7 @@ msgstr "Kiralık Stok Yönetimi" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_renting_planning msgid "Rental/Planning Bridge" -msgstr "" +msgstr "Kiralama/Planlama Köprüsü" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_renting_sign @@ -38895,7 +39320,7 @@ msgstr "Kaynak ID" #. module: base #: model:ir.module.module,shortdesc:base.module_resource_mail msgid "Resource Mail" -msgstr "" +msgstr "Kaynak E-postası" #. module: base #: model:ir.model.fields,field_description:base.field_ir_attachment__res_model @@ -38949,7 +39374,7 @@ msgstr "Geriye al" #: model:res.currency,currency_unit_label:base.QAR #: model:res.currency,currency_unit_label:base.YER msgid "Rial" -msgstr "" +msgstr "Rial" #. module: base #: model:res.currency,currency_unit_label:base.KHR @@ -38969,12 +39394,12 @@ msgstr "Sağdan Sola" #. module: base #: model:res.currency,currency_unit_label:base.MYR msgid "Ringgit" -msgstr "" +msgstr "Ringgit" #. module: base #: model:res.currency,currency_unit_label:base.SAR msgid "Riyal" -msgstr "" +msgstr "Riyal" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_company__font__roboto @@ -38999,7 +39424,7 @@ msgstr "Romanya - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_edi_stock msgid "Romania - E-Transport" -msgstr "" +msgstr "Romanya - e-Transport" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_edi_stock_batch @@ -39009,7 +39434,7 @@ msgstr "Romanya - E-Nakliye Toplu Sevkiyatlar" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_edi msgid "Romania - E-invoicing" -msgstr "" +msgstr "Romanya - e-Fatura" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_hr_payroll @@ -39024,12 +39449,12 @@ msgstr "Romanya - Muhasebe ile Bordro" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_saft_import msgid "Romania - SAF-T Import" -msgstr "" +msgstr "Romanya - SAF-T İçe Aktarma" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro_saft msgid "Romanian SAF-T Export" -msgstr "" +msgstr "Romanya SAF-T Dışa Aktarma" #. module: base #: model:ir.module.category,name:base.module_category_productivity_room @@ -39061,22 +39486,22 @@ msgstr "Yuvarlama ünitesi" #. module: base #: model:res.currency,currency_unit_label:base.RUB msgid "Ruble" -msgstr "" +msgstr "Ruble" #. module: base #: model:res.currency,currency_unit_label:base.BYR msgid "Ruble BYR" -msgstr "" +msgstr "Ruble BYR" #. module: base #: model:res.currency,currency_unit_label:base.BYN msgid "Rubles" -msgstr "" +msgstr "Ruble" #. module: base #: model:res.currency,currency_unit_label:base.MVR msgid "Rufiyaa" -msgstr "" +msgstr "Rufiyaa" #. module: base #: model:ir.model,name:base.model_ir_rule @@ -39126,17 +39551,17 @@ msgstr "Bu eylemi manuel olarak çalıştırın." #: model:res.currency,currency_unit_label:base.PKR #: model:res.currency,currency_unit_label:base.SCR msgid "Rupee" -msgstr "" +msgstr "Rupi" #. module: base #: model:res.currency,currency_unit_label:base.INR msgid "Rupees" -msgstr "" +msgstr "Rupi" #. module: base #: model:res.currency,currency_unit_label:base.IDR msgid "Rupiah" -msgstr "" +msgstr "Rupiah" #. module: base #: model:res.country,name:base.ru @@ -39151,7 +39576,7 @@ msgstr "Ruanda" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_rw msgid "Rwanda - Accounting" -msgstr "" +msgstr "Ruanda - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_rw_reports @@ -39401,17 +39826,17 @@ msgstr "Satış Muhasebesi" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_commission msgid "Sale Commission" -msgstr "" +msgstr "Satış Komisyonu" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_commission_margin msgid "Sale Commission: Margin" -msgstr "" +msgstr "Satış Komisyonu: Marj" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_commission_subscription msgid "Sale Commission: Subscription" -msgstr "" +msgstr "Satış Komisyonu: Abonelik" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_intrastat @@ -39481,7 +39906,7 @@ msgstr "Satış Satın Alma Projesi" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_renting_project msgid "Sale Renting Project" -msgstr "" +msgstr "Satış Kiralama Proje Yönetimi" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_stock_margin @@ -39491,7 +39916,7 @@ msgstr "Satış Stok Marjı" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_subscription_stock msgid "Sale Subscriptions Stock" -msgstr "" +msgstr "Satış Abonelikler Stok" #. module: base #: model:ir.module.module,description:base.module_sale_subscription_stock @@ -39578,7 +40003,7 @@ msgstr "Sales - Project" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_service msgid "Sales - Service" -msgstr "" +msgstr "Satış - Hizmet" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_expense @@ -39654,7 +40079,7 @@ msgstr "Samoa" #: model:ir.model.fields,field_description:base.field_ir_cron__webhook_sample_payload #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Sample Payload" -msgstr "" +msgstr "Örnek Yük" #. module: base #: model:res.country,name:base.sm @@ -39664,32 +40089,32 @@ msgstr "San Marino" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize msgid "Sanitize HTML" -msgstr "" +msgstr "HTML’yi Temizle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize_attributes msgid "Sanitize HTML Attributes" -msgstr "" +msgstr "HTML Öz Niteliklerini Temizle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize_form msgid "Sanitize HTML Form" -msgstr "" +msgstr "HTML Formunu Temizle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize_style msgid "Sanitize HTML Style" -msgstr "" +msgstr "HTML Stilini Temizle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize_tags msgid "Sanitize HTML Tags" -msgstr "" +msgstr "HTML Etiketlerini Temizle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__sanitize_overridable msgid "Sanitize HTML overridable" -msgstr "" +msgstr "HTML'yi geçersiz kılabilir şekilde temizle" #. module: base #: model:ir.model.fields,field_description:base.field_res_partner_bank__sanitized_acc_number @@ -39699,17 +40124,17 @@ msgstr "Arındırılmış Hesap Numarası" #. module: base #: model:res.currency,currency_subunit_label:base.RWF msgid "Santime" -msgstr "" +msgstr "Santim" #. module: base #: model:res.currency,currency_subunit_label:base.LVL msgid "Santims" -msgstr "" +msgstr "Santim" #. module: base #: model:res.currency,currency_subunit_label:base.THB msgid "Satang" -msgstr "" +msgstr "Satang" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_lang__week_start__6 @@ -40078,7 +40503,7 @@ msgstr "Ziyaretçilere olası satışlarla SMS gönderme" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__webhook msgid "Send Webhook Notification" -msgstr "" +msgstr "Webhook Bildirimi Gönder" #. module: base #: model:ir.module.module,summary:base.module_sign @@ -40210,7 +40635,7 @@ msgstr "" #. module: base #: model:res.currency,currency_subunit_label:base.WST msgid "Sene" -msgstr "" +msgstr "Sene" #. module: base #: model:res.country,name:base.sn @@ -40220,18 +40645,18 @@ msgstr "Senegal" #. module: base #: model:res.currency,currency_subunit_label:base.TOP msgid "Seniti" -msgstr "" +msgstr "Seniti" #. module: base #: model:res.currency,currency_subunit_label:base.LSL msgid "Sente" -msgstr "" +msgstr "Sente" #. module: base #: model:res.currency,currency_subunit_label:base.SOS #: model:res.currency,currency_subunit_label:base.TZS msgid "Senti" -msgstr "" +msgstr "Senti" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__grouping @@ -40373,7 +40798,7 @@ msgstr "Oturum" #: model:ir.model.fields,field_description:base.field_res_device__session_identifier #: model:ir.model.fields,field_description:base.field_res_device_log__session_identifier msgid "Session Identifier" -msgstr "" +msgstr "Oturum Tanımlayıcı" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_model_fields__on_delete__set_null @@ -40388,7 +40813,7 @@ msgstr "Parola Ayarla" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Set a value..." -msgstr "" +msgstr "Bir değer ayarlayın..." #. module: base #: model_terms:ir.ui.view,arch_db:base.config_wizard_step_view_form @@ -40421,7 +40846,7 @@ msgstr "Güvenlik nedeniyle boş parolalara izin verilmemektedir!" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__update_m2m_operation__set msgid "Setting it to" -msgstr "" +msgstr "Şuna ayarlanıyor:" #. module: base #: model:ir.actions.act_window,name:base.res_config_setting_act_window @@ -40467,19 +40892,19 @@ msgstr "Paylaşılan" #. module: base #: model:res.currency,currency_unit_label:base.ILS msgid "Shekel" -msgstr "" +msgstr "Şekel" #. module: base #: model:res.currency,currency_unit_label:base.KES #: model:res.currency,currency_unit_label:base.TZS #: model:res.currency,currency_unit_label:base.UGX msgid "Shilling" -msgstr "" +msgstr "Şilin" #. module: base #: model:res.currency,currency_unit_label:base.SOS msgid "Shillings" -msgstr "" +msgstr "Şilin" #. module: base #: model:ir.module.module,description:base.module_delivery_sendcloud @@ -40489,7 +40914,7 @@ msgstr "Sendcloud platformu ile Gönderi Entegrasyonu" #. module: base #: model:ir.module.module,shortdesc:base.module_delivery_shiprocket msgid "Shiprocket Shipping" -msgstr "" +msgstr "Shiprocket Kargo" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_shiprocket @@ -40499,12 +40924,12 @@ msgstr "Shiprocket: Teslimatta Ödeme" #. module: base #: model:ir.module.module,shortdesc:base.module_shoe_maker msgid "Shoe Maker" -msgstr "" +msgstr "Ayakkabıcı" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_shopee msgid "Shopee Connector" -msgstr "" +msgstr "Shopee Bağlayıcı" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_wishlist @@ -40520,7 +40945,7 @@ msgstr "Kısa" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__short_time_format msgid "Short Time Format" -msgstr "" +msgstr "Kısa Zaman Formatı" #. module: base #: model:ir.model,name:base.model_res_users_apikeys_show @@ -40607,7 +41032,7 @@ msgstr "Satış noktası basit indirim " #. module: base #: model:res.currency,currency_subunit_label:base.MOP msgid "Sin" -msgstr "" +msgstr "Sin" #. module: base #. odoo-python @@ -40809,7 +41234,7 @@ msgstr "Sosyal Testler: Tüm alt modüllerle sosyal medyaya özgü testler" #. module: base #: model:ir.module.module,shortdesc:base.module_social_twitter msgid "Social X" -msgstr "" +msgstr "Social X" #. module: base #: model:ir.module.module,shortdesc:base.module_social_youtube @@ -40824,12 +41249,12 @@ msgstr "Şirket ayarları için sosyal medya konektörleri." #. module: base #: model:ir.module.module,shortdesc:base.module_software_reseller msgid "Software Reseller" -msgstr "" +msgstr "Yazılım Bayisi" #. module: base #: model:ir.module.module,shortdesc:base.module_solar_installation msgid "Solar Energy Systems" -msgstr "" +msgstr "üneş Enerjisi Sistemleri" #. module: base #: model:res.currency,currency_unit_label:base.PEN @@ -40845,7 +41270,7 @@ msgstr "Solomon Adaları" #: model:res.currency,currency_unit_label:base.KGS #: model:res.currency,currency_unit_label:base.UZS msgid "Som" -msgstr "" +msgstr "Som" #. module: base #: model:res.country,name:base.so @@ -40861,7 +41286,7 @@ msgstr "Bazen BIC ya da SWIFT olarak geçer." #. module: base #: model:res.currency,currency_unit_label:base.TJS msgid "Somoni" -msgstr "" +msgstr "Somoni" #. module: base #. odoo-python @@ -40979,7 +41404,7 @@ msgstr "İspanya - SII EDI Suministro de Libros" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_es_edi_tbai msgid "Spain - TicketBAI" -msgstr "" +msgstr "İspanya - TicketBAI" #. module: base #: model:ir.module.module,summary:base.module_l10n_es_pos @@ -41041,7 +41466,7 @@ msgstr "Sponsorlar, Ajanda, Etkinlik Haberleri" #. module: base #: model:ir.module.module,shortdesc:base.module_sports_club msgid "Sports Club" -msgstr "" +msgstr "Spor Kulübü" #. module: base #: model:ir.module.module,description:base.module_spreadsheet @@ -41288,7 +41713,7 @@ msgstr "Vergi Matrahı modülü için Standart Denetim Dosyası" #. module: base #: model:ir.module.module,shortdesc:base.module_delivery_starshipit msgid "Starshipit Shipping" -msgstr "" +msgstr "Starshipit Kargo" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_base_module_upgrade_install @@ -41366,7 +41791,7 @@ msgstr "IoT cihazlarıyla MRP iş emirlerindeki adımlar" #. module: base #: model:res.currency,currency_unit_label:base.GBP msgid "Sterling" -msgstr "" +msgstr "Sterlin" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_sms @@ -41391,12 +41816,12 @@ msgstr "Stok Girişi" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_fleet msgid "Stock Transport" -msgstr "" +msgstr "Stok Transferi" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_fleet_enterprise msgid "Stock Transport Enterprise" -msgstr "" +msgstr "Stok Transferi Kurumsal" #. module: base #: model:ir.module.module,summary:base.module_stock_fleet @@ -41478,7 +41903,7 @@ msgstr "Saklanan Dosya adı" #. module: base #: model:res.currency,currency_subunit_label:base.BGN msgid "Stotinki" -msgstr "" +msgstr "Stotinka" #. module: base #: model:ir.model.fields,field_description:base.field_res_bank__street @@ -41517,12 +41942,12 @@ msgstr "Adres2" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__strip_classes msgid "Strip Class Attribute" -msgstr "" +msgstr "Sınıf Öz Niteliğini Kaldır" #. module: base #: model:ir.model.fields,field_description:base.field_ir_model_fields__strip_style msgid "Strip Style Attribute" -msgstr "" +msgstr "Stil Öz Niteliğini Kaldır" #. module: base #: model:ir.module.category,name:base.module_category_customizations_studio @@ -41600,7 +42025,7 @@ msgstr "Tedarik argümanları" #. module: base #: model:ir.module.category,name:base.module_category_supply_chain msgid "Supply Chain" -msgstr "" +msgstr "Tedarik Zinciri" #. module: base #: model:ir.module.module,summary:base.module_website_event_track_live @@ -41625,7 +42050,7 @@ msgstr "Surinam" #. module: base #: model:ir.module.module,shortdesc:base.module_surveyor msgid "Surveying & Mapping" -msgstr "" +msgstr "Ölçme ve Haritalama" #. module: base #: model:ir.module.category,name:base.module_category_marketing_surveys @@ -41771,7 +42196,7 @@ msgstr "Sao Tome ve Principe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_sn msgid "Sénégal - Accounting" -msgstr "" +msgstr "Senegal - Muhasebe" #. module: base #: model:res.partner.industry,full_name:base.res_partner_industry_T @@ -41812,7 +42237,7 @@ msgstr "TOTPortal" #. module: base #: model:res.country,vat_label:base.zm msgid "TPIN" -msgstr "" +msgstr "TPIN" #. module: base #: model:ir.model.fields.selection,name:base.selection__report_paperformat__format__tabloid @@ -41858,17 +42283,17 @@ msgstr "Tacikistan" #. module: base #: model:res.currency,currency_unit_label:base.BDT msgid "Taka" -msgstr "" +msgstr "Taka" #. module: base #: model:res.currency,currency_unit_label:base.WST msgid "Tala" -msgstr "" +msgstr "Tala" #. module: base #: model:ir.module.module,shortdesc:base.module_headhunter msgid "Talent Acquisition" -msgstr "" +msgstr "Yetenek Kazanımı" #. module: base #: model_terms:res.partner,website_description:base.res_partner_2 @@ -41879,7 +42304,7 @@ msgstr "Yetenek Yönetimi" #. module: base #: model:res.currency,currency_subunit_label:base.MWK msgid "Tambala" -msgstr "" +msgstr "Tambala" #. module: base #: model:res.country,name:base.tz @@ -41889,7 +42314,7 @@ msgstr "Tanzanya Birleşik Cumhuriyeti" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tz_account msgid "Tanzania - Accounting" -msgstr "" +msgstr "Tanzanya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tz_reports @@ -41927,7 +42352,7 @@ msgstr "Görev Logları" #. module: base #: model:ir.module.module,shortdesc:base.module_tattoo_shop msgid "Tattoo Shop" -msgstr "" +msgstr "Dövme Salonu" #. module: base #. odoo-python @@ -41942,7 +42367,7 @@ msgstr "VKN/TCKN" #: model:ir.model.fields,field_description:base.field_res_partner__vat_label #: model:ir.model.fields,field_description:base.field_res_users__vat_label msgid "Tax ID Label" -msgstr "" +msgstr "Vergi No Etiketi" #. module: base #: model:ir.module.module,shortdesc:base.module_account_edi_ubl_cii_tax_extension @@ -41953,7 +42378,7 @@ msgstr "UBL/CII için Vergi Uzantısı" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_td msgid "Tchad - Accounting" -msgstr "" +msgstr "Çad - Muhasebe" #. module: base #: model:ir.module.category,name:base.module_category_hidden @@ -42000,7 +42425,7 @@ msgstr "Teknik Kur" #: model:ir.module.category,name:base.module_category_technical_settings #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "Technical Settings" -msgstr "" +msgstr "Teknik Ayarlar" #. module: base #: model:ir.actions.report,name:base.ir_module_reference_print @@ -42034,7 +42459,7 @@ msgstr "Şablon adı eksik." #: model:res.currency,currency_subunit_label:base.TMT #: model:res.currency,currency_unit_label:base.KZT msgid "Tenge" -msgstr "" +msgstr "Tenge" #. module: base #: model_terms:res.company,sign_terms:base.main_company @@ -42065,7 +42490,7 @@ msgstr "Test - Satış ve Satın Alma Siparişi EDI" #. module: base #: model:ir.module.module,shortdesc:base.module_test_html_field_history msgid "Test - html_field_history" -msgstr "" +msgstr "Test - html_field_history" #. module: base #: model:ir.module.module,shortdesc:base.module_test_new_api @@ -42264,7 +42689,7 @@ msgstr "Tests that custom auth works & is not impaired by CORS" #. module: base #: model:res.currency,currency_subunit_label:base.GEL msgid "Tetri" -msgstr "" +msgstr "Tetri" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_report__report_type__qweb-text @@ -42310,12 +42735,14 @@ msgid "" "The \"editable\" attribute of list views must be \"top\" or \"bottom\", " "received %(value)s" msgstr "" +"Liste görünümlerinin \"editable\" öz niteliği \"top\" veya \"bottom\" olmalı;" +" alınan: \"%(value)s\"" #. module: base #. odoo-python #: code:addons/base/models/res_company.py:0 msgid "The %s of a subsidiary must be the same as it's root company." -msgstr "" +msgstr "Bir iştirakçinin %s’si, ana şirketininki ile aynı olmalıdır." #. module: base #. odoo-python @@ -42476,7 +42903,7 @@ msgstr "" msgid "" "The company assigned to this partner does not match the company this partner" " represents." -msgstr "" +msgstr "Bu partnere atanan şirket, temsil ettiği şirket ile eşleşmiyor." #. module: base #. odoo-python @@ -42619,6 +43046,8 @@ msgstr "" #: model:ir.model.fields,help:base.field_ir_cron__first_failure_date msgid "The first time the cron failed. It is automatically reset on success." msgstr "" +"Cron’un ilk kez başarısız olduğu zaman. Başarı durumunda otomatik olarak " +"sıfırlanır." #. module: base #. odoo-python @@ -42663,7 +43092,7 @@ msgstr "Aralık değeri kesinlikle pozitif bir sayı olmalıdır." #. module: base #: model_terms:ir.ui.view,arch_db:base.form_res_users_key_description msgid "The key will be deleted once this period has elapsed." -msgstr "" +msgstr "Bu süre geçtikten sonra anahtar silinecektir." #. module: base #. odoo-python @@ -42764,6 +43193,8 @@ msgid "" "The name for the current rate is empty.\n" "Please set it." msgstr "" +"Geçerli kur için 'ad' boş.\n" +"Lütfen ayarlayın." #. module: base #: model:ir.model.constraint,message:base.constraint_res_country_name_uniq @@ -42828,12 +43259,15 @@ msgid "" "The number of consecutive failures of this job. It is automatically reset on" " success." msgstr "" +"Bu işin art arda başarısız olma sayısı. Başarı durumunda otomatik olarak " +"sıfırlanır." #. module: base #. odoo-python #: code:addons/base/models/ir_model.py:0 msgid "The ondelete policy \"%(policy)s\" is not valid for field \"%(field)s\"" msgstr "" +"\"%(field)s\" alanı için 'ondelete' politikası \"%(policy)s\" geçerli değil" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_model_fields_form @@ -42993,6 +43427,11 @@ msgid "" "For example, __import__, resulting in the external id " "__import__.%(record_id)s." msgstr "" +"%(xml_id)s kaydı, %(module_name)s modül ön ekine sahip. Bu, dış kimlikteki " +"'.' öncesindeki kısımdır. Ön ek mevcut bir modüle işaret ettiğinden, modül " +"yükseltildiğinde kayıt silinir. Bunun yerine ya hiç ön ek ve nokta " +"kullanmayın ya da mevcut bir modül olmayan bir ön ek kullanın. Örneğin, " +"import, dış kimliği import.%(record_id)s olacaktır." #. module: base #: model:ir.model.fields,help:base.field_res_company__company_registry @@ -43012,6 +43451,8 @@ msgid "" "The root node of a %(view_type)s view should be a <%(view_type)s>, not a " "<%(tag)s>" msgstr "" +"Bir %(view_type)s görünümünün kök düğümü <%(tag)s> değil, <%(view_type)s> " +"olmalıdır" #. module: base #: model:ir.model.constraint,message:base.constraint_res_currency_rounding_gt_zero @@ -43070,6 +43511,8 @@ msgstr "İl kodu." #: code:addons/base/models/ir_model.py:0 msgid "The table “%s” is used by another, possibly incompatible field(s)." msgstr "" +"“%s” tablosu, muhtemelen uyumsuz olan başka bir alan veya alanlar tarafından " +"kullanılıyor." #. module: base #: model:ir.model.fields,help:base.field_ir_model_fields__model @@ -43139,7 +43582,7 @@ msgstr "" #. module: base #: model:res.currency,currency_subunit_label:base.BWP msgid "Thebe" -msgstr "" +msgstr "Thebe" #. module: base #: model:ir.module.category,name:base.module_category_theme @@ -43200,6 +43643,7 @@ msgstr "Bu kolon modülü verileri içerir ve silinemez!" #: code:addons/base/models/res_currency.py:0 msgid "This currency is set on a company and therefore cannot be deactivated." msgstr "" +"Bu para birimi bir şirkete atanmıştır, bu nedenle devre dışı bırakılamaz." #. module: base #: model:ir.model.fields,help:base.field_ir_ui_view__arch_base @@ -43352,7 +43796,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_l10n_ph msgid "This is the module to manage the accounting chart for The Philippines." -msgstr "" +msgstr "Bu modül, Filipinler için hesap planını yönetmek amacıyla kullanılır." #. module: base #: model_terms:ir.ui.view,arch_db:base.view_currency_form @@ -43421,6 +43865,8 @@ msgid "" "This module allows customers to pay their invoices online using various " "payment methods." msgstr "" +"Bu modül, müşterilerin faturalarını çeşitli ödeme yöntemleriyle çevrim içi " +"ödemesine olanak tanır." #. module: base #: model:ir.module.module,description:base.module_website_sale_fedex @@ -43457,6 +43903,8 @@ msgid "" "This module allows you to create products from barcode using Barcode Lookup " "API Key" msgstr "" +"Bu modül, Barkod Arama API Anahtarı kullanarak ürün oluşturmanıza olanak " +"tanır" #. module: base #: model:ir.module.module,description:base.module_website_product_barcodelookup @@ -43492,7 +43940,7 @@ msgstr "" #. module: base #: model:ir.module.module,description:base.module_test_import_export msgid "This module contains tests related to base import and export." -msgstr "" +msgstr "Bu modül, temel içe ve dışa aktarma ile ilgili testleri içerir." #. module: base #: model:ir.module.module,description:base.module_test_mail @@ -43551,6 +43999,13 @@ msgid "" " each module implementing the mixin but rather test a dummy implementation of the later,\n" " hence the need for this test module.\n" msgstr "" +"u modül, elektronik çizelge düzenleme ile ilgili testleri içerir.\n" +" Modül, yalnızca diğer işlevsel modüllerde uygulanmış olan bazı mixin’" +"leri sunar.\n" +" Bir mixin’in genel davranışını test etmeye çalışırken, her mixin’i " +"uygulayan modülde test etmek yerine,\n" +" bunun sahte (dummy) bir uygulamasını test etmek daha mantıklıdır.\n" +" Bu nedenle bu test modülüne ihtiyaç vardır.\n" #. module: base #: model:ir.module.module,description:base.module_test_spreadsheet @@ -43561,6 +44016,13 @@ msgid "" " each module implementing the mixin but rather test a dummy implementation of the later,\n" " hence the need for this test module.\n" msgstr "" +"Bu modül, elektronik çizelge ile ilgili testleri içerir.\n" +" Modül, yalnızca diğer işlevsel modüllerde uygulanmış olan bazı mixin’" +"leri sunar.\n" +" Bir mixin’in genel davranışını test etmeye çalışırken, her mixin’i " +"uygulayan modülde test etmek yerine,\n" +" bunun sahte (dummy) bir uygulamasını test etmek daha mantıklıdır.\n" +" Bu nedenle bu test modülüne ihtiyaç vardır.\n" #. module: base #: model:ir.module.module,description:base.module_test_web_gantt @@ -43714,6 +44176,8 @@ msgstr "Bu modül Teslimatı WhatsApp ile entegre eder" msgid "" "This module integrates Odoo with WhatsApp to use WhatsApp messaging service" msgstr "" +"Bu modül, WhatsApp mesajlaşma hizmetini kullanmak için Odoo’yu WhatsApp ile " +"entegre eder" #. module: base #: model:ir.module.module,description:base.module_whatsapp_pos @@ -43832,7 +44296,7 @@ msgstr "Talep, Destek, Slaytlar" #. module: base #: model:res.currency,currency_subunit_label:base.KZT msgid "Tiin" -msgstr "" +msgstr "Tiin" #. module: base #: model:ir.model.fields,field_description:base.field_res_lang__time_format @@ -43874,7 +44338,7 @@ msgstr "Gantt Şemasında İzin" #. module: base #: model:ir.model.fields,field_description:base.field_ir_cron_progress__timed_out_counter msgid "Timed Out Counter" -msgstr "" +msgstr "Zaman Aşımı Sayacı" #. module: base #: model:ir.module.module,shortdesc:base.module_timer @@ -43944,7 +44408,7 @@ msgstr "Başlık" #. module: base #: model:res.currency,currency_subunit_label:base.UZS msgid "Tiyin" -msgstr "" +msgstr "Tiyin" #. module: base #: model:ir.model.fields,field_description:base.field_ir_sequence_date_range__date_to @@ -44010,7 +44474,7 @@ msgstr "Yapın" #. module: base #: model:res.currency,currency_subunit_label:base.PGK msgid "Toea" -msgstr "" +msgstr "Toea" #. module: base #: model:res.country,name:base.tg @@ -44020,7 +44484,7 @@ msgstr "Togo" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tg msgid "Togo - Accounting" -msgstr "" +msgstr "Togo - Muhasebe" #. module: base #: model:res.country,name:base.tk @@ -44081,7 +44545,7 @@ msgstr "Turlar" #. module: base #: model:ir.module.module,shortdesc:base.module_toy_store msgid "Toy Store" -msgstr "" +msgstr "Oyuncak Dükkanı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_profile__traces_async @@ -44185,6 +44649,8 @@ msgstr "Çeviriler" msgid "" "Translations for model translated fields only accept falsy values and str" msgstr "" +"Modellerin çevrilmiş alanlarındaki çeviriler yalnızca sahte (falsy) değerler " +"ve str kabul eder" #. module: base #: model:ir.module.module,description:base.module_stock_fleet @@ -44215,7 +44681,7 @@ msgstr "Salı" #. module: base #: model:res.currency,currency_unit_label:base.MNT msgid "Tugrik" -msgstr "" +msgstr "Tugrik" #. module: base #: model:res.country,name:base.tn @@ -44225,7 +44691,7 @@ msgstr "Tunus" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tn msgid "Tunisia - Accounting" -msgstr "" +msgstr "Tunus - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tn_reports @@ -44279,7 +44745,7 @@ msgstr "Two-Factor Authentication (TOTP)" #. module: base #: model:res.currency,currency_subunit_label:base.KGS msgid "Tyiyn" -msgstr "" +msgstr "Tyiyn" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__state @@ -44309,6 +44775,18 @@ msgid "" "- 'Send Webhook Notification': send a POST request to an external system, also known as a Webhook\n" "- 'Execute Existing Actions': define an action that triggers several other server actions\n" msgstr "" +"Sunucu eylemi türü. Aşağıdaki değerler kullanılabilir:\n" +"- 'Bir Kaydı Güncelle': bir kaydın değerlerini güncelle\n" +"- 'Etkinlik Oluştur': bir etkinlik oluştur (Sohbet)\n" +"- 'E-posta Gönder': bir mesaj, not paylaş veya e-posta gönder (Sohbet)\n" +"- 'SMS Gönder': SMS gönder, belgelerde kaydet (SMS) - 'Takipçi Ekle/Kaldır': " +"bir kayda takipçi ekle veya çıkar (Sohbet)\n" +"- 'Kayıt Oluştur': yeni değerlerle yeni bir kayıt oluştur\n" +"- 'Kod Çalıştır': çalıştırılacak bir Python kod bloğu\n" +"- 'Webhook Bildirimi Gönder': harici bir sisteme POST isteği gönder (Webhook)" +"\n" +"- 'Mevcut Eylemleri Çalıştır': birden fazla sunucu eylemini tetikleyen bir " +"eylem tanımla\n" #. module: base #: model:ir.model.fields,help:base.field_ir_model_constraint__type @@ -44339,7 +44817,7 @@ msgstr "Türkiye - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr_nilvera msgid "Türkiye - Nilvera" -msgstr "" +msgstr "Türkiye - Nilvera" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr_nilvera_einvoice @@ -44364,7 +44842,7 @@ msgstr "U - ÜLKE DIŞINDAKİ KURUM VE KURULUŞLARIN FAALİYETLERİ" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__uct msgid "UCT" -msgstr "" +msgstr "UCT" #. module: base #: model:ir.module.category,name:base.module_category_accounting_localizations_uk @@ -44405,7 +44883,7 @@ msgstr "UPS Sevkıyatı" #. module: base #: model:ir.module.module,shortdesc:base.module_delivery_ups msgid "UPS Shipping (Legacy)" -msgstr "" +msgstr "UPS Kargo (Eski)" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_ups @@ -44444,62 +44922,62 @@ msgstr "ABD Çek Düzeni" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/alaska msgid "US/Alaska" -msgstr "" +msgstr "ABD/Alaska" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/aleutian msgid "US/Aleutian" -msgstr "" +msgstr "ABD/Aleutian" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/arizona msgid "US/Arizona" -msgstr "" +msgstr "ABD/Arizona" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/central msgid "US/Central" -msgstr "" +msgstr "ABD/Merkez" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/east-indiana msgid "US/East-Indiana" -msgstr "" +msgstr "ABD/Doğu-Indiana" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/eastern msgid "US/Eastern" -msgstr "" +msgstr "ABD/Doğu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/hawaii msgid "US/Hawaii" -msgstr "" +msgstr "ABD/Hawaii" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/indiana-starke msgid "US/Indiana-Starke" -msgstr "" +msgstr "ABD/Indiana-Starke" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/michigan msgid "US/Michigan" -msgstr "" +msgstr "ABD/Michigan" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/mountain msgid "US/Mountain" -msgstr "" +msgstr "ABD/Dağ" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/pacific msgid "US/Pacific" -msgstr "" +msgstr "ABD/Pasifik" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__us/samoa msgid "US/Samoa" -msgstr "" +msgstr "ABD/Samoa" #. module: base #: model:res.country,name:base.um @@ -44554,7 +45032,7 @@ msgstr "Uganda" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ug msgid "Uganda - Accounting" -msgstr "" +msgstr "Uganda - Muhasebe" #. module: base #. odoo-python @@ -44585,6 +45063,8 @@ msgid "" "Unable to delete %(record)s because it is used as the default value of " "%(field)s" msgstr "" +"%(record)s silinemiyor çünkü %(field)s alanının varsayılan değeri olarak " +"kullanılıyor" #. module: base #. odoo-python @@ -44599,6 +45079,8 @@ msgid "" "Unable to import'%%(field)s' Properties field as a whole, target individual " "property instead." msgstr "" +"'%%(field)s' Özellikler alanı tümüyle içe aktarılamıyor, bunun yerine tek " +"tek özellik hedeflenmelidir." #. module: base #. odoo-python @@ -44670,7 +45152,7 @@ msgstr "Kaldırılamaz" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__uninstalled_l10n_module_ids msgid "Uninstalled L10N Module" -msgstr "" +msgstr "Kaldırılmış L10N Modülü" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_base_module_uninstall @@ -44780,7 +45262,7 @@ msgstr "Ölçü birimleri" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__universal msgid "Universal" -msgstr "" +msgstr "Evrensel" #. module: base #. odoo-python @@ -44855,7 +45337,7 @@ msgstr "İlgili Model’de '%s' bilinmeyen model adı" #. odoo-python #: code:addons/base/models/ir_fields.py:0 msgid "Unknown sub-field “%s”" -msgstr "" +msgstr "Bilinmeyen alt alan “%s”" #. module: base #. odoo-python @@ -44864,6 +45346,8 @@ msgid "" "Unknown value '%(value)s' for boolean '%(label_property)s' property " "(subfield of '%%(field)s' field)." msgstr "" +"Boolean '%(label_property)s' özelliği (%%(field)s alanının alt alanı) için " +"bilinmeyen değer '%(value)s'." #. module: base #. odoo-python @@ -44929,13 +45413,13 @@ msgstr "Güncelleme Modülü Listesi" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__state__object_write msgid "Update Record" -msgstr "" +msgstr "Kaydı Güncelle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__update_related_model_id #: model:ir.model.fields,field_description:base.field_ir_cron__update_related_model_id msgid "Update Related Model" -msgstr "" +msgstr "İlgili Modeli Güncelle" #. module: base #: model_terms:ir.ui.view,arch_db:base.module_form @@ -45048,7 +45532,7 @@ msgstr "" #. module: base #: model:ir.model.fields,field_description:base.field_report_paperformat__css_margins msgid "Use css margins" -msgstr "" +msgstr "CSS kenar boşluklarını kullan" #. module: base #: model:ir.module.module,summary:base.module_sale_loyalty @@ -45104,6 +45588,8 @@ msgstr "" msgid "" "Use the SMTP configuration set in the \"Command Line Interface\" arguments." msgstr "" +"\"Komut Satırı Arayüzü\" argümanlarında ayarlanan SMTP yapılandırmasını " +"kullan." #. module: base #. odoo-python @@ -45184,7 +45670,7 @@ msgstr "Kullanıcı" #: model:ir.actions.act_window,name:base.action_user_device #: model:ir.ui.menu,name:base.menu_action_user_device msgid "User Devices" -msgstr "" +msgstr "Kullanıcı Cihazları" #. module: base #: model:ir.model.fields,field_description:base.field_res_users__user_group_warning @@ -45229,7 +45715,7 @@ msgstr "WhatsApp modülü için kullanıcı erişim seviyeleri" #. module: base #: model:ir.model.fields,field_description:base.field_res_users__device_ids msgid "User devices" -msgstr "" +msgstr "Kullanıcı cihazları" #. module: base #: model:ir.model.fields,field_description:base.field_res_users__log_ids @@ -45336,7 +45822,7 @@ msgstr "" #. module: base #: model:ir.model.fields,field_description:base.field_res_company__uses_default_logo msgid "Uses Default Logo" -msgstr "" +msgstr "Varsayılan Logoyu Kullanır" #. module: base #. odoo-python @@ -45434,7 +45920,7 @@ msgstr "Vergi Etiketi" #. module: base #: model:res.currency,currency_unit_label:base.VUV msgid "Vatu" -msgstr "" +msgstr "Vatu" #. module: base #: model:res.partner.category,name:base.res_partner_category_0 @@ -45485,7 +45971,7 @@ msgstr "Vietnam - Muhasebe Raporları" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_vn_edi_viettel msgid "Vietnam - E-invoicing" -msgstr "" +msgstr "Vietnam - e-Fatura" #. module: base #: model:ir.model,name:base.model_ir_ui_view @@ -45531,7 +46017,7 @@ msgstr "Görünüm Adı" #. odoo-python #: code:addons/base/models/ir_actions_report.py:0 msgid "View Problematic Record(s)" -msgstr "" +msgstr "Sorunlu Kaydı Görüntüle" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_act_window__view_id @@ -45615,7 +46101,7 @@ msgstr "Görünür" #. module: base #: model:ir.module.module,summary:base.module_frontdesk msgid "Visitor management system" -msgstr "" +msgstr "Ziyaretçi yönetim sistemi" #. module: base #: model:ir.module.module,shortdesc:base.module_voip @@ -45625,7 +46111,7 @@ msgstr "VoIP" #. module: base #: model:ir.module.module,shortdesc:base.module_voip_onsip msgid "VoIP OnSIP" -msgstr "" +msgstr "VoIP OnSIP" #. module: base #: model:ir.module.module,shortdesc:base.module_voip_crm @@ -45640,12 +46126,12 @@ msgstr "CRM modülü ile VoIP entegrasyonu" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__w-su msgid "W-SU" -msgstr "" +msgstr "W-SU" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__wet msgid "WET" -msgstr "" +msgstr "WET" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_account @@ -45655,7 +46141,7 @@ msgstr "Stok Muhasebesi" #. module: base #: model:ir.module.module,shortdesc:base.module_data_merge_stock_account msgid "WMS Accounting Merge" -msgstr "" +msgstr "WMS Muhasebe Birleştirme" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_landed_costs @@ -45696,7 +46182,7 @@ msgstr "%s için uyarı" #. module: base #: model:ir.model.fields,field_description:base.field_ir_ui_view__warning_info msgid "Warning information" -msgstr "" +msgstr "Uyarı bilgisi" #. module: base #. odoo-python @@ -45769,7 +46255,7 @@ msgstr "Web Gantt Testleri: Gantt görünümüne özgü testler" #. module: base #: model:ir.module.module,shortdesc:base.module_web_hierarchy msgid "Web Hierarchy" -msgstr "" +msgstr "Web Hiyerarşisi" #. module: base #: model:ir.model.fields,field_description:base.field_ir_ui_menu__web_icon @@ -45790,7 +46276,7 @@ msgstr "Web Rotası" #. module: base #: model:ir.module.module,shortdesc:base.module_test_web_studio msgid "Web Studio Tests" -msgstr "" +msgstr "Web Stüdyo Testleri" #. module: base #: model:ir.module.module,summary:base.module_test_web_cohort @@ -45800,19 +46286,19 @@ msgstr "Web cohort Test" #. module: base #: model:ir.module.module,summary:base.module_test_web_studio msgid "Web studio Test" -msgstr "" +msgstr "Web Stüdyo Testi" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__webhook_field_ids #: model:ir.model.fields,field_description:base.field_ir_cron__webhook_field_ids msgid "Webhook Fields" -msgstr "" +msgstr "Webhook Alanları" #. module: base #: model:ir.model.fields,field_description:base.field_ir_actions_server__webhook_url #: model:ir.model.fields,field_description:base.field_ir_cron__webhook_url msgid "Webhook URL" -msgstr "" +msgstr "Webhook URL’si" #. module: base #: model:ir.model.fields,field_description:base.field_ir_module_module__website @@ -45872,7 +46358,7 @@ msgstr "Web Sitesi Oluşturucu" #. module: base #: model:ir.module.module,shortdesc:base.module_website_generator_sale msgid "Website Generator Sale" -msgstr "" +msgstr "Web Sitesi Oluşturucu Satış" #. module: base #: model:ir.module.module,shortdesc:base.module_website_helpdesk @@ -45979,7 +46465,7 @@ msgstr "Web sitesi profili" #. module: base #: model:ir.module.module,shortdesc:base.module_wedding_planner msgid "Wedding Planner" -msgstr "" +msgstr "Düğün Planlayıcısı" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_lang__week_start__3 @@ -45994,7 +46480,7 @@ msgstr "Hafta" #. module: base #: model:ir.module.module,shortdesc:base.module_wellness_practitioner msgid "Wellness Practitioner" -msgstr "" +msgstr "Sağlıklı Yaşam Merkezi" #. module: base #: model:res.country,name:base.eh @@ -46020,13 +46506,13 @@ msgstr "WhatsApp - Çalışan Yönlendirme" #. module: base #: model:ir.module.module,shortdesc:base.module_whatsapp msgid "WhatsApp Messaging" -msgstr "" +msgstr "WhatsApp Mesajlaşma" #. module: base #: model:ir.module.module,shortdesc:base.module_test_whatsapp #: model:ir.module.module,summary:base.module_test_whatsapp msgid "WhatsApp Tests" -msgstr "" +msgstr "WhatsApp Testleri" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_automation_whatsapp @@ -46061,7 +46547,7 @@ msgstr "WhatsApp-eTicaret" #. module: base #: model:ir.module.module,shortdesc:base.module_whatsapp_account msgid "Whatsapp Accounting" -msgstr "" +msgstr "WhatsApp Muhasebesi" #. module: base #: model:ir.module.module,shortdesc:base.module_whatsapp_payment @@ -46282,7 +46768,7 @@ msgstr "Çalışma Sayfası" #. module: base #: model:ir.module.module,shortdesc:base.module_maintenance_worksheet msgid "Worksheet for Maintenance" -msgstr "" +msgstr "Bakım için İş Programı" #. module: base #: model:ir.module.module,shortdesc:base.module_quality_control_worksheet @@ -46299,6 +46785,7 @@ msgstr "Bir müdahale planlarken çalışma sayfası şablonu" #: code:addons/base/models/ir_actions.py:0 msgid "Wow, your webhook call failed with a really unusual error: %s" msgstr "" +"Vay canına, webhook çağrınız çok sıra dışı bir hatayla başarısız oldu: %s" #. module: base #: model:ir.model.fields,field_description:base.field_ir_rule__perm_write @@ -46345,7 +46832,7 @@ msgstr "" #. module: base #: model:res.currency,currency_subunit_label:base.VND msgid "Xu" -msgstr "" +msgstr "Xu" #. module: base #: model:res.country,name:base.ye @@ -46355,12 +46842,12 @@ msgstr "Yemen" #. module: base #: model:res.currency,currency_unit_label:base.JPY msgid "Yen" -msgstr "" +msgstr "Yen" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__update_boolean_value__true msgid "Yes (True)" -msgstr "" +msgstr "Evet (Doğru)" #. module: base #: model_terms:ir.ui.view,arch_db:base.demo_force_install_form @@ -46417,6 +46904,8 @@ msgid "" "You are trying to install incompatible modules in category " "\"%(category)s\":%(module_list)s" msgstr "" +"\"%(category)s\" kategorisinde uyumsuz modüller yüklemeye çalışıyorsunuz: " +"%(module_list)s" #. module: base #. odoo-python @@ -46576,6 +47065,8 @@ msgid "" "You cannot delete %(to_delete_record)s, as it is used by " "%(on_restrict_record)s" msgstr "" +"%(to_delete_record)s silinemez çünkü %(on_restrict_record)s tarafından " +"kullanılıyor" #. module: base #. odoo-python @@ -46696,6 +47187,8 @@ msgid "" "You cannot use “%(property_name)s” because the linked “%(model_name)s” model" " doesn't exist or is invalid" msgstr "" +"\"%(property_name)s\" kullanılamaz çünkü bağlantılı “%(model_name)s” modeli " +"mevcut değil veya geçersiz" #. module: base #. odoo-python @@ -46807,7 +47300,7 @@ msgstr "Sunucunuz SSL desteklemiyor, STARTTLS kullanmayı deneyebilirsiniz" #: model:res.currency,currency_unit_label:base.CNH #: model:res.currency,currency_unit_label:base.CNY msgid "Yuan" -msgstr "" +msgstr "Yuan" #. module: base #: model_terms:ir.ui.view,arch_db:base.res_partner_view_form_private @@ -46826,7 +47319,7 @@ msgstr "Zambia" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_zm_account msgid "Zambia - Accounting" -msgstr "" +msgstr "Zambiya - Muhasebe" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_zm_reports @@ -46836,7 +47329,7 @@ msgstr "Zambiya - Muhasebe Raporları" #. module: base #: model:res.currency,currency_unit_label:base.ZIG msgid "ZiGs" -msgstr "" +msgstr "ZiGs" #. module: base #: model:res.country,name:base.zw @@ -46859,12 +47352,12 @@ msgstr "Zip Gerekli" #. module: base #: model:res.currency,currency_unit_label:base.PLN msgid "Zloty" -msgstr "" +msgstr "Zloty" #. module: base #: model:ir.model.fields.selection,name:base.selection__res_partner__tz__zulu msgid "Zulu" -msgstr "" +msgstr "Zulu" #. module: base #: model:ir.module.category,name:base.module_category_account @@ -46891,7 +47384,7 @@ msgstr "%sgrupları için izin verildi" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_form msgid "already exists (" -msgstr "" +msgstr "zaten mevcut (" #. module: base #. odoo-python @@ -46927,13 +47420,13 @@ msgstr "bpost Sevkıyat" #. module: base #: model:res.currency,currency_subunit_label:base.COU msgid "centavo" -msgstr "" +msgstr "sentavo" #. module: base #: model:res.currency,currency_subunit_label:base.UYI #: model:res.currency,currency_subunit_label:base.UYW msgid "centésimo" -msgstr "" +msgstr "sentésimo" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_model_fields__ttype__char @@ -46954,7 +47447,7 @@ msgstr "oluşturun" #. module: base #: model:res.currency,currency_subunit_label:base.STN msgid "cêntimo" -msgstr "" +msgstr "cêntimo" #. module: base #. odoo-python @@ -47011,7 +47504,7 @@ msgstr "örneğin \"Danışmanlık Hizmetleri\"" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_category_list msgid "e.g. \"Roadshow\"" -msgstr "" +msgstr "örn. \"Roadshow\"" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_form @@ -47022,7 +47515,7 @@ msgstr "örn. TR1234567890" #: model_terms:ir.ui.view,arch_db:base.view_partner_form #: model_terms:ir.ui.view,arch_db:base.view_partner_simple_form msgid "e.g. Brandon Freeman" -msgstr "" +msgstr "örn. Brandon Freeman" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_base_import_language @@ -47037,7 +47530,7 @@ msgstr "örn. Avrupa" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "e.g. Follow-up" -msgstr "" +msgstr "örn. Takip" #. module: base #: model_terms:ir.ui.view,arch_db:base.res_lang_form @@ -47084,7 +47577,7 @@ msgstr "örn. Giden Sunucum" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_form msgid "e.g. New Address" -msgstr "" +msgstr "örn. Yeni Adres" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_partner_form @@ -47095,7 +47588,7 @@ msgstr "örn. Satış Yöneticisi" #. module: base #: model_terms:ir.ui.view,arch_db:base.ir_mail_server_form msgid "e.g. email@domain.com, domain.com" -msgstr "" +msgstr "örn. email@domain.com, domain.com" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_users_form @@ -47111,7 +47604,7 @@ msgstr "örn. tr_TR" #. module: base #: model_terms:ir.ui.view,arch_db:base.view_server_action_form msgid "e.g. https://maker.ifttt.com/use/..." -msgstr "" +msgstr "örn. https://maker.ifttt.com/use/..." #. module: base #: model_terms:ir.ui.view,arch_db:base.view_company_form @@ -47128,7 +47621,7 @@ msgstr "e-Ticaret" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_mondialrelay msgid "eCommerce Mondialrelay Delivery" -msgstr "" +msgstr "eTicaret Mondialrelay Teslimat" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_renting @@ -47148,12 +47641,12 @@ msgstr "e-Ticaret Aboneliği" #. module: base #: model:ir.module.module,summary:base.module_website_appointment_sale msgid "eCommerce on appointments" -msgstr "" +msgstr "randevularda eTicaret" #. module: base #: model:ir.module.module,shortdesc:base.module_website_sale_gelato msgid "eCommerce/Gelato bridge" -msgstr "" +msgstr "eTicaret/Gelato köprüsü" #. module: base #: model:ir.module.category,name:base.module_category_website_elearning @@ -47354,7 +47847,7 @@ msgstr "maaş bordrosu" #. module: base #: model:res.currency,currency_unit_label:base.UYW msgid "peso" -msgstr "" +msgstr "peso" #. module: base #: model:ir.module.module,shortdesc:base.module_pos_self_order_preparation_display @@ -47395,7 +47888,7 @@ msgstr "properties_definition" #. odoo-python #: code:addons/base/models/ir_rule.py:0 msgid "read" -msgstr "" +msgstr "oku" #. module: base #: model:ir.model.fields.selection,name:base.selection__ir_actions_server__value_field_to_show__resource_ref @@ -47432,7 +47925,7 @@ msgstr "abonelikler" #. module: base #: model:ir.module.module,shortdesc:base.module_tests msgid "test" -msgstr "" +msgstr "test" #. module: base #: model:ir.module.module,shortdesc:base.module_test_data_module_install @@ -47554,7 +48047,7 @@ msgstr "değer" #. module: base #: model:ir.module.module,shortdesc:base.module_website_helpdesk_sale_loyalty msgid "website helpdesk sale" -msgstr "" +msgstr "web sitesi yardım masası satış" #. module: base #: model:ir.module.module,summary:base.module_website_helpdesk_sale_loyalty @@ -47571,7 +48064,7 @@ msgstr "hafta" #. odoo-python #: code:addons/base/models/ir_actions_report.py:0 msgid "wkhtmltoimage 0.12.0^ is required in order to render images from html" -msgstr "" +msgstr "görselleri html’den oluşturmak için wkhtmltoimage 0.12.0^ gerekli" #. module: base #. odoo-python From ce2d134d3e8e5c0d96529c1d0490f1e0c5e28294 Mon Sep 17 00:00:00 2001 From: fvz-odoo Date: Wed, 3 Sep 2025 20:52:58 +0000 Subject: [PATCH 011/320] [FIX] l10n_uy: correct website link in manifest task-5064435 closes odoo/odoo#226169 X-original-commit: 8bc77223b28c229e783a04a689775021f70a0912 Signed-off-by: Joren Van Onder (jov) --- addons/l10n_uy/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/l10n_uy/__manifest__.py b/addons/l10n_uy/__manifest__.py index b24ef49bef68a1..15de8b93063236 100644 --- a/addons/l10n_uy/__manifest__.py +++ b/addons/l10n_uy/__manifest__.py @@ -1,7 +1,7 @@ # Part of Odoo. See LICENSE file for full copyright and licensing details. { 'name': 'Uruguay - Accounting', - 'website': 'https://www.odoo.com/documentation/master/applications/finance/fiscal_localizations.html', + 'website': 'https://www.odoo.com/documentation/master/applications/finance/fiscal_localizations/uruguay.html', 'icon': '/account/static/description/l10n.png', 'countries': ['uy'], 'version': '0.1', From 9dd369bb3cf5af0794e2e4efbe12d12209d9fddf Mon Sep 17 00:00:00 2001 From: "Adrien Widart (awt)" Date: Fri, 5 Sep 2025 12:48:59 +0000 Subject: [PATCH 012/320] [REV] {mrp,stock}_account, purchase_mrp: unbuild with basic valo This commit reverts [1], [2], [3], and [4]. (It actually results in minimal changes since those commits were already removing parts of each other.) Issue before those commits: 1. Setup a auto-fifo category and two storable products (a component and a finished product) 2. Receive one compo at 10, then one at 25 3. Produce two MO with one finished product 4. Unbuild the second one Error: - For the component, we just use the value of the consumed components: IN 1 @ 25 - For the finished product, we process it as a classic out. Reminder, we are in FIFO: OUT 1 @ 10 As a result, thanks to the unbuild, we have created - A over-valuation of the stock (+15) - An outstanding balance of the "Cost of Production" This is why [1] has been merged. However, it brought some other issues, cf [2], [3] and [4]. Unfortunately, it still has some issues - After the above use case, the difference between the debit and the credit of the stock valuation account is no longer the sum of the remaining values of the layers - Adding some landed costs on MOs will lead to a traceback when undbuilding - The over-valuation of the stock (that was already present before [1], cf above) is still present Following some discussions with R&D and the product owners, we have decided to start over from scratch, which means: - Revert all commits - Try another approach (if so, the new PR will be linked to the PR related with this commit) [2], [3], and [4] are partially reverted: the tests can remain, as they were only failing due to a sequence of changes. [1] b49c449233f340704bcd8e876dbe06b21a82fd76 [2] 46c1a1b3cd4adb4b1427e95cdaa2df4b572532cb [3] fa4f071b1fcf0c8273c1453f6940dd0266ea14b9 [4] f95c3fdf68ce106ad98aacf84f1db00d9d1e9de7 OPW-5036574 closes odoo/odoo#225775 X-original-commit: eeccc6df9f90d83d09c4ff8bd140a6d8f8138e06 Signed-off-by: Arnold Moyaux (arm) Signed-off-by: Adrien Widart (awt) --- addons/mrp_account/models/stock_move.py | 37 --------- .../tests/test_anglo_saxon_valuation.py | 81 ------------------- 2 files changed, 118 deletions(-) diff --git a/addons/mrp_account/models/stock_move.py b/addons/mrp_account/models/stock_move.py index 79f40809caa5f6..f7e7a047287c18 100644 --- a/addons/mrp_account/models/stock_move.py +++ b/addons/mrp_account/models/stock_move.py @@ -41,43 +41,6 @@ def _is_production_consumed(self): self.ensure_one() return self.location_dest_id.usage == 'production' and self.location_id._should_be_valued() - def _create_out_svl(self, forced_quantity=None): - svls = super()._create_out_svl(forced_quantity) - unbuild_svls = svls.filtered('stock_move_id.unbuild_id') - unbuild_cost_correction_move_list = list() - for svl in unbuild_svls: - build_time_unit_cost = svl.stock_move_id.unbuild_id.mo_id.move_finished_ids.filtered( - lambda m: m.product_id == svl.product_id - ).stock_valuation_layer_ids.unit_cost - unbuild_difference = svl.unit_cost - build_time_unit_cost - if svl.product_id.valuation == 'real_time' and not svl.currency_id.is_zero(unbuild_difference): - product_accounts = svl.product_id.product_tmpl_id.get_product_accounts() - valuation_account, production_account = ( - product_accounts['stock_valuation'], - product_accounts['production'], - ) - desc = _('%s - Unbuild Cost Difference', svl.stock_move_id.unbuild_id.name) - unbuild_cost_correction_move_list.append({ - 'journal_id': product_accounts['stock_journal'].id, - 'date': fields.Date.context_today(self), - 'ref': desc, - 'move_type': 'entry', - 'line_ids': [Command.create({ - 'name': desc, - 'ref': desc, - 'account_id': account.id, - 'balance': balance, - 'product_id': svl.product_id.id, - }) for account, balance in ( - (valuation_account, unbuild_difference), - (production_account, -unbuild_difference), - )], - }) - if unbuild_cost_correction_move_list: - unbuild_cost_correction_moves = self.env['account.move'].sudo().create(unbuild_cost_correction_move_list) - unbuild_cost_correction_moves._post() - return svls - def _get_all_related_sm(self, product): moves = super()._get_all_related_sm(product) return moves | self.filtered( diff --git a/addons/purchase_mrp/tests/test_anglo_saxon_valuation.py b/addons/purchase_mrp/tests/test_anglo_saxon_valuation.py index 75c3b5034635af..7ea032c720d8ca 100644 --- a/addons/purchase_mrp/tests/test_anglo_saxon_valuation.py +++ b/addons/purchase_mrp/tests/test_anglo_saxon_valuation.py @@ -275,84 +275,3 @@ def test_fifo_cost_adjust_mo_quantity(self): manufacturing_order.move_raw_ids.quantity = 1 self.assertEqual(self.product_a.standard_price, 100) - - def test_average_cost_unbuild_valuation(self): - """ Ensure that an unbuild for some avg cost product won't leave the `Cost of Production` - journal in an imbalanced state if the std price of that product has changed since the MO - was completed (i.e., since build time). Also make sure the manufactured product's - `standard_price` is correct after the unbuild. - """ - def make_purchase_and_production(product_ids, price_units): - purchase_orders = self.env['purchase.order'].create([{ - 'partner_id': self.partner_a.id, - 'order_line': [(0, 0, { - 'product_id': prod_id, - 'product_qty': 2, - 'price_unit': price_unit - })], - } for prod_id, price_unit in zip(product_ids, price_units)]) - purchase_orders.button_confirm() - purchase_orders.picking_ids.move_ids.quantity = 2 - purchase_orders.picking_ids.button_validate() - production_form = Form(self.env['mrp.production']) - production_form.product_id = final_product - production_form.bom_id = final_product_bom - production_form.product_qty = 1 - production = production_form.save() - production.action_confirm() - mo_form = Form(production) - mo_form.qty_producing = 1 - production = mo_form.save() - production._post_inventory() - production.button_mark_done() - return production - - cost_of_production_account = self.env['account.account'].search([ - ('name', '=', 'Cost of Production'), - ('company_ids', 'in', self.env.company.id), - ], limit=1) - self.avco_category.property_stock_account_production_cost_id = cost_of_production_account.id - final_product = self.env['product.product'].create({ - 'name': 'final product', - 'is_storable': True, - 'standard_price': 0, - 'categ_id': self.avco_category.id, - 'route_ids': [(6, 0, self.env['stock.route'].search([('name', '=', 'Manufacture')], limit=1).ids)], - }) - comp_1, comp_2 = self.env['product.product'].create([{ - 'name': name, - 'is_storable': True, - 'standard_price': 0, - 'categ_id': self.avco_category.id, - 'route_ids': [(4, self.env['stock.route'].search([('name', '=', 'Buy')], limit=1).id)], - } for name in ('comp_1', 'comp_2')]) - final_product_bom = self.env['mrp.bom'].create({ - 'product_tmpl_id': final_product.product_tmpl_id.id, - 'type': 'normal', - 'bom_line_ids': [(0, 0, { - 'product_id': comp_prod_id, - 'product_qty': 2, - }) for comp_prod_id in (comp_1.id, comp_2.id)], - }) - production_1 = make_purchase_and_production([comp_1.id, comp_2.id], [50, 40]) - make_purchase_and_production([comp_1.id, comp_2.id], [55, 45]) - make_purchase_and_production([comp_1.id, comp_2.id], [71, 32]) - make_purchase_and_production([comp_1.id, comp_2.id], [71, 32]) - action = production_1.button_unbuild() - wizard = Form(self.env[action['res_model']].with_context(action['context'])) - wizard.product_qty = 1 - wizard = wizard.save() - wizard.action_validate() - svls = self.env['stock.valuation.layer'].search([('product_id', '=', final_product.id)]) - expected_std_price = sum(svls.mapped('value')) / sum(svls.mapped('remaining_qty')) - cost_of_production_balance = sum(self.env['account.move.line'].search([ - ('account_id', '=', cost_of_production_account.id), - ('product_id', 'in', (final_product.id, comp_1.id, comp_2.id)), - ]).mapped('balance')) - - self.assertAlmostEqual( - final_product.standard_price, - expected_std_price, - delta=svls.currency_id.rounding, - ) - self.assertTrue(self.env.company.currency_id.is_zero(cost_of_production_balance)) From 7ed5148f9bbd58808bff85202561c5405cac9974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20=C4=90=E1=BA=A1i=20D=C6=B0=C6=A1ng?= Date: Tue, 9 Sep 2025 09:29:23 +0700 Subject: [PATCH 013/320] [FIX] web: reloading display wrong menu navbar * STEP TO REPRODUCE: install sale management module, go to sale app -> customer menu -> Then reloading the page using F5 -> the menu is change to invoice which is not correct * Also Multiple modules (Sale, Account, Purchase) share same actions (e.g. partner action) * SOLUTION: - Modified webclient.js action-to-menu mapping to handle multiple menus sharing same action closes odoo/odoo#225984 Signed-off-by: Jorge Pinna Puissant (jpp) --- addons/web/static/src/webclient/webclient.js | 18 +++++- .../webclient/actions/load_state.test.js | 62 +++++++++++++++++++ 2 files changed, 77 insertions(+), 3 deletions(-) diff --git a/addons/web/static/src/webclient/webclient.js b/addons/web/static/src/webclient/webclient.js index 1f2259b1e48fdc..c0ed9f00c25633 100644 --- a/addons/web/static/src/webclient/webclient.js +++ b/addons/web/static/src/webclient/webclient.js @@ -66,11 +66,23 @@ export class WebClient extends Component { // ** url-retrocompatibility ** // the menu_id in the url is only possible if we came from an old url let menuId = Number(router.current.menu_id || 0); + const storedMenuId = Number(browser.sessionStorage.getItem("menu_id")); const firstAction = router.current.actionStack?.[0]?.action; if (!menuId && firstAction) { - menuId = this.menuService + // Find all menus that match this action + const matchingMenus = this.menuService .getAll() - .find((m) => m.actionID === firstAction || m.actionPath === firstAction)?.appID; + .filter((m) => m.actionID === firstAction || m.actionPath === firstAction); + + if (matchingMenus.length > 0) { + // Use sessionStorage context to determine the correct menu + menuId = matchingMenus.find(m => + m.appID === storedMenuId + )?.appID; + if (!menuId) { + menuId = matchingMenus[0]?.appID; + } + } } if (menuId) { this.menuService.setCurrentMenu(menuId); @@ -97,7 +109,7 @@ export class WebClient extends Component { menuId = this.menuService.getAll().find((m) => m.actionID === actionId)?.appID; if (!menuId) { // Setting the menu based on the session storage if no other menu was found - menuId = Number(browser.sessionStorage.getItem("menu_id")); + menuId = storedMenuId; } if (menuId) { // Sets the menu according to the current action diff --git a/addons/web/static/tests/webclient/actions/load_state.test.js b/addons/web/static/tests/webclient/actions/load_state.test.js index 4110e6db9b5aa9..b83b7f6b051892 100644 --- a/addons/web/static/tests/webclient/actions/load_state.test.js +++ b/addons/web/static/tests/webclient/actions/load_state.test.js @@ -1391,6 +1391,7 @@ describe(`new urls`, () => { expect(`.o_kanban_view`).toHaveCount(1); expect.verifySteps([ + "get menu_id-null", 'set current_action-{"type":"ir.actions.act_window","res_model":"partner","res_id":1,"views":[[false,"form"]]}', 'set current_action-{"type":"ir.actions.act_window","res_model":"partner","views":[[1,"kanban"]],"context":{"lang":"en","tz":"taht","uid":7,"allowed_company_ids":[1],"active_model":"partner","active_id":1,"active_ids":[1]}}', ]); @@ -1403,11 +1404,72 @@ describe(`new urls`, () => { await animationFrame(); expect(`.o_kanban_view`).toHaveCount(1); expect.verifySteps([ + "get menu_id-null", 'get current_action-{"type":"ir.actions.act_window","res_model":"partner","views":[[1,"kanban"]],"context":{"lang":"en","tz":"taht","uid":7,"allowed_company_ids":[1],"active_model":"partner","active_id":1,"active_ids":[1]}}', 'set current_action-{"type":"ir.actions.act_window","res_model":"partner","views":[[1,"kanban"]],"context":{"lang":"en","tz":"taht","uid":7,"active_model":"partner","active_id":1,"active_ids":[1]}}', + ]); + }); + + test("menu jumping fix: multiple menus sharing same action", async () => { + // Test case for menu jumping issue when multiple menus share the same action + // Scenario: User navigates to Sale->Customers, then F5 reload should stay in Sale, not jump to Account + defineActions([ + { + id: 9001, + name: "Partners", + res_model: "partner", + type: "ir.actions.act_window", + views: [[false, "list"], [false, "form"]], + }, + ]); + + defineMenus([ + { id: 0 }, // prevents auto-loading + // Sale App + { id: 100, name: "Sale", appID: 100, children: [101] }, + { id: 101, name: "Customers", appID: 100, actionID: 9001, parent_id: 100 }, + // Account App + { id: 200, name: "Accounting", appID: 200, children: [201] }, + { id: 201, name: "Customers", appID: 200, actionID: 9001, parent_id: 200 }, // Same action! + ]); + + patchWithCleanup(browser.sessionStorage, { + setItem(key, value) { + expect.step(`set ${key}-${value}`); + super.setItem(key, value); + }, + getItem(key) { + const res = super.getItem(key); + expect.step(`get ${key}-${res}`); + return res; + }, + }); + + // Step 1: Navigate to Sale->Customers with explicit menu_id + redirect("/odoo/action-9001?menu_id=100"); + logHistoryInteractions(); + + await mountWebClient(); + expect(`.o_list_view`).toHaveCount(1); + + // Step 2: Emulate F5 reload + routerBus.trigger("ROUTE_CHANGE"); + await animationFrame(); + await animationFrame(); + + expect(`.o_list_view`).toHaveCount(1); + + expect.verifySteps([ "get menu_id-null", + "set menu_id-100", + 'set current_action-{"binding_type":"action","binding_view_types":"list,form","id":9001,"type":"ir.actions.act_window","xml_id":9001,"name":"Partners","res_model":"partner","views":[[false,"list"],[false,"form"]],"context":{},"embedded_action_ids":[],"group_ids":[],"limit":80,"mobile_view_mode":"kanban","target":"current","view_ids":[],"view_mode":"list,form"}', + "pushState http://example.com/odoo/action-9001", + "get menu_id-100", // F5 reload checks stored menu + 'set current_action-{"binding_type":"action","binding_view_types":"list,form","id":9001,"type":"ir.actions.act_window","xml_id":9001,"name":"Partners","res_model":"partner","views":[[false,"list"],[false,"form"]],"context":{},"embedded_action_ids":[],"group_ids":[],"limit":80,"mobile_view_mode":"kanban","target":"current","view_ids":[],"view_mode":"list,form"}', + "Update the state without updating URL, nextState: actionStack,action", ]); }); + }); describe(`legacy urls`, () => { From d86b55803c07e25c24bd1defd147188867333056 Mon Sep 17 00:00:00 2001 From: josv-odoo Date: Fri, 6 Jun 2025 08:24:19 +0000 Subject: [PATCH 014/320] [FIX] mrp: avoid duplicate move_line during unbuilds for finished products When creating a unbuild order for non storable product, it will generate two stock.move.line going form Stock>Production. ** Steps to reproduce ** - Create an untracked product (is_storable = False). - Create a BOM (the components don't matter). - Create a manufacturing order & produce it for the untracked product. - Unbuild the manufacturing order. - Manufacturing Order> Unbuilds>(Select the Unbuild (UB/...))>Product Moves - Two move lines are created from stock to production for the untracked product when only one should have been created. ** Cause of the issue ** Clicking on unbuild, will launch a call of the action_unbuild method. During this call, the moves of the unbuild for the final product of the MO are created and confirmed here: https://github.com/odoo/odoo/blob/7dd7351d492babdfb7c671960c5e90755fbc2233/addons/mrp/models/mrp_unbuild.py#L181-L182 https://github.com/odoo/odoo/blob/7dd7351d492babdfb7c671960c5e90755fbc2233/addons/mrp/models/mrp_unbuild.py#L187-L188 During this confirmation process and since the product is not storable, (hence move should by pass reservation) therse moves will be assigned and the related move line created: https://github.com/odoo/odoo/blob/e4d9ef3f39bd62a8db6854270b4cf6a35936b8d4/addons/stock/models/stock_move.py#L1759-L1762 https://github.com/odoo/odoo/blob/7dd7351d492babdfb7c671960c5e90755fbc2233/addons/stock/models/stock_move.py#L1581-L1583 However, in the rest of the action_unbuild call, since we don't expect the move to be assigned by the action_confirm we create and associate manually a second move line to our unbuild move: https://github.com/odoo/odoo/blob/de2216ae52cee40d0851b4b8c0b71cb7e1d5ec89/addons/mrp/models/mrp_unbuild.py#L196-L198 ** Observation ** During this commit https://github.com/odoo/odoo/commit/7dda6bb92715ea25b2818a62fec5e646f3678b81#diff-31912cb536cbf184f8f475ccdfb5e42c30796a3f0430eea35751519434a67ba8L156 An "if condition" was removed that allowed untracked product to skip the manual assignation, since they already been assigned during consume_move._action_confirm(). This fix reintroduce the condition, for all move with their quantity updated. Which resolve the issue for non stored product since their quantity is updated during _action_confirmation>_action_assign Additional issue: The same happen with by-products if they are non storable, the first move line is also created during the first confirmation, but the manual creation of the second move line and the commit that erased the "if condition" are different since by-product are not in finished_moves: https://github.com/odoo/odoo/commit/79d9dd7f15371aa7293a4af0b0ebd193aa80e2be#diff-31912cb536cbf184f8f475ccdfb5e42c30796a3f0430eea35751519434a67ba8L202 opw-4830965 closes odoo/odoo#223458 X-original-commit: b2cadeaa52a6209d2f95e6b9c0043a36477bf31e Signed-off-by: Tiffany Chang (tic) --- addons/mrp/models/mrp_unbuild.py | 9 ++++--- addons/mrp/tests/test_unbuild.py | 41 ++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 3 deletions(-) diff --git a/addons/mrp/models/mrp_unbuild.py b/addons/mrp/models/mrp_unbuild.py index 8c8e64f919c8cd..8d8770847881f3 100644 --- a/addons/mrp/models/mrp_unbuild.py +++ b/addons/mrp/models/mrp_unbuild.py @@ -149,7 +149,7 @@ def _prepare_finished_move_line_vals(self, finished_move): return { 'move_id': finished_move.id, 'lot_id': self.lot_id.id, - 'quantity': finished_move.product_uom_qty, + 'quantity': finished_move.product_uom_qty - finished_move.quantity, 'product_id': finished_move.product_id.id, 'product_uom_id': finished_move.product_uom.id, 'location_id': finished_move.location_id.id, @@ -194,12 +194,15 @@ def action_unbuild(self): raise UserError(_('Some of your byproducts are tracked, you have to specify a manufacturing order in order to retrieve the correct byproducts.')) for finished_move in finished_moves: - finished_move_line_vals = self._prepare_finished_move_line_vals(finished_move) - self.env['stock.move.line'].create(finished_move_line_vals) + if float_compare(finished_move.product_uom_qty, finished_move.quantity, precision_rounding=finished_move.product_uom.rounding) > 0: + finished_move_line_vals = self._prepare_finished_move_line_vals(finished_move) + self.env['stock.move.line'].create(finished_move_line_vals) # TODO: Will fail if user do more than one unbuild with lot on the same MO. Need to check what other unbuild has aready took qty_already_used = defaultdict(float) for move in produce_moves | consume_moves: + if float_compare(move.product_uom_qty, move.quantity, precision_rounding=move.product_uom.rounding) < 1: + continue original_move = move in produce_moves and self.mo_id.move_raw_ids or self.mo_id.move_finished_ids original_move = original_move.filtered(lambda m: m.product_id == move.product_id) if not original_move: diff --git a/addons/mrp/tests/test_unbuild.py b/addons/mrp/tests/test_unbuild.py index edf2a5d317e604..eae276b704fd36 100644 --- a/addons/mrp/tests/test_unbuild.py +++ b/addons/mrp/tests/test_unbuild.py @@ -1081,3 +1081,44 @@ def test_unbuild_consigned_comp(self): self.assertEqual(self.env['stock.quant']._get_available_quantity(p1, self.stock_location), 7) self.assertEqual(self.env['stock.quant']._get_available_quantity(p1, self.stock_location, owner_id=consigned_partner), 4) + + def test_unbuild_non_storable_product(self): + """Check that the move values of an unbuild of a non-storable product are correct. + """ + self.product_4.is_storable = False + self.product_3.is_storable = False + + self.env['mrp.bom.byproduct'].create({ + 'bom_id': self.bom_1.id, + 'product_id': self.product_3.id, + 'product_qty': 1, + 'product_uom_id': self.product_3.uom_id.id + }) + + # Create mo + mo_form = Form(self.env['mrp.production']) + mo_form.product_id = self.product_4 + mo_form.bom_id = self.bom_1 + mo_form.product_uom_id = self.product_4.uom_id + mo_form.product_qty = 4.0 + mo = mo_form.save() + mo.action_confirm() + + # Produce the final product + mo_form = Form(mo) + mo_form.qty_producing = 4.0 + mo_form.save() + + mo.button_mark_done() + + unbuild_wizard = Form(self.env['mrp.unbuild']) + unbuild_wizard.mo_id = mo + unbuild = unbuild_wizard.save() + unbuild.action_unbuild() + + self.assertRecordValues(unbuild.produce_line_ids, [ + {'product_id': self.product_4.id, 'quantity': 4, 'state': 'done'}, # Stick + {'product_id': self.product_3.id, 'quantity': 12, 'state': 'done'}, # Stone + {'product_id': self.product_2.id, 'quantity': 24, 'state': 'done'}, # Wood + {'product_id': self.product_1.id, 'quantity': 48, 'state': 'done'}, # Courage + ]) From 6ae0c2790fbb32af3afc9c519960af2fbcdfc87b Mon Sep 17 00:00:00 2001 From: khfa Date: Tue, 2 Sep 2025 10:16:38 +0000 Subject: [PATCH 015/320] [FIX] l10n_sa_edi: prevent logging a message when raising internal errors In a previous commit e90c35cde2a1f5de5d7bc4db7a525638ca3fab6e, we modified the logic of posting a log note when receiving a response from ZATCA to always log a note of the response. An issue occured because sometimes, Odoo raises user errors before sending a request to ZATCA, In which case, we do not need to log a note. closes odoo/odoo#226155 Task-id: 5056724 X-original-commit: 611eba59d920d86985fb83b9a64bfd7020c68105 Signed-off-by: Maximilien La Barre (malb) Signed-off-by: Khaled Fahmy (khfa) --- addons/l10n_sa_edi/models/account_move.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/addons/l10n_sa_edi/models/account_move.py b/addons/l10n_sa_edi/models/account_move.py index 7334c541cbda28..3043c468d43895 100644 --- a/addons/l10n_sa_edi/models/account_move.py +++ b/addons/l10n_sa_edi/models/account_move.py @@ -172,8 +172,6 @@ def _l10n_sa_log_results(self, xml_content, response_data=None, error=False): Save submitted invoice XML hash in case of either Rejection or Acceptance. """ self.ensure_one() - if not response_data.get("excepted"): - self.journal_id.l10n_sa_latest_submission_hash = self.env['account.edi.xml.ubl_21.zatca']._l10n_sa_generate_invoice_xml_hash(xml_content) bootstrap_cls, title, subtitle, content = ("success", _("Invoice Successfully Submitted to ZATCA"), "", "" if (not error or not response_data) else response_data) status_code = response_data.get('status_code') attachment = False @@ -220,6 +218,14 @@ def _l10n_sa_log_results(self, xml_content, response_data=None, error=False): } for m in response_data['validationResults']['errorMessages'] ]) } + if response_data.get("error") and not content: + # if there is an error, but no exception or rejection in the response + # then it is due to an internal error raised. No need to log a note + return + + if not response_data.get("excepted"): + self.journal_id.l10n_sa_latest_submission_hash = self.env['account.edi.xml.ubl_21.zatca']._l10n_sa_generate_invoice_xml_hash(xml_content) + self.with_context(no_new_invoice=True).message_post(body=Markup("""