diff --git a/pandoc-3.5-1-amd64.deb b/pandoc-3.5-1-amd64.deb new file mode 100644 index 00000000000..8e708ce7590 Binary files /dev/null and b/pandoc-3.5-1-amd64.deb differ diff --git a/sale_rental/README.rst b/sale_rental/README.rst new file mode 100644 index 00000000000..682d7e0eae9 --- /dev/null +++ b/sale_rental/README.rst @@ -0,0 +1,136 @@ +=========== +Sale Rental +=========== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:c754755bc48b0a4404d8f61101edd6ebbaf57c8df20780e4f58aed7d1a2a875c + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/sale-workflow/tree/17.0/sale_rental + :alt: OCA/sale-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/sale-workflow-17-0/sale-workflow-17-0-sale_rental + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +With this module, you can rent products with Odoo. This module supports: + +- regular rentals. +- rental extensions. +- sale of rented products. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +In the *Products* menu, on the form view of a stockable product or +consumable, in the *Sales* tab, there is a button *Create Rental +Service* which starts a wizard to generate the corresponding rental +service. + +In the menu *Inventory > Configuration > Warehouse Management > +Warehouses*, on the form view of the warehouse, in the *Technical +Information* tab, you will see two additional stock locations: *Rental +In* (stock of products to rent) and *Rental Out* (products currently +rented). In the *Warehouse Configuration* tab, make sure that the option +*Rental Allowed* is checked. + +Usage +===== + +In a sale order line (form view, not tree view), if you select a rental +service, you can: + +- create a new rental with a start date and an end date: when the sale + order is confirmed, it will generate a delivery order and an incoming + shipment. +- extend an existing rental: the incoming shipment will be postponed to + the end date of the extension. + +In a sale order line, if you select a product that has a corresponding +rental service, you can decide to sell the rented product that the +customer already has. If the sale order is confirmed, the incoming +shipment will be cancelled and a new delivery order will be created with +a stock move from *Rental Out* to *Customers*. + +Known issues / Roadmap +====================== + +This module has the following limitations: + +- No support for planning/agenda of the rented products (i.e. you can't + rely on this module to check your capacity to rent a product for the + selected dates when you create a quote) +- The unit of measure of the rental services must be *Day* (the rental + per hour / per week / per month is not supported for the moment) + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Akretion +* Sodexis + +Contributors +------------ + +- Alexis de Lattre +- Sodexis +- Danh Vo +- Kiril Vangelovski + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px + :target: https://github.com/alexis-via + :alt: alexis-via + +Current `maintainer `__: + +|maintainer-alexis-via| + +This module is part of the `OCA/sale-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sale_rental/__init__.py b/sale_rental/__init__.py new file mode 100644 index 00000000000..9b4296142f4 --- /dev/null +++ b/sale_rental/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import wizard diff --git a/sale_rental/__manifest__.py b/sale_rental/__manifest__.py new file mode 100644 index 00000000000..0d682c05f87 --- /dev/null +++ b/sale_rental/__manifest__.py @@ -0,0 +1,28 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Sale Rental", + "version": "17.0.1.0.0", + "category": "Sales", + "license": "AGPL-3", + "summary": "Manage Rental of Products", + "author": "Akretion, Sodexis, Odoo Community Association (OCA)", + "maintainers": ["alexis-via"], + "website": "https://github.com/OCA/sale-workflow", + "depends": ["sale_start_end_dates", "sale_stock", "sales_team"], + "data": [ + "security/ir.model.access.csv", + "security/sale_rental_security.xml", + "data/rental_data.xml", + "views/sale_order.xml", + "views/stock_warehouse.xml", + "views/sale_rental.xml", + "wizard/create_rental_product_view.xml", + "views/product.xml", + ], + "demo": ["demo/rental_demo.xml"], + "installable": True, +} diff --git a/sale_rental/data/rental_data.xml b/sale_rental/data/rental_data.xml new file mode 100644 index 00000000000..75b82929cc9 --- /dev/null +++ b/sale_rental/data/rental_data.xml @@ -0,0 +1,26 @@ + + + + + + Rent + 100 + + + + + + Sell Rented Product + 100 + + + + + + + diff --git a/sale_rental/demo/rental_demo.xml b/sale_rental/demo/rental_demo.xml new file mode 100644 index 00000000000..8567eea0be6 --- /dev/null +++ b/sale_rental/demo/rental_demo.xml @@ -0,0 +1,58 @@ + + + + + + Rental of one Three-Seat Sofa + RENT-FURN_8999 + + + + 5 + service + + + + + + + + + Rental of one Flipover + RENT-FURN_9001 + + + + 4 + service + + + + + + + + Rental of one Acoustic Bloc Screens + RENT-FURN_6666 + + + + 6 + service + + + + + + + + + + + diff --git a/sale_rental/i18n/am.po b/sale_rental/i18n/am.po new file mode 100644 index 00000000000..6b87e7fdaa8 --- /dev/null +++ b/sale_rental/i18n/am.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/ar.po b/sale_rental/i18n/ar.po new file mode 100644 index 00000000000..68862feee7f --- /dev/null +++ b/sale_rental/i18n/ar.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "الشركة" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "تجميع حسب" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "المعرف" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/bg.po b/sale_rental/i18n/bg.po new file mode 100644 index 00000000000..305275975d7 --- /dev/null +++ b/sale_rental/i18n/bg.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Фирма" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Групиране по" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/bs.po b/sale_rental/i18n/bs.po new file mode 100644 index 00000000000..b0ebbe448ae --- /dev/null +++ b/sale_rental/i18n/bs.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Kompanija" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupiši po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/ca.po b/sale_rental/i18n/ca.po new file mode 100644 index 00000000000..11360c5822e --- /dev/null +++ b/sale_rental/i18n/ca.po @@ -0,0 +1,651 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Companyia" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupa Per" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Línia de comanda de vendes" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línia de comanda de vendes" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Línia de comanda de vendes" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Comandes de venda" diff --git a/sale_rental/i18n/ca_ES.po b/sale_rental/i18n/ca_ES.po new file mode 100644 index 00000000000..4738753a818 --- /dev/null +++ b/sale_rental/i18n/ca_ES.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Companyia" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/cs.po b/sale_rental/i18n/cs.po new file mode 100644 index 00000000000..e9ebcf75682 --- /dev/null +++ b/sale_rental/i18n/cs.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Společnost" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Seskupit podle" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/da.po b/sale_rental/i18n/da.po new file mode 100644 index 00000000000..5037d43ee16 --- /dev/null +++ b/sale_rental/i18n/da.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Virksomhed" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Gruppér efter" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "Id" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/de.po b/sale_rental/i18n/de.po new file mode 100644 index 00000000000..78314dd5309 --- /dev/null +++ b/sale_rental/i18n/de.po @@ -0,0 +1,686 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2019-02-08 16:50+0000\n" +"Last-Translator: Ben Brich \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\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" +"X-Generator: Weblate 3.4\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "Zurück erhalten" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Vermietetes Produkt verkaufbar" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Abbrechen" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Abgebrochen" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Produktbild kopieren" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Anlegen" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Mietservice anlegen" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Mietserviceprodukt anlegen" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Kunde" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Standard Code" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Lieferung" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "End-Datum" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +#, fuzzy +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" +"End-Datum des Mietzeitraums, unter Berücksichtigung aller verkauften " +"Erweiterungen." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Gruppierung" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Anzahl der zu vermietenden Produkte." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Zuletzt akualisiert von" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Zuletzt akualisiert am" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Neue Vermietung" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Nicht genügend Bestand!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" +"In der Mietservice-Angebotszeile mit dem Produkt '{}', sollte ein " +"Mietserviceprodukt ausgewählt sein!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "Bestellt" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "Vermietet" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Produktkategorie" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Produktname" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "Mietserviceprodukt" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Miete pro Tag" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Miet-Anzahl" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +#, fuzzy +msgid "Rental SO" +msgstr "Miet-Service" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Miet-Service" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "Miet-Service" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +#, fuzzy +msgid "Rental Service Name" +msgstr "Miet-Service" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#, fuzzy +msgid "Rental Services" +msgstr "Miet-Service" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +#, fuzzy +msgid "Rental of one Acoustic Bloc Screens" +msgstr "iMac (Miete)" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +#, fuzzy +msgid "Rental of one Flipover" +msgstr "iMac (Miete)" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +#, fuzzy +msgid "Rental of one Three-Seat Sofa" +msgstr "iMac (Miete)" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Auftragsposition" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Sales Rentals" +msgstr "Neue Vermietung" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Auftragsposition" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Start-Datum" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" +"Im Mietserviceprodukt '{}' muss als Produktart 'Dienstleistung' ausgewählt " +"sein." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Lager" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, python-format +#~ msgid "" +#~ "On the sale order line with product {} you are trying to sell a rented " +#~ "product with a quantity ({}) that is different from the rented quantity " +#~ "({}). This is not supported." +#~ msgstr "" +#~ "In der Auftragszeile mit dem Mietserviceprodukt {} versuchen Sie das " +#~ "Produkt in einer Menge ({}) zu verkaufen die von der vermieteten Menge " +#~ "({}) abweicht. Diese Funktionalität wird nicht unterstützt." + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Verkaufsauftrag" + +#~ msgid "End Date (extensions included)" +#~ msgstr "End-Datum (Verlängerungen inkl.)" + +#~ msgid "Procurement" +#~ msgstr "Beschaffung" + +#~ msgid "Rental of one iPad Mini" +#~ msgstr "iPad Mini (Miete)" diff --git a/sale_rental/i18n/el_GR.po b/sale_rental/i18n/el_GR.po new file mode 100644 index 00000000000..ed5af1f43e6 --- /dev/null +++ b/sale_rental/i18n/el_GR.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Εταιρεία" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "Κωδικός" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Εντολή Πώλησης" diff --git a/sale_rental/i18n/en_GB.po b/sale_rental/i18n/en_GB.po new file mode 100644 index 00000000000..bfd1d53c0d9 --- /dev/null +++ b/sale_rental/i18n/en_GB.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Company" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Created on" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Group By" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es.po b/sale_rental/i18n/es.po new file mode 100644 index 00000000000..e48f2de9872 --- /dev/null +++ b/sale_rental/i18n/es.po @@ -0,0 +1,681 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2024-06-12 21:40+0000\n" +"Last-Translator: pablo-flinq \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\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" +"X-Generator: Weblate 4.17\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" +"* Nuevo: Cuando el movimiento se ha creado y aún no se ha confirmado.\n" +"* Esperando otro movimiento: Este estado puede verse cuando un movimiento " +"está esperando a otro, por ejemplo en un flujo encadenado.\n" +"* Esperando Disponibilidad: Este estado se alcanza cuando la resolución del " +"aprovisionamiento no es directa. Puede necesitar que se ejecute el " +"planificador, que se fabrique un componente...\n" +"* Disponible: Cuando los productos están reservados, se pone a " +"'Disponible'.\n" +"* Realizado: Cuando se procesa el envío, el estado es 'Hecho'." + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "Volver a entrar" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Se puede vender desde el alquiler" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "No encuentro ninguna ruta genérica de 'Alquiler'." + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "No encuentro ninguna ruta genérica 'Vender producto alquilado'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Cancelado/a" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "No se puede vender el alquiler {} porque no se ha entregado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañía" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Copiar imagen del producto" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Crear" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Crear un servicio de alquiler" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Crear el producto de servicio de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Cliente" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "Días" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Código por defecto" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Entrega" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "Orden de entrega" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Fecha final" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" +"Fecha de finalización del Alquiler (prórrogas " +"incluidas), teniendo en cuenta todas las prórrogas " +"vendidas al cliente." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "En estado de movimiento" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "Movimiento entrante" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Indique el número de artículos que se alquilarán." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" +"Falta 'Alquiler a Prorrogar' en la línea de pedido de venta con servicio de " +"alquiler {}" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nuevo alquiler" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "¡No hay suficientes existencias!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" +"En la línea de pedido de venta 'nuevo alquiler' con el producto '{}', " +"¡deberíamos tener un producto de servicio de alquiler!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" +"En la línea de pedido de venta con el producto %(product)s está intentando " +"vender un producto alquilado con una cantidad (%(qty)s) diferente de la " +"cantidad alquilada (%(rental_qty)s). Esto no es posible." + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" +"En la línea de pedido de venta con el producto '%(product)s' la Cantidad de " +"Producto (%(qty)s) debe ser el número de días (%(days)s) multiplicado por la " +"cantidad de artículos alquilados(%(rental_qty)s)." + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" +"En la línea de pedido de venta con servicio de alquiler %(product)s, está " +"intentando ampliar un alquiler con una cantidad de alquiler %(qty)s que es " +"diferente de la cantidad de artículos alquilados original %(original_qty)s. " +"Esto no es posible." + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "Encargado" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "Fuera" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "Estado de movimiento de salida" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "Movimiento de salida" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "Alquiler para padres" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Categoria de producto" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "Plantilla del Producto" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "Producto para alquilar" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "Cants" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "ALQUILER-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "Recibo" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "Servicios de alquiler relacionados" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Producto de alquiler relacionado" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Alquiler" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Alquiler permitido" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Ampliación del alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Ampliaciones del alquiler" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "Alquiler entrante" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "Alquiler saliente" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Precio de alquiler por día" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Cantidad de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Ruta de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "Alquiler SO" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "Alquiler Línea SO" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "Servicio de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "Nombre del servicio de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "Servicios de alquiler" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Tipo de alquiler" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Alquiler de un {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "Alquiler de una pantalla acústica Bloc" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "Alquiler de un rotafolio" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "Alquiler de un sofá de tres plazas" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Alquiler para ampliar" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Alquiler para vender" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Alquileres" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "Producto alquilado" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Devolución" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "Orden de Venta" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línea de pedido de venta" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "Venta de alquileres" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "Búsqueda de alquileres" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "Vender orden de entrega" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "Vender Estado de movimiento" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Vender producto alquilado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Ruta de venta de productos alquilados" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "Venta en curso" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "Movimiento de venta" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "Línea de venta de pedidos" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "Vendido" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Fecha de inicio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "Estado" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "Regla de existencias" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "La ubicación de la entrada de alquiler no está fijada en el almacén {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "La ubicación de la salida de alquiler no está fijada en el almacén {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" +"El Servicio de Alquiler de la Extensión de Alquiler que acaba de seleccionar " +"es '{}' y no es el mismo que el Producto actualmente seleccionado en esta " +"Línea de Pedido de Venta." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "El producto de alquiler '{}' debe ser de tipo 'Servicio'." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"El producto de alquiler '{}' debe tener marcada la opción 'Debe tener fechas " +"de inicio y fin'." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "La cantidad de alquiler debe ser positiva o nula." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "La unidad de medida del producto de alquiler '{}' debe ser 'Día'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Total/es" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Unidad de Medida" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Almacén" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "Active_model incorrecto. No debería ocurrir nunca." + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" +"¡Quiere alquilar %(rental_qty)s %(uom)s pero actualmente solo hay " +"%(available_qty)s %(uom)s disponible en la ubicación de existencias " +"'%(location)s'! Mientras tanto, asegúrese de recuperar algunas unidades o " +"reabastecer la ubicación '%(location)s'." diff --git a/sale_rental/i18n/es_AR.po b/sale_rental/i18n/es_AR.po new file mode 100644 index 00000000000..c9abfa89182 --- /dev/null +++ b/sale_rental/i18n/es_AR.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_CL.po b/sale_rental/i18n/es_CL.po new file mode 100644 index 00000000000..ed591e5870e --- /dev/null +++ b/sale_rental/i18n/es_CL.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_CO.po b/sale_rental/i18n/es_CO.po new file mode 100644 index 00000000000..631d6ef06df --- /dev/null +++ b/sale_rental/i18n/es_CO.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_CR.po b/sale_rental/i18n/es_CR.po new file mode 100644 index 00000000000..0b559c43abe --- /dev/null +++ b/sale_rental/i18n/es_CR.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañía" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_DO.po b/sale_rental/i18n/es_DO.po new file mode 100644 index 00000000000..e74a1a21692 --- /dev/null +++ b/sale_rental/i18n/es_DO.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_EC.po b/sale_rental/i18n/es_EC.po new file mode 100644 index 00000000000..09ccf65329b --- /dev/null +++ b/sale_rental/i18n/es_EC.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañia" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_ES.po b/sale_rental/i18n/es_ES.po new file mode 100644 index 00000000000..48a8de421f6 --- /dev/null +++ b/sale_rental/i18n/es_ES.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañía" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Pedido de venta" diff --git a/sale_rental/i18n/es_MX.po b/sale_rental/i18n/es_MX.po new file mode 100644 index 00000000000..caf4ef1e400 --- /dev/null +++ b/sale_rental/i18n/es_MX.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañía" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Procurement" +#~ msgstr "Contratación" diff --git a/sale_rental/i18n/es_PE.po b/sale_rental/i18n/es_PE.po new file mode 100644 index 00000000000..2d1aaeb7275 --- /dev/null +++ b/sale_rental/i18n/es_PE.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_PY.po b/sale_rental/i18n/es_PY.po new file mode 100644 index 00000000000..412998b5672 --- /dev/null +++ b/sale_rental/i18n/es_PY.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/es_VE.po b/sale_rental/i18n/es_VE.po new file mode 100644 index 00000000000..df1f6246238 --- /dev/null +++ b/sale_rental/i18n/es_VE.po @@ -0,0 +1,652 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Línea de pedido de venta" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línea de pedido de venta" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Línea de pedido de venta" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Pedidos de venta" diff --git a/sale_rental/i18n/et.po b/sale_rental/i18n/et.po new file mode 100644 index 00000000000..29448f1ac79 --- /dev/null +++ b/sale_rental/i18n/et.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Rühmitamine" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/eu.po b/sale_rental/i18n/eu.po new file mode 100644 index 00000000000..49acd66f7a1 --- /dev/null +++ b/sale_rental/i18n/eu.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Enpresa" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Created on" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Group By" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/fa.po b/sale_rental/i18n/fa.po new file mode 100644 index 00000000000..ec5b377e895 --- /dev/null +++ b/sale_rental/i18n/fa.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "شناسه" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/fi.po b/sale_rental/i18n/fi.po new file mode 100644 index 00000000000..6578caecb49 --- /dev/null +++ b/sale_rental/i18n/fi.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Peruuta" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Yritys" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Myyntitilaus" diff --git a/sale_rental/i18n/fr.po b/sale_rental/i18n/fr.po new file mode 100644 index 00000000000..f507b77422d --- /dev/null +++ b/sale_rental/i18n/fr.po @@ -0,0 +1,667 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2022-07-04 14:05+0000\n" +"Last-Translator: Grégory Moka Tourisme \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Annuler" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Annulé" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" +"Impossible de vendre la location {} parce qu'elle n'a pas été réceptionnée" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Société" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Copier l'image du produit" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Créer" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Créer le service de location" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Créer le service de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Client" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Livraison" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Date de fin" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nouvelle location" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Pas assez de stock !" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Article" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Catégorie d'article" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Nom de l'article" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "LOC-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Produit loué associé" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Location" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Location possible" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Prolongation de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Prolongations de location" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Prix de location par jour" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Quantité louée" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Route de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +#, fuzzy +msgid "Rental SO" +msgstr "Location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Ligne de commande de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +#, fuzzy +msgid "Rental Service Name" +msgstr "Créer le service de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#, fuzzy +msgid "Rental Services" +msgstr "Services de location associés" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Type de location" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Location d'un {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +#, fuzzy +msgid "Rental of one Flipover" +msgstr "Location d'un Flipover" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Location à prolonger" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Location à vendre" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Locations" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "Article loué" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Retour" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Sales Order Line" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Sales Rentals" +msgstr "Locations" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Vente du produit loué" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Route pour la vente des produits loués" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Sales Order Line" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Date de début" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "L'article de location '{}' doit être de type 'Service'." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"L'article de location '{}' doit avoir l'option 'Doit avoir une date de début " +"et de fin' activée." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "L'unité de mesure du produit de location '{}' doit être 'Jour'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Total" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Unité de mesure" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Entrepôt" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Day(s)" +#~ msgstr "Jour(s)" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Bon de commande" + +#~ msgid "Procurement" +#~ msgstr "Procurement" diff --git a/sale_rental/i18n/fr_CA.po b/sale_rental/i18n/fr_CA.po new file mode 100644 index 00000000000..cdb0bd7cd52 --- /dev/null +++ b/sale_rental/i18n/fr_CA.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "Identifiant" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/fr_CH.po b/sale_rental/i18n/fr_CH.po new file mode 100644 index 00000000000..f15d77bea71 --- /dev/null +++ b/sale_rental/i18n/fr_CH.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/fr_FR.po b/sale_rental/i18n/fr_FR.po new file mode 100644 index 00000000000..028aa63d55d --- /dev/null +++ b/sale_rental/i18n/fr_FR.po @@ -0,0 +1,697 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2022-06-03 19:05+0000\n" +"Last-Translator: Grégory Moka Tourisme \n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" +"* Nouveau : Le mouvement de stock est créé et non confirmé.\n" +"* En attente d'un autre mouvement : Ce statut peut être visible lorsqu'un " +"mouvement en attend un autre, par exemple dans un flux de chaîne.\n" +"* En attente de disponibilité : Cet état est atteint lorsqu' un " +"approvisionnement pas possible en l'état. Il peut y avoir besoin de " +"l'exécution du planificateur, de la fabrication d'un composant...\n" +"* Disponible : lorsque des produits sont réservés, il est marqué comme " +"« Disponible ».\n" +"* Terminé : Lorsque l'envoi est traité, l'état est \"Terminé\"." + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "Revenu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Annuler" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Annulé" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Société" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Créer" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Créer service de location" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Client" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Livraison" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "Ordre de livraison" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Date de fin" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Indiquez le nombre d'article qui vont être loué." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nouvelle location" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Pas assez de stock !" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "Réservé" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "Sorti" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "Location parente" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Article" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Catégorie d'article" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "Article à louer" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "LOC-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "Reçu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Louer" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Prolongation de location" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Prolongations de location" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "Location à disposition" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "Location sortie" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Location de {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "Location d'un paperboard" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "Location d'un canapé 3 places" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Location à prolonger" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Location à vendre" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Locations" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "Article loué" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "Ordre de livraison" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "Statut de la vente" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Location à vendre" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "Vente en cours" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "Mouvement de stock" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "Vendu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Date de début" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "Statut" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "Règle de stock" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" +"L'emplacement du stock de retour de location n'est pas défini sur l'entrepôt " +"{}" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" +"L'emplacement du stock de sortie de location n'est pas défini sur l'entrepôt " +"{}" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" +"Le service de location de l'extension de location que vous venez de " +"sélectionner est '{}' et il ne s'agit pas du même article actuellement " +"défini dans les lignes de bon de commande." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "L'article de location '{}' doit être de type 'Service'." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"L'article de location '{}' doit avoir l'option 'Doit avoir une date de début/" +"fin' cochée." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "La quantité à louer doit être positive ou nulle." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "L'unité de mesure de l'article de location '{}' doit être 'Jour'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Total" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Unité de mesure" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Entrepôt" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Day(s)" +#~ msgstr "Jour(s)" + +#, python-format +#~ msgid "" +#~ "On the sale order line with rental service {}, you are trying to extend a " +#~ "rental with a rental quantity ({}) that is different from the quantity of " +#~ "the original rental ({}). This is not supported." +#~ msgstr "" +#~ "Sur la ligne de commande avec le service de location {}, vous tentez de " +#~ "prolonger la location avec une quantité de ({}) qui est différente de la " +#~ "quantité louée initiale ({}). Ce n'est pas possible." + +#~ msgid "" +#~ "You can find a customer by its Name, TIN, Email or Internal Reference." +#~ msgstr "" +#~ "Vous pouvez retrouver un client pas son nom, email ou référence interne." + +#, python-format +#~ msgid "" +#~ "You want to rent %.2f {} but you only have %.2f {} currently available on " +#~ "the stock location '{}' ! Make sure that you get some units back in the " +#~ "mean time or re-supply the stock location '{}'." +#~ msgstr "" +#~ "Vous voulez louer %.2f {} mais vous n'en avez que %.2f {} disponible dans " +#~ "l'emplacement de location '{}' ! Assurez vous de retourner les quantités " +#~ "nécessaires avant le début de la location ou réapprovisionnez " +#~ "l'emplacement de location '{}'." + +#~ msgid "kg" +#~ msgstr "kg" diff --git a/sale_rental/i18n/gl.po b/sale_rental/i18n/gl.po new file mode 100644 index 00000000000..d231471358d --- /dev/null +++ b/sale_rental/i18n/gl.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Compañía" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Modificado por última vez o" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/gl_ES.po b/sale_rental/i18n/gl_ES.po new file mode 100644 index 00000000000..7705f366175 --- /dev/null +++ b/sale_rental/i18n/gl_ES.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/he.po b/sale_rental/i18n/he.po new file mode 100644 index 00000000000..d6c9f00ce2d --- /dev/null +++ b/sale_rental/i18n/he.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "קבץ לפי" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "מזהה" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/hr.po b/sale_rental/i18n/hr.po new file mode 100644 index 00000000000..5a9c9fe6d97 --- /dev/null +++ b/sale_rental/i18n/hr.po @@ -0,0 +1,657 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupiraj po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Proizvod" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Stavka ponude" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Stavka ponude" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Stavka ponude" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Skladište" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Prodajni nalog" + +#~ msgid "Procurement" +#~ msgstr "Nabava" diff --git a/sale_rental/i18n/hr_HR.po b/sale_rental/i18n/hr_HR.po new file mode 100644 index 00000000000..024967e3bb1 --- /dev/null +++ b/sale_rental/i18n/hr_HR.po @@ -0,0 +1,651 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Prupiraj po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Prodjani nalog" diff --git a/sale_rental/i18n/hu.po b/sale_rental/i18n/hu.po new file mode 100644 index 00000000000..45a4fb0ab8c --- /dev/null +++ b/sale_rental/i18n/hu.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Vállalat" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Csoportosítás..." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Vevői megrendelés" diff --git a/sale_rental/i18n/id.po b/sale_rental/i18n/id.po new file mode 100644 index 00000000000..23c546d3a00 --- /dev/null +++ b/sale_rental/i18n/id.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Dikelompokan berdasarkan .." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/it.po b/sale_rental/i18n/it.po new file mode 100644 index 00000000000..cccac29ed07 --- /dev/null +++ b/sale_rental/i18n/it.po @@ -0,0 +1,711 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2023-12-24 19:43+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\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" +"X-Generator: Weblate 4.17\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Vendita da noleggio" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "Impossibile trovare route \"Noleggio\"" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "Impossibile trovare route\"Vendita da noleggio\"" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Annulla" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" +"Impossibile vendere il prodotto noleggiato {} perché non ancora consegnato" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Azienda" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Copia immagine del prodotto" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Crea" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Crea servizio di noleggio" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Crea il prodotto per il servizio di noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Codice predefinito" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Consegna" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Data fine" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Raggruppa per" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Indica il numero di pezzi che verranno noleggiati" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nuovo noleggio" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Non abbastanza stock!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" +"Nella nuova riga dell'ordine di vendita per il prodotto {}, e' necessario " +"avere un prodotto di tipo \"servizio noleggio\"!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Prodotto" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Categoria prodotto" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Nome Prodotto" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "NOLEGGIO - {}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Prodotto noleggiabile collegato" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Noleggiare" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Noleggio possibile" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Estensione noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Estensioni noleggio" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "Noleggio In" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "Noleggio Out" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Prezzo giornaliero noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Quantità noleggiata" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Route - Noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +#, fuzzy +msgid "Rental SO" +msgstr "Noleggio Out" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Riga del contratto di noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +#, fuzzy +msgid "Rental Service Name" +msgstr "Crea servizio di noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#, fuzzy +msgid "Rental Services" +msgstr "Servizio noleggio collegato" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Tipo di noleggio" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Noleggio di {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +#, fuzzy +msgid "Rental of one Acoustic Bloc Screens" +msgstr "Rental of one iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +#, fuzzy +msgid "Rental of one Flipover" +msgstr "Rental of one iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +#, fuzzy +msgid "Rental of one Three-Seat Sofa" +msgstr "Rental of one iMac" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Estensione noleggio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Noleggio da vendere" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Noleggi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Rientro" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Riga ordine di vendita" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Sales Rentals" +msgstr "Noleggi" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Prodotti noleggiati venduti" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Sell Rented Product Route" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Linea d'ordine di vendita" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Data inizio" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "La locazione \"Noleggio In\" non fa parte del magazzino {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "La locazione \"Noleggio Out\" non fa parte del magazzino {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" +"L'estensione del servizio di noleggio che e' stato selezionato per '{}' non " +"e' lo stesso prodotto di quella nell'ordine di vendita" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "Il prodotto di noleggio '{}' deve essere di tipo 'Servizio'" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"Il prodotto noleggiabile '{}' deve avere il flag su \"Deve avere una data di " +"inizio e di fine\"" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "L'unità di misura per il prodotto '{}' deve essere \"Giorno\"" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Totale" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Unità di misura" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Magazzino" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, python-format +#~ msgid "" +#~ "On the sale order line with product '{}' the Product Quantity ({}) should " +#~ "be the number of days ({}) multiplied by the Rental Quantity ({})." +#~ msgstr "" +#~ "Nell'ordine di vendita con il prodotto '{}' la quantità ({}) sarà il " +#~ "numero di giorni ({}) moltiplicata per la quantità noleggiata ({})." + +#, python-format +#~ msgid "" +#~ "On the sale order line with product {} you are trying to sell a rented " +#~ "product with a quantity ({}) that is different from the rented quantity " +#~ "({}). This is not supported." +#~ msgstr "" +#~ "Nell'ordine di vendita per il prodotto {} si sta tentando di noleggiare " +#~ "la quantità ({}) che e' diversa da quella noleggiata ({}). Questo non e' " +#~ "previsto" + +#, python-format +#~ msgid "" +#~ "On the sale order line with rental service {}, you are trying to extend a " +#~ "rental with a rental quantity ({}) that is different from the quantity of " +#~ "the original rental ({}). This is not supported." +#~ msgstr "" +#~ "Nell'ordine di vendita con il prodotto {}, si sta cercando di estendere " +#~ "un noleggio con un quantità ({}) che e' diversa dalla quantità prevista " +#~ "in origine ({}). Questo non e' previsto." + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Ordini vendita" + +#, python-format +#~ msgid "" +#~ "You want to rent %.2f {} but you only have %.2f {} currently available on " +#~ "the stock location '{}' ! Make sure that you get some units back in the " +#~ "mean time or re-supply the stock location '{}'." +#~ msgstr "" +#~ "Si vuole noleggiare %.2f {} ma sono solo disponibili %.2f {} nella " +#~ "locazione '{}'. Assicurarsi prima il rientro o procedere alla " +#~ "riallocazione di '{}'" + +#~ msgid "Rental of one Laptop E5023" +#~ msgstr "Rental of one Laptop E5023" + +#~ msgid "Rental of one iPad Mini" +#~ msgstr "Rental of one iPad Mini" diff --git a/sale_rental/i18n/ja.po b/sale_rental/i18n/ja.po new file mode 100644 index 00000000000..d8595d91858 --- /dev/null +++ b/sale_rental/i18n/ja.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "会社" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "作成日" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "グループ化" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/ko.po b/sale_rental/i18n/ko.po new file mode 100644 index 00000000000..574e0d15142 --- /dev/null +++ b/sale_rental/i18n/ko.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "작성일" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "그룹화" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/lt.po b/sale_rental/i18n/lt.po new file mode 100644 index 00000000000..9e67d73ed51 --- /dev/null +++ b/sale_rental/i18n/lt.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Įmonė" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupuoti pagal" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/lt_LT.po b/sale_rental/i18n/lt_LT.po new file mode 100644 index 00000000000..cfbb1647d58 --- /dev/null +++ b/sale_rental/i18n/lt_LT.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/lv.po b/sale_rental/i18n/lv.po new file mode 100644 index 00000000000..9572cc92abe --- /dev/null +++ b/sale_rental/i18n/lv.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Uzņēmums" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupēt pēc" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/mk.po b/sale_rental/i18n/mk.po new file mode 100644 index 00000000000..5c58173575f --- /dev/null +++ b/sale_rental/i18n/mk.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Компанија" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Групирај по" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/mn.po b/sale_rental/i18n/mn.po new file mode 100644 index 00000000000..35f571a90a0 --- /dev/null +++ b/sale_rental/i18n/mn.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Компани" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Бүлэглэх" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/nb.po b/sale_rental/i18n/nb.po new file mode 100644 index 00000000000..4db8a774b57 --- /dev/null +++ b/sale_rental/i18n/nb.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Firma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupper etter" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/nb_NO.po b/sale_rental/i18n/nb_NO.po new file mode 100644 index 00000000000..4dbb40751a5 --- /dev/null +++ b/sale_rental/i18n/nb_NO.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Firma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Gruppe laget av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/nl.po b/sale_rental/i18n/nl.po new file mode 100644 index 00000000000..aa9cea2b02b --- /dev/null +++ b/sale_rental/i18n/nl.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Groepeer op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Laatste bijgewerkt door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Magazijn" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Verkooporder" diff --git a/sale_rental/i18n/nl_BE.po b/sale_rental/i18n/nl_BE.po new file mode 100644 index 00000000000..132e8b89b79 --- /dev/null +++ b/sale_rental/i18n/nl_BE.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/nl_NL.po b/sale_rental/i18n/nl_NL.po new file mode 100644 index 00000000000..c20efce98fe --- /dev/null +++ b/sale_rental/i18n/nl_NL.po @@ -0,0 +1,769 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-06 13:17+0000\n" +"PO-Revision-Date: 2018-06-20 17:40+0000\n" +"Last-Translator: Thomas Pot \n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\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" +"X-Generator: Weblate 3.0.1\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" +"* Nieuw: wanneer de voorraadverplaatsing is gemaakt en nog niet is " +"bevestigd.\n" +"* Wachten op andere bewerking: deze toestand is te zien wanneer een " +"verplaatsing op een andere wacht, bijvoorbeeld in een kettingstroom.\n" +"* Wachten op beschikbaarheid: deze status wordt bereikt wanneer de " +"verwerving niet eenvoudig is. Mogelijk moet de planner worden uitgevoerd, " +"een onderdeel dat moet worden geproduceerd ...\n" +"* Beschikbaar: wanneer producten zijn gereserveerd, is deze ingesteld op " +"'Beschikbaar'.\n" +"* Gereed: wanneer de zending is verwerkt, is de status 'Gereed'." + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "Al retour" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Mag verkocht worden via verhuur" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "Kan geen generieke 'verhuur'-routing vinden." + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "Kan geen generieke 'Verkoop via verhuur'-routing vinden." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Geannuleerd" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "Kan de verhuur {} niet verkopen omdat deze nog niet geleverd is." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Kopieer de afbeelding van het product" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Aanmaken" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Aanmaken verhuur service" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Aanmaken verhuur service dienst" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Klant" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Interne referentie" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Levering" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "Leveringsopdracht" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Einddatum" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +#, fuzzy +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" +"Einddatum van de verhuur, rekening houdend met alle verlengingen die aan de " +"klant zijn verkocht." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Vermeld het aantal items dat wordt verhuurd." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Laatst aangepast door" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Laatst aangepast op" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" +"Ontbrekende 'Verhuur te verlengen' op de verkooporderregel met " +"verhuurservice {}" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nieuwe verhuur" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Onvoldoende voorraad !" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" +"Op de verkooporderregel van 'nieuwe verhuur' met product '{}', zou er een " +"huurserviceproduct moeten zijn!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "Besteld" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "Uit" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +#, fuzzy +msgid "Outgoing Move" +msgstr "Uitgaande voorraadverplaatsing" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "Bovenliggende verhuur" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Product" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Interne categorie" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Productnaam" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "HUUR-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "Gekoppelde verhuurservice" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Gekoppeld voorraadproduct" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Verhuur" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Verhuur" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Verhuur toegestaan" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Verhuur verlenging" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Verhuur verlenging" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "Retouren verhuur" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "Verhuur uitgaand" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Verhuurprijs per dag" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Verhuur aantal" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Verhuur routing" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +#, fuzzy +msgid "Rental SO" +msgstr "Verhuur uitgaand" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Verhuur Orderregel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "Verhuurservice" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +#, fuzzy +msgid "Rental Service Name" +msgstr "Verhuurservice" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#, fuzzy +msgid "Rental Services" +msgstr "Verhuurservice" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Type verhuur" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Verhuur van een {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +#, fuzzy +msgid "Rental of one Acoustic Bloc Screens" +msgstr "Verhuur van een iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +#, fuzzy +msgid "Rental of one Flipover" +msgstr "Verhuur van een iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +#, fuzzy +msgid "Rental of one Three-Seat Sofa" +msgstr "Verhuur van een iMac" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Verhuur verlenging" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Verhuur te verkopen" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Verhuur" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "Verhuurd product" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Retourneer" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Verkooporderregel" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Sales Rentals" +msgstr "Zoek verhuuropdrachten" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "Zoek verhuuropdrachten" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "Verkoop levering" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +#, fuzzy +msgid "Sell Move State" +msgstr "Verkoop voorraadverplaatsing" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Verkoop verhuurd product" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Routing verkoop verhuurservice product" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "Verkoop in behandeling" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +#, fuzzy +msgid "Selling Move" +msgstr "Verkoop voorraadverplaatsing" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Verkooporderregel" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "Verkocht" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Startdatum" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "Status" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" +"De locatie voor inkomende leveringen van verhuur is niet ingesteld voor dit " +"magazijn {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" +"De locatie voor uitgaande leveringen van verhuur is niet ingesteld voor dit " +"magazijn {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" +"De Verhuurservice van de verlenging die u zojuist heeft geselecteerd, is " +"'{}' en is niet hetzelfde als het Product dat momenteel is geselecteerd op " +"deze verkooporderregel." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "De verhuurservice '{}' moet van het type 'Dienst' zijn ingesteld." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"De verhuurservice '{}' moet de optie 'Moet start en einddatum bevatten' " +"hebben aangevinkt." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "De eenheid van de verhuurservice '{}' moet zijn 'Dag'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Totaal" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Eenheid" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Magazijn" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, python-format +#~ msgid "" +#~ "On the sale order line with product '{}' the Product Quantity ({}) should " +#~ "be the number of days ({}) multiplied by the Rental Quantity ({})." +#~ msgstr "" +#~ "Op de verkooporderregel met product '{}' moet de producthoeveelheid ({}) " +#~ "het aantal dagen ({}) vermenigvuldigd met de huurhoeveelheid ({}) zijn." + +#, python-format +#~ msgid "" +#~ "On the sale order line with product {} you are trying to sell a rented " +#~ "product with a quantity ({}) that is different from the rented quantity " +#~ "({}). This is not supported." +#~ msgstr "" +#~ "Op de verkooporderregel met product {} probeert u een verhuurd product te " +#~ "verkopen met een hoeveelheid ({}) die verschilt van de gehuurde " +#~ "hoeveelheid ({}). Dit wordt niet ondersteund." + +#~ msgid "Inventory" +#~ msgstr "Voorraad" + +#, python-format +#~ msgid "" +#~ "On the sale order line with rental service {}, you are trying to extend a " +#~ "rental with a rental quantity ({}) that is different from the quantity of " +#~ "the original rental ({}). This is not supported." +#~ msgstr "" +#~ "Op de verkooporderregel met huurservice {} probeert u een " +#~ "huurovereenkomst uit te breiden met een huurhoeveelheid ({}) die " +#~ "verschilt van de hoeveelheid van de oorspronkelijke huur ({}). Dit wordt " +#~ "niet ondersteund." + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Verkooporder" + +#, python-format +#~ msgid "" +#~ "You want to rent %.2f {} but you only have %.2f {} currently available on " +#~ "the stock location '{}' ! Make sure that you get some units back in the " +#~ "mean time or re-supply the stock location '{}'." +#~ msgstr "" +#~ "U wilt %.2f {} verhuren maar u hebt momenteel slechts %.2f {} beschikbaar " +#~ "op de voorraadlocatie '{}'! Zorg ervoor dat u ondertussen enkele " +#~ "producten terughaalt of zorg voor een voorraad aanvulling op locatie " +#~ "'{}' ." + +#~ msgid "End Date (extensions included)" +#~ msgstr "Einddatum (verlenging inbegrepen)" + +#~ msgid "Procurement" +#~ msgstr "Verwerving" + +#~ msgid "Pushed Flow" +#~ msgstr "Push regel" + +#~ msgid "Rental Sale Order" +#~ msgstr "Verhuur Order" + +#~ msgid "Rental of one Laptop E5023" +#~ msgstr "Verhuur van een Laptop E5023" + +#~ msgid "Rental of one iPad Mini" +#~ msgstr "Verhuur van een iPad Mini" + +#~ msgid "Return Picking" +#~ msgstr "Retour Levering" + +#~ msgid "Return Stock Move" +#~ msgstr "Retour voorraadverplaatsing" + +#~ msgid "Sell Procurement" +#~ msgstr "Verkoop verwerving" + +#~ msgid "State of the Outgoing Stock Move" +#~ msgstr "Status van de uitgaande levering" + +#~ msgid "State of the Return Stock Move" +#~ msgstr "Status van de Retour levering" + +#~ msgid "State of the Sell Stock Move" +#~ msgstr "Status van de verkoop levering" diff --git a/sale_rental/i18n/pl.po b/sale_rental/i18n/pl.po new file mode 100644 index 00000000000..7c415478c35 --- /dev/null +++ b/sale_rental/i18n/pl.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Firma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Pogrupuj wg" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/pt.po b/sale_rental/i18n/pt.po new file mode 100644 index 00000000000..cd902b1e1d3 --- /dev/null +++ b/sale_rental/i18n/pt.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2021-02-08 21:44+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\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" +"X-Generator: Weblate 4.3.2\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Empresa" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Sale Order" +#~ msgstr "Encomenda de Venda" diff --git a/sale_rental/i18n/pt_BR.po b/sale_rental/i18n/pt_BR.po new file mode 100644 index 00000000000..00a793afa06 --- /dev/null +++ b/sale_rental/i18n/pt_BR.po @@ -0,0 +1,687 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-10-02 02:16+0000\n" +"Last-Translator: Marcel Savegnago \n" +"Language-Team: none\n" +"Language: pt_BR\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" +"X-Generator: Weblate 3.10\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" +"* Novo: Quando o movimento de ações é criado e ainda não confirmado.\n" +"* Aguardando Outro Movimento: Este estado pode ser visto quando um movimento " +"está esperando por outro, por exemplo, em um fluxo acorrentado.\n" +"* Disponibilidade de espera: Este estado é alcançado quando a resolução de " +"compras não é direta. Pode precisar do programador para executar, um " +"componente a ser fabricado ...\n" +"* Disponível: Quando os produtos são reservados, ele está definido como " +"\"Disponível\".\n" +"* Feito: Quando o carregamento é processado, o estado é 'Feito'." + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "Volta Em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Pode Vender a partir de Aluguel" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" +"Não é possível encontrar nenhuma rota genérica para \"Vender Produto Alugado" +"\"." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "Cancelada" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "Não é possível vender o aluguel {} porque ele não foi entregue" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Empresa" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Copiar Imagem do Produto" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Criar" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Criar Serviço de Aluguel" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Criar o Produto Serviço de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "Cliente" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Código Padrão" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Entrega" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "Ordem de Entrada" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nome Exibido" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Data Final" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" +"Data de término do Aluguel (extensões incluídas), levando em conta " +"todas as extensões vendidas ao cliente." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "Movimento de Entrada" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Nova Locação" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Não há estoque suficiente !" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "Encomendado" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "Fora" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "Movimento de Saída" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "Aluguel de Pai" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Categoria de Produtos" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "Produto para Alugar" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "RENT-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "Recibo" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Produto Alugado Relacionado" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Aluguel" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Aluguel Permitido" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Extensão de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Extensões de Aluguel" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Preço de aluguel por dia" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Quantidade de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Rota de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "Aluguel SO" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "Aluguel SO Line" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "Serviço de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "Nome do Serviço de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "Serviços de Aluguel" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Tipo de Aluguel" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Aluguel de a {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "Aluguel de uma Tela de Bloco Acústico" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "Aluguel de um Flipover" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "Aluguel de um Sofá de Três Lugares" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Aluguel para Estender" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Aluguel para Vender" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Anúncios" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "Produto Alugado" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Devolução" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linha do Pedido de Venda" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "Aluguéis de Vendas" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "Pesquisar Locações" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Vender Produto Alugado" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Vender Rota do Produto Alugado" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "Venda em andamento" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "Vender Movimento" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "Vendido" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Data de Início" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "Estado" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "Regras de Estoque" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" +"O local de estoque de entrada de aluguel não está definido no armazém {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "O local de estoque de saída de aluguel não está definido no armazém {}" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "O produto de aluguel '{}' deve ser do tipo 'Serviço'." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"O produto de aluguel '{}' deve ter a opção 'Deve ter datas de início e " +"término' verificada." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "A quantidade de aluguel deve ser positiva ou nula." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "A unidade de medida do produto de aluguel '{}' deve ser 'Dia'." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Total" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Unidade de Medida" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Armazém" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Day(s)" +#~ msgstr "Dia(s)" + +#~ msgid "Inventory" +#~ msgstr "Inventário" + +#~ msgid "Sale Order" +#~ msgstr "Pedido de Venda" + +#~ msgid "" +#~ "You can find a customer by its Name, TIN, Email or Internal Reference." +#~ msgstr "" +#~ "Você pode encontrar um cliente pelo nome, TIN, E-mail ou Referência " +#~ "Interna." + +#, python-format +#~ msgid "" +#~ "You want to rent %.2f {} but you only have %.2f {} currently available on " +#~ "the stock location '{}' ! Make sure that you get some units back in the " +#~ "mean time or re-supply the stock location '{}'." +#~ msgstr "" +#~ "Você deseja alugar %.2f {}, mas só tem %.2f {} disponível no local de " +#~ "estoque '{}'! Certifique-se de obter algumas unidades de volta nesse meio " +#~ "tempo ou reabasteça o local de estoque '{}'." + +#~ msgid "kg" +#~ msgstr "kg" diff --git a/sale_rental/i18n/pt_PT.po b/sale_rental/i18n/pt_PT.po new file mode 100644 index 00000000000..32c1678db97 --- /dev/null +++ b/sale_rental/i18n/pt_PT.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Empresa" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#~ msgid "Procurement" +#~ msgstr "Aquisições" diff --git a/sale_rental/i18n/ro.po b/sale_rental/i18n/ro.po new file mode 100644 index 00000000000..16d66cef3fb --- /dev/null +++ b/sale_rental/i18n/ro.po @@ -0,0 +1,655 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Companie" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupează după" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Linie comandă vânzare" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linie comandă vânzare" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Linie comandă vânzare" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Comandă vânzare" + +#~ msgid "Procurement" +#~ msgstr "Aprovizionare" diff --git a/sale_rental/i18n/ru.po b/sale_rental/i18n/ru.po new file mode 100644 index 00000000000..789c8f7911f --- /dev/null +++ b/sale_rental/i18n/ru.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Компания" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Создан" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/sale_rental.pot b/sale_rental/i18n/sale_rental.pot new file mode 100644 index 00000000000..45352f8a085 --- /dev/null +++ b/sale_rental/i18n/sale_rental.pot @@ -0,0 +1,637 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement resolution is not straight forward. It may need the scheduler to run, a component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates'" +" checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure" +" that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/sk.po b/sale_rental/i18n/sk.po new file mode 100644 index 00000000000..e95b4d66a4a --- /dev/null +++ b/sale_rental/i18n/sk.po @@ -0,0 +1,649 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:53+0000\n" +"PO-Revision-Date: 2018-01-27 03:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Zoskupiť podľa" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Objednávka predaja" diff --git a/sale_rental/i18n/sl.po b/sale_rental/i18n/sl.po new file mode 100644 index 00000000000..855ed0b2037 --- /dev/null +++ b/sale_rental/i18n/sl.po @@ -0,0 +1,713 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "Možna prodaja najemniških proizvodov" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "Nobena generična najemna proga ni najdena." + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "Nobena generična proga 'prodanih najemniških proizvodov' ni najdena." + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "Preklic" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "Ni mogoče prodati najemniškega proizvoda {}, ker ni bil dostavljen" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Družba" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "Kopiranje slike proizvoda" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "Ustvari" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "Ustvari najemniško storitev" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "Ustvari proizvod najemniške storitve" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "Privzeta koda" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "Dostava" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "Končni datum" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Združeno po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "Določa število predmetov za najem." + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "Novo najemništvo" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "Ni dovolj zaloge!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" +"Na novi najemniški postavki prodajnega naloga s proizvodom '{}' morate imeti " +"proizvod najemniške storitve!" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +#, fuzzy +msgid "Product to Rent" +msgstr "Naziv proizvoda" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "NAJEM-{}" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "Povezani najemniški proizvod" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "Najem" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "Najemništvo" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "Najemništvo je dovoljeno" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "Podaljšanje najemništva" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "Podaljšanja najemništva" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "Vhodni najem" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "Izhodni najem" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "Dnevna najemniška cena" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "Najemniška količina" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "Najemniška proga" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +#, fuzzy +msgid "Rental SO" +msgstr "Izhodni najem" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Najemniška postavka prodajnega naloga" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +#, fuzzy +msgid "Rental Service Name" +msgstr "Ustvari najemniško storitev" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#, fuzzy +msgid "Rental Services" +msgstr "Povezane najemniške storitve" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "Tip najemništva" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "Najem {}" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +#, fuzzy +msgid "Rental of one Acoustic Bloc Screens" +msgstr "Najem enega iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +#, fuzzy +msgid "Rental of one Flipover" +msgstr "Najem enega iMac" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +#, fuzzy +msgid "Rental of one Three-Seat Sofa" +msgstr "Najem enega iMac" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "Najem za podaljšanje" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "Najem za prodajo" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "Najemi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "Vračilo" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Postavka prodajnega naloga" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Sales Rentals" +msgstr "Najemi" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "Prodaja najemniškega proizvoda" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "Prodajna proga najemniškega proizvoda" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Postavka prodajnega naloga" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "Začetni datum" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "Lokacija vhodne najemne zaloge v skladišču {} ni nastavljena" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "Lokacija izhodne najemne zaloge v skladišču {} ni nastavljena" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" +"Najemniška storitev podaljšanja najema, ki ste jo ravnokar izbrali je '{}' " +"in ne ustreza trenutno izbranemu proizvodu v tej postavki prodajnega naloga." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "Najemniški proizvod '{}' mora biti tipa 'storitev'." + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" +"Najemniški proizvod '{}' mora imeti označeno opcijo 'zahteva se začetni in " +"končni datum'." + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "Enota mere najemniškega proizvoda '{}' mora biti 'dni'" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "Skupaj" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "Enota mere" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "Skladišče" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, python-format +#~ msgid "" +#~ "On the sale order line with product '{}' the Product Quantity ({}) should " +#~ "be the number of days ({}) multiplied by the Rental Quantity ({})." +#~ msgstr "" +#~ "Na postavki prodajnega naloga s proizvodom {} mora biti količina " +#~ "proizvodov ({}) v številu dni ({}) pomnoženim z najemniško količino ({})." + +#, python-format +#~ msgid "" +#~ "On the sale order line with product {} you are trying to sell a rented " +#~ "product with a quantity ({}) that is different from the rented quantity " +#~ "({}). This is not supported." +#~ msgstr "" +#~ "Na postavki prodajnega naloga s proizvodom {} poskušate prodati " +#~ "najemniški proizvod s količino ({}), ki je drugačen od najemniške " +#~ "količine ({}). To ni podprto." + +#, python-format +#~ msgid "" +#~ "On the sale order line with rental service {}, you are trying to extend a " +#~ "rental with a rental quantity ({}) that is different from the quantity of " +#~ "the original rental ({}). This is not supported." +#~ msgstr "" +#~ "Na postavki prodajnega naloga s proizvodom {} poskušate podaljšati " +#~ "najemništvo s količino ({}), ki je drugačna od količine izvornega najema " +#~ "({}). To ni podprto." + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Prodajni nalog" + +#, python-format +#~ msgid "" +#~ "You want to rent %.2f {} but you only have %.2f {} currently available on " +#~ "the stock location '{}' ! Make sure that you get some units back in the " +#~ "mean time or re-supply the stock location '{}'." +#~ msgstr "" +#~ "Poskušate posoditi %.2f {} a imate le %.2f {} trenutno razpoložljive " +#~ "zaloge na lokaciji '{}' ! Prepričajte se, da dobite nekaj enot nazaj ali " +#~ "pa povečajte zalogo na lokaciji '{}'." + +#~ msgid "Procurement" +#~ msgstr "Oskrbovanje" + +#~ msgid "Rental of one Laptop E5023" +#~ msgstr "Najemn enega prenosnika E5023" + +#~ msgid "Rental of one iPad Mini" +#~ msgstr "Najem enega iPad Mini" diff --git a/sale_rental/i18n/sr.po b/sale_rental/i18n/sr.po new file mode 100644 index 00000000000..a01fc234a29 --- /dev/null +++ b/sale_rental/i18n/sr.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupiši po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/sr@latin.po b/sale_rental/i18n/sr@latin.po new file mode 100644 index 00000000000..d3c518a0364 --- /dev/null +++ b/sale_rental/i18n/sr@latin.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupisano po" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/sv.po b/sale_rental/i18n/sv.po new file mode 100644 index 00000000000..e335e48d38a --- /dev/null +++ b/sale_rental/i18n/sv.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Bolag" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Gruppera efter" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/th.po b/sale_rental/i18n/th.po new file mode 100644 index 00000000000..c63597d642d --- /dev/null +++ b/sale_rental/i18n/th.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "บริษัท" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "จัดกลุ่มโดย" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "รหัส" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/tr.po b/sale_rental/i18n/tr.po new file mode 100644 index 00000000000..fafb302f21a --- /dev/null +++ b/sale_rental/i18n/tr.po @@ -0,0 +1,651 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-23 01:51+0000\n" +"PO-Revision-Date: 2017-11-23 01:51+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Şirket" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Grupla" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Satış Siparişi Hattı" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Satış Siparişi Hattı" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Satış Siparişi Hattı" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Sipariş Emri" diff --git a/sale_rental/i18n/tr_TR.po b/sale_rental/i18n/tr_TR.po new file mode 100644 index 00000000000..38c101afbd7 --- /dev/null +++ b/sale_rental/i18n/tr_TR.po @@ -0,0 +1,655 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "Firma" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "Kimlik" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +#, fuzzy +msgid "Rental SO Line" +msgstr "Sipariş emri satırı " + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "Sipariş emri satırı " + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, fuzzy +msgid "Selling Order Line" +msgstr "Sipariş emri satırı " + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Satış emri" + +#~ msgid "Procurement" +#~ msgstr "Satın alma" diff --git a/sale_rental/i18n/uk.po b/sale_rental/i18n/uk.po new file mode 100644 index 00000000000..b575c2c79a4 --- /dev/null +++ b/sale_rental/i18n/uk.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Групувати за" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/vi.po b/sale_rental/i18n/vi.po new file mode 100644 index 00000000000..ad3cf041fb6 --- /dev/null +++ b/sale_rental/i18n/vi.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "Group By" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/i18n/vi_VN.po b/sale_rental/i18n/vi_VN.po new file mode 100644 index 00000000000..d91c4c42b72 --- /dev/null +++ b/sale_rental/i18n/vi_VN.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "Đơn hàng Bán" + +#~ msgid "Procurement" +#~ msgstr "Mua sắm / Cung ứng" diff --git a/sale_rental/i18n/zh_CN.po b/sale_rental/i18n/zh_CN.po new file mode 100644 index 00000000000..ff7e3cf9b28 --- /dev/null +++ b/sale_rental/i18n/zh_CN.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-17 02:40+0000\n" +"PO-Revision-Date: 2017-05-17 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "ID" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" + +#, fuzzy +#~ msgid "Sale Order" +#~ msgstr "销售订单" + +#~ msgid "Procurement" +#~ msgstr "补货" diff --git a/sale_rental/i18n/zh_TW.po b/sale_rental/i18n/zh_TW.po new file mode 100644 index 00000000000..7bc6d40d232 --- /dev/null +++ b/sale_rental/i18n/zh_TW.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_rental +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-08 00:50+0000\n" +"PO-Revision-Date: 2017-07-08 00:50+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\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" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__in_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__out_state +#: model:ir.model.fields,help:sale_rental.field_sale_rental__sell_state +msgid "" +"* New: When the stock move is created and not yet confirmed.\n" +"* Waiting Another Move: This state can be seen when a move is waiting for " +"another one, for example in a chained flow.\n" +"* Waiting Availability: This state is reached when the procurement " +"resolution is not straight forward. It may need the scheduler to run, a " +"component to be manufactured...\n" +"* Available: When products are reserved, it is set to 'Available'.\n" +"* Done: When the shipment is processed, the state is 'Done'." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__in +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Back In" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__can_sell_rental +msgid "Can Sell from Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Rent' route." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "Can't find any generic 'Sell Rented Product' route." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Cancel" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__cancel +msgid "Cancelled" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Cannot sell the rental {} because it has not been delivered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__company_id +msgid "Company" +msgstr "公司" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__copy_image +msgid "Copy Product Image" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +msgid "Create" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.create_rental_product_action +#: model_terms:ir.ui.view,arch_db:sale_rental.create_rental_product_form +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Create Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_create_rental_product +msgid "Create the Rental Service Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__create_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__create_date +msgid "Created on" +msgstr "建立於" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__partner_id +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Customer" +msgstr "" + +#. module: sale_rental +#: model:product.product,uom_name:sale_rental.rent_consu_delivery_01 +#: model:product.product,uom_name:sale_rental.rent_product_product_20 +#: model:product.product,uom_name:sale_rental.rent_product_product_25 +#: model:product.template,uom_name:sale_rental.rent_consu_delivery_01_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_20_product_template +#: model:product.template,uom_name:sale_rental.rent_product_product_25_product_template +msgid "Days" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__default_code +msgid "Default Code" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Delivery" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_picking_id +msgid "Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__display_name +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__end_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "End Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_rental__end_date +msgid "" +"End Date of the Rental (extensions included), taking into account " +"all the extensions sold to the customer." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Group By" +msgstr "分組方式" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__id +msgid "ID" +msgstr "編號" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_state +msgid "In Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_move_id +msgid "Incoming Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,help:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,help:sale_rental.field_sale_rental__rental_qty +msgid "Indicate the number of items that will be rented." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product____last_update +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_uid +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__write_date +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"Missing 'Rental to Extend' on the sale order line with rental service {}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__new_rental +msgid "New Rental" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "Not enough stock !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the 'new rental' sale order line with product '{}', we should have a " +"rental service product !" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product %(product)s you are trying to sell a " +"rented product with a quantity (%(qty)s) that is different from the rented " +"quantity (%(rental_qty)s). This is not supported." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with product '%(product)s' the Product Quantity " +"(%(qty)s) should be the number of days (%(days)s) multiplied by the Rental " +"Quantity (%(rental_qty)s)." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"On the sale order line with rental service %(product)s, you are trying to " +"extend a rental with a rental quantity %(qty)s that is different from the " +"quantity of the original rental %(original_qty)s. This is not supported." +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__ordered +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Ordered" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__out +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_state +msgid "Out Move State" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__out_move_id +msgid "Outgoing Move" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_view_location_id +msgid "Parent Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_product +msgid "Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__categ_id +msgid "Product Category" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_product_template +msgid "Product Template" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__hw_product_id +msgid "Product to Rent" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "RENT-{}" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__in_picking_id +msgid "Receipt" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_ids +msgid "Related Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_id +msgid "Related Rented Product" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:stock.location.route,name:sale_rental.route_warehouse0_rental +#, python-format +msgid "Rent" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model,name:sale_rental.model_sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.view_warehouse +#, python-format +msgid "Rental" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_allowed +msgid "Rental Allowed" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_order_line__rental_type__rental_extension +msgid "Rental Extension" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__extension_order_line_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Rental Extensions" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_in_location_id +#, python-format +msgid "Rental In" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_out_location_id +#, python-format +msgid "Rental Out" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__sale_price_per_day +msgid "Rental Price per Day" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_qty +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_qty +msgid "Rental Quantity" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__rental_route_id +msgid "Rental Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_id +msgid "Rental SO" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_order_line_id +msgid "Rental SO Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rental_product_id +msgid "Rental Service" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_create_rental_product__name +msgid "Rental Service Name" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rental_service_tmpl_ids +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rental_service_tmpl_ids +#: model_terms:ir.ui.view,arch_db:sale_rental.product_normal_form_view +#: model_terms:ir.ui.view,arch_db:sale_rental.product_template_only_form_view +msgid "Rental Services" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__rental_type +msgid "Rental Type" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Rental of a {}" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_25 +#: model:product.template,name:sale_rental.rent_product_product_25_product_template +msgid "Rental of one Acoustic Bloc Screens" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_product_product_20 +#: model:product.template,name:sale_rental.rent_product_product_20_product_template +msgid "Rental of one Flipover" +msgstr "" + +#. module: sale_rental +#: model:product.product,name:sale_rental.rent_consu_delivery_01 +#: model:product.template,name:sale_rental.rent_consu_delivery_01_product_template +msgid "Rental of one Three-Seat Sofa" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__extension_rental_id +msgid "Rental to Extend" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_order_line__sell_rental_id +msgid "Rental to Sell" +msgstr "" + +#. module: sale_rental +#: model:ir.actions.act_window,name:sale_rental.sale_rental_action +#: model:ir.ui.menu,name:sale_rental.sale_rental_menu +msgid "Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_product_product__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_product_template__rented_product_tmpl_id +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__rented_product_id +msgid "Rented Product" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_tree +msgid "Return" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Sales Rentals" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Search Rentals" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_picking_id +msgid "Sell Delivery Order" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_state +msgid "Sell Move State" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_order_line_ids +#: model:stock.location.route,name:sale_rental.route_warehouse0_sell_rented_product +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +#, python-format +msgid "Sell Rented Product" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_stock_warehouse__sell_rented_product_route_id +msgid "Sell Rented Product Route" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sell_progress +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sell in progress" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__sell_move_id +msgid "Selling Move" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Selling Order Line" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields.selection,name:sale_rental.selection__sale_rental__state__sold +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Sold" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__start_date +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "Start Date" +msgstr "" + +#. module: sale_rental +#: model:ir.model.fields,field_description:sale_rental.field_sale_rental__state +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_search +msgid "State" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_rule +msgid "Stock Rule" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Input stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/stock_warehouse.py:0 +#, python-format +msgid "The Rental Output stock location is not set on the warehouse {}" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"The Rental Service of the Rental Extension you just selected is '{}' and " +"it's not the same as the Product currently selected in this Sale Order Line." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The rental product '{}' must be of type 'Service'." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "" +"The rental product '{}' must have the option 'Must Have Start and End Dates' " +"checked." +msgstr "" + +#. module: sale_rental +#: model:ir.model.constraint,message:sale_rental.constraint_sale_order_line_rental_qty_positive +msgid "The rental quantity must be positive or null." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/product.py:0 +#, python-format +msgid "The unit of measure of the rental product '{}' must be 'Day'." +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Total" +msgstr "" + +#. module: sale_rental +#: model_terms:ir.ui.view,arch_db:sale_rental.sale_rental_form +msgid "Unit of Measure" +msgstr "" + +#. module: sale_rental +#: model:ir.model,name:sale_rental.model_stock_warehouse +msgid "Warehouse" +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/wizard/create_rental_product.py:0 +#, python-format +msgid "Wrong active_model. Should never happen." +msgstr "" + +#. module: sale_rental +#: code:addons/sale_rental/models/sale_order.py:0 +#, python-format +msgid "" +"You want to rent %(rental_qty)s %(uom)s but you only have %(available_qty)s " +"%(uom)s currently available on the stock location '%(location)s' ! Make sure " +"that you get some units back in the mean time or re-supply the stock " +"location '%(location)s'." +msgstr "" diff --git a/sale_rental/models/__init__.py b/sale_rental/models/__init__.py new file mode 100644 index 00000000000..c9704fdac7c --- /dev/null +++ b/sale_rental/models/__init__.py @@ -0,0 +1,6 @@ +from . import product +from . import sale_order +from . import sale_rental +from . import stock_warehouse +from . import stock_rule +from . import stock_quant diff --git a/sale_rental/models/product.py b/sale_rental/models/product.py new file mode 100644 index 00000000000..da823574b62 --- /dev/null +++ b/sale_rental/models/product.py @@ -0,0 +1,84 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class ProductProduct(models.Model): + _inherit = "product.product" + + # Link rental service -> rented HW product + rented_product_id = fields.Many2one( + "product.product", + string="Related Rented Product", + domain=[("type", "in", ("product", "consu"))], + ) + # Link rented HW product -> rental service + rental_service_ids = fields.One2many( + "product.product", "rented_product_id", string="Related Rental Services" + ) + + @api.constrains("rented_product_id", "must_have_dates", "type", "uom_id") + def _check_rental(self): + day_uom = self.env.ref("uom.product_uom_day") + for product in self: + if product.rented_product_id: + if product.type != "service": + raise ValidationError( + _("The rental product '{}' must be of type 'Service'.").format( + product.name + ) + ) + if not product.must_have_dates: + raise ValidationError( + _( + "The rental product '{}' must have the option " + "'Must Have Start and End Dates' checked." + ).format(product.name) + ) + # In the future, we would like to support all time UoMs + # but it is more complex and requires additionnal developments + if product.uom_id != day_uom: + raise ValidationError( + _( + "The unit of measure of the rental product '{}' must " + "be 'Day'." + ).format(product.name) + ) + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + rented_product_tmpl_id = fields.Many2one( + "product.template", + compute="_compute_rented_product_tmpl_id", + string="Rented Product", + inverse="_inverse_rented_product_tmpl_id", + store=True, + ) + rental_service_tmpl_ids = fields.One2many( + "product.template", "rented_product_tmpl_id", string="Rental Services" + ) + + @api.depends("product_variant_ids", "product_variant_ids.rented_product_id") + def _compute_rented_product_tmpl_id(self): + unique_variants = self.filtered( + lambda template: len(template.product_variant_ids) == 1 + ) + for template in unique_variants: + template.rented_product_tmpl_id = ( + template.product_variant_ids.rented_product_id.product_tmpl_id.id + ) + for template in self - unique_variants: + template.rented_product_tmpl_id = False + + def _inverse_rented_product_tmpl_id(self): + for template in self: + if len(template.product_variant_ids) == 1: + template.product_variant_ids.rented_product_id = ( + template.rented_product_tmpl_id.product_variant_ids[0].id + ) diff --git a/sale_rental/models/sale_order.py b/sale_rental/models/sale_order.py new file mode 100644 index 00000000000..d7ceac60b88 --- /dev/null +++ b/sale_rental/models/sale_order.py @@ -0,0 +1,349 @@ +# Copyright 2014-2021 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +from dateutil.relativedelta import relativedelta + +from odoo import _, api, fields, models +from odoo.exceptions import UserError, ValidationError +from odoo.tools import float_compare + +logger = logging.getLogger(__name__) + + +class SaleOrder(models.Model): + _inherit = "sale.order" + + def action_cancel(self): + """ + When the user cancels a rental extension, Odoo writes the initial + end date on the return picking + """ + res = super().action_cancel() + for order in self: + for line in order.order_line.filtered( + lambda lin: lin.rental_type == "rental_extension" + and lin.extension_rental_id + ): + initial_end_date = line.extension_rental_id.end_date + line.extension_rental_id.in_move_id.write( + { + "date": initial_end_date, + } + ) + return res + + +class SaleOrderLine(models.Model): + _inherit = "sale.order.line" + + rental = fields.Boolean(default=False) + can_sell_rental = fields.Boolean(string="Can Sell from Rental") + rental_type = fields.Selection( + [("new_rental", "New Rental"), ("rental_extension", "Rental Extension")], + ) + extension_rental_id = fields.Many2one( + "sale.rental", + string="Rental to Extend", + check_company=True, + ) + rental_qty = fields.Float( + string="Rental Quantity", + digits="Product Unit of Measure", + help="Indicate the number of items that will be rented.", + ) + sell_rental_id = fields.Many2one( + "sale.rental", + string="Rental to Sell", + check_company=True, + ) + + _sql_constraints = [ + ( + "rental_qty_positive", + "CHECK(rental_qty >= 0)", + "The rental quantity must be positive or null.", + ) + ] + + @api.constrains( + "rental_type", + "extension_rental_id", + "start_date", + "end_date", + "rental_qty", + "product_uom_qty", + "product_id", + ) + def _check_sale_line_rental(self): + for line in self: + if line.rental_type == "rental_extension": + if not line.extension_rental_id: + raise ValidationError( + _( + "Missing 'Rental to Extend' on the sale order line " + "with rental service {}" + ).format(line.product_id.display_name) + ) + + if line.rental_qty != line.extension_rental_id.rental_qty: + raise ValidationError( + _( + "On the sale order line with rental service %(product)s, " + "you are trying to extend a rental with a rental " + "quantity %(qty)s that is different from the quantity " + "of the original rental %(original_qty)s. This is not " + "supported." + ) + % { + "product": line.product_id.display_name, + "qty": line.rental_qty, + "original_qty": line.extension_rental_id.rental_qty, + } + ) + if line.rental_type in ("new_rental", "rental_extension"): + if not line.product_id.rented_product_id: + raise ValidationError( + _( + "On the 'new rental' sale order line with product " + "'{}', we should have a rental service product !" + ).format(line.product_id.display_name) + ) + if line.product_uom_qty != line.rental_qty * line.number_of_days: + raise ValidationError( + _( + "On the sale order line with product '%(product)s' " + "the Product Quantity (%(qty)s) should be the " + "number of days (%(days)s) " + "multiplied by the Rental Quantity (%(rental_qty)s)." + ) + % { + "product": line.product_id.display_name, + "qty": line.product_uom_qty, + "days": line.number_of_days, + "rental_qty": line.rental_qty, + } + ) + # the module sale_start_end_dates checks that, when we have + # must_have_dates, we have start + end dates + elif line.sell_rental_id: + if line.product_uom_qty != line.sell_rental_id.rental_qty: + raise ValidationError( + _( + "On the sale order line with product %(product)s " + "you are trying to sell a rented product with a " + "quantity (%(qty)s) that is different from the rented " + "quantity (%(rental_qty)s). This is not supported." + ) + % { + "product": line.product_id.display_name, + "qty": line.product_uom_qty, + "rental_qty": line.rental_qty, + } + ) + + def _prepare_rental(self): + self.ensure_one() + return {"start_order_line_id": self.id} + + def _prepare_new_rental_procurement_values(self, group=False): + vals = { + "company_id": self.order_id.company_id, + "group_id": group, + "sale_line_id": self.id, + "date_planned": self.start_date, + "route_ids": self.route_id or self.order_id.warehouse_id.rental_route_id, + "warehouse_id": self.order_id.warehouse_id or False, + "partner_id": self.order_id.partner_shipping_id.id, + } + return vals + + def _run_rental_procurement(self, vals): + self.ensure_one() + procurements = [ + self.env["procurement.group"].Procurement( + self.product_id.rented_product_id, + self.rental_qty, + self.product_id.rented_product_id.uom_id, + self.order_id.warehouse_id.rental_out_location_id, + self.name, + self.order_id.name, + self.order_id.company_id, + vals, + ) + ] + self.env["procurement.group"].run(procurements) + + def _action_launch_stock_rule(self, previous_product_uom_qty=False): + errors = [] + for line in self: + if line.rental_type == "new_rental" and line.product_id.rented_product_id: + group = line.order_id.procurement_group_id + if not group: + group = self.env["procurement.group"].create( + { + "name": line.order_id.name, + "move_type": line.order_id.picking_policy, + "sale_id": line.order_id.id, + "partner_id": line.order_id.partner_shipping_id.id, + } + ) + line.order_id.procurement_group_id = group + + vals = line._prepare_new_rental_procurement_values(group) + try: + line._run_rental_procurement(vals) + except UserError as error: + errors.append(error.name) + + self.env["sale.rental"].create(line._prepare_rental()) + + elif ( + line.rental_type == "rental_extension" + and line.product_id.rented_product_id + and line.extension_rental_id + and line.extension_rental_id.in_move_id + ): + end_datetime = fields.Datetime.to_datetime(line.end_date) + line.extension_rental_id.in_move_id.write( + { + "date": end_datetime, + } + ) + elif line.sell_rental_id: + if line.sell_rental_id.out_move_id.state != "done": + raise UserError( + _( + "Cannot sell the rental {} because it has " + "not been delivered" + ).format(line.sell_rental_id.display_name) + ) + line.sell_rental_id.in_move_id._action_cancel() + + if errors: + raise UserError("\n".join(errors)) + + # call super() at the end, to make procurement_jit work + res = super()._action_launch_stock_rule( + previous_product_uom_qty=previous_product_uom_qty + ) + return res + + def _prepare_procurement_values(self, group_id=False): + """ + Overriding this function to changethe route + on selling rental product + """ + vals = super()._prepare_procurement_values(group_id=group_id) + if self.sell_rental_id: + vals.update( + {"route_ids": self.order_id.warehouse_id.sell_rented_product_route_id} + ) + return vals + + @api.onchange("product_id", "rental_qty") + def rental_product_id_change(self): + res = {} + if self.product_id: + if self.product_id.rented_product_id: + self.rental = True + self.can_sell_rental = False + self.sell_rental_id = False + if not self.rental_type: + self.rental_type = "new_rental" + elif ( + self.rental_type == "new_rental" + and self.rental_qty + and self.order_id.warehouse_id + ): + product_uom = self.product_id.rented_product_id.uom_id + warehouse = self.order_id.warehouse_id + rental_in_location = warehouse.rental_in_location_id + rented_product_ctx = self.with_context( + location=rental_in_location.id + ).product_id.rented_product_id + in_location_available_qty = ( + rented_product_ctx.qty_available + - rented_product_ctx.outgoing_qty + ) + compare_qty = float_compare( + in_location_available_qty, + self.rental_qty, + precision_rounding=product_uom.rounding, + ) + if compare_qty == -1: + res["warning"] = { + "title": _("Not enough stock !"), + "message": _( + "You want to rent %(rental_qty)s %(uom)s but you only " + "have %(available_qty)s %(uom)s currently available on " + "the stock location '%(location)s' ! Make sure that " + "you get some units back in the mean time or " + "re-supply the stock location '%(location)s'." + ) + % { + "rental_qty": self.rental_qty, + "uom": product_uom.name, + "available_qty": in_location_available_qty, + "location": rental_in_location.name, + }, + } + elif self.product_id.rental_service_ids: + self.can_sell_rental = True + self.rental = False + self.rental_type = False + self.rental_qty = 0 + self.extension_rental_id = False + else: + self.rental_type = False + self.rental = False + self.rental_qty = 0 + self.extension_rental_id = False + self.can_sell_rental = False + self.sell_rental_id = False + else: + self.rental_type = False + self.rental = False + self.rental_qty = 0 + self.extension_rental_id = False + self.can_sell_rental = False + self.sell_rental_id = False + return res + + @api.onchange("extension_rental_id") + def extension_rental_id_change(self): + if ( + self.product_id + and self.rental_type == "rental_extension" + and self.extension_rental_id + ): + if self.extension_rental_id.rental_product_id != self.product_id: + raise UserError( + _( + "The Rental Service of the Rental Extension you just " + "selected is '{}' and it's not the same as the " + "Product currently selected in this Sale Order Line." + ).format(self.extension_rental_id.rental_product_id.display_name) + ) + initial_end_date = self.extension_rental_id.end_date + self.start_date = initial_end_date + relativedelta(days=1) + self.rental_qty = self.extension_rental_id.rental_qty + + @api.onchange("sell_rental_id") + def sell_rental_id_change(self): + if self.sell_rental_id: + self.product_uom_qty = self.sell_rental_id.rental_qty + + @api.onchange("rental_qty", "number_of_days", "product_id") + def rental_qty_number_of_days_change(self): + if self.product_id.rented_product_id: + qty = self.rental_qty * self.number_of_days + self.product_uom_qty = qty + + @api.onchange("rental_type") + def rental_type_change(self): + if self.rental_type == "new_rental": + self.extension_rental_id = False diff --git a/sale_rental/models/sale_rental.py b/sale_rental/models/sale_rental.py new file mode 100644 index 00000000000..f4bb52cc95e --- /dev/null +++ b/sale_rental/models/sale_rental.py @@ -0,0 +1,224 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +from odoo import api, fields, models + +logger = logging.getLogger(__name__) + + +class SaleRental(models.Model): + _name = "sale.rental" + _description = "Rental" + _order = "id desc" + + @api.depends( + "start_order_line_id", + "extension_order_line_ids.end_date", + "extension_order_line_ids.state", + "start_order_line_id.end_date", + ) + def name_get(self): + res = [] + for rental in self: + name = "[{}] {} - {} > {} ({})".format( + rental.partner_id.display_name, + rental.rented_product_id.display_name, + rental.start_date, + rental.end_date, + rental._fields["state"].convert_to_export(rental.state, rental), + ) + res.append((rental.id, name)) + return res + + @api.depends( + "sell_order_line_ids.move_ids.state", + "start_order_line_id.order_id.state", + "start_order_line_id.move_ids.state", + "start_order_line_id.move_ids.move_dest_ids.state", + ) + def _compute_move_and_state(self): + for rental in self: + in_move = False + out_move = False + sell_move = False + state = False + if rental.start_order_line_id: + for move in rental.start_order_line_id.move_ids: + if move.state != "cancel" and move.picking_code == "outgoing": + out_move = move + if move.move_dest_ids: + out_move = move + in_move = move.move_dest_ids[0] + if ( + rental.sell_order_line_ids + and rental.sell_order_line_ids[0].move_ids + ): + sell_move = rental.sell_order_line_ids[0].move_ids[-1] + state = "ordered" + if out_move and out_move.state == "done": + state = "out" + if in_move: + if in_move.state == "done": + state = "in" + elif in_move.state == "cancel" and sell_move: + state = "sell_progress" + if sell_move.state == "done": + state = "sold" + elif sell_move: + state = "sell_progress" + if sell_move.state == "done": + state = "sold" + elif sell_move.state == "cancel": + state = "out" + if rental.start_order_line_id.state == "cancel": + state = "cancel" + rental.in_move_id = in_move + rental.out_move_id = out_move + rental.state = state + rental.sell_move_id = sell_move + + @api.depends( + "extension_order_line_ids.end_date", + "extension_order_line_ids.state", + "start_order_line_id.end_date", + ) + def _compute_end_date(self): + for rental in self: + end_date = False + if rental.start_order_line_id: + end_date = rental.start_order_line_id.end_date + + for extension in rental.extension_order_line_ids: + if ( + extension.state in ("sale", "done") + and end_date + and extension.end_date + and extension.end_date > end_date + ): + end_date = extension.end_date + rental.end_date = end_date + + start_order_line_id = fields.Many2one( + "sale.order.line", string="Rental SO Line", readonly=True + ) + start_date = fields.Date( + related="start_order_line_id.start_date", readonly=True, store=True + ) + rental_product_id = fields.Many2one( + "product.product", + related="start_order_line_id.product_id", + string="Rental Service", + readonly=True, + store=True, + ) + rented_product_id = fields.Many2one( + "product.product", + related="start_order_line_id.product_id.rented_product_id", + string="Rented Product", + readonly=True, + store=True, + ) + rental_qty = fields.Float( + related="start_order_line_id.rental_qty", readonly=True, store=True + ) + start_order_id = fields.Many2one( + "sale.order", + related="start_order_line_id.order_id", + string="Rental SO", + readonly=True, + store=True, + ) + company_id = fields.Many2one( + "res.company", + related="start_order_line_id.company_id", + string="Company", + readonly=True, + store=True, + ) + partner_id = fields.Many2one( + "res.partner", + related="start_order_line_id.order_id.partner_id", + string="Customer", + readonly=True, + store=True, + ) + out_move_id = fields.Many2one( + "stock.move", + compute="_compute_move_and_state", + string="Outgoing Move", + readonly=True, + store=True, + ) + in_move_id = fields.Many2one( + "stock.move", + compute="_compute_move_and_state", + string="Incoming Move", + readonly=True, + store=True, + ) + out_state = fields.Selection( + related="out_move_id.state", string="Out Move State", readonly=True + ) + in_state = fields.Selection( + related="in_move_id.state", string="In Move State", readonly=True + ) + out_picking_id = fields.Many2one( + "stock.picking", + related="out_move_id.picking_id", + string="Delivery Order", + readonly=True, + ) + in_picking_id = fields.Many2one( + "stock.picking", + related="in_move_id.picking_id", + string="Receipt", + readonly=True, + ) + extension_order_line_ids = fields.One2many( + "sale.order.line", + "extension_rental_id", + string="Rental Extensions", + readonly=True, + ) + sell_order_line_ids = fields.One2many( + "sale.order.line", "sell_rental_id", string="Sell Rented Product", readonly=True + ) + sell_move_id = fields.Many2one( + "stock.move", + compute="_compute_move_and_state", + string="Selling Move", + readonly=True, + store=True, + ) + sell_state = fields.Selection( + related="sell_move_id.state", string="Sell Move State", readonly=True + ) + sell_picking_id = fields.Many2one( + "stock.picking", + related="sell_move_id.picking_id", + string="Sell Delivery Order", + readonly=True, + ) + end_date = fields.Date( + compute="_compute_end_date", + store=True, + help="End Date of the Rental (extensions included), \ + taking into account all the extensions sold to the customer.", + ) + state = fields.Selection( + [ + ("ordered", "Ordered"), + ("out", "Out"), + ("sell_progress", "Sell in progress"), + ("sold", "Sold"), + ("in", "Back In"), + ("cancel", "Cancelled"), + ], + compute="_compute_move_and_state", + readonly=True, + store=True, + ) diff --git a/sale_rental/models/stock_quant.py b/sale_rental/models/stock_quant.py new file mode 100644 index 00000000000..60a9adf3190 --- /dev/null +++ b/sale_rental/models/stock_quant.py @@ -0,0 +1,28 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class StockInventory(models.Model): + _inherit = "stock.quant" + + @api.model + def create_demo_and_validate(self): + rental_in_loc = self.env.ref("stock.warehouse0").rental_in_location_id + products = [ + ("product.consu_delivery_01", 56), + ("product.product_product_20", 46), + ("product.product_product_25", 2), + ] + for product_xmlid, qty in products: + product = self.env.ref(product_xmlid) + self.with_context(inventory_mode=True).create( + { + "product_id": product.id, + "inventory_quantity": qty, + "location_id": rental_in_loc.id, + } + ).action_apply_inventory() diff --git a/sale_rental/models/stock_rule.py b/sale_rental/models/stock_rule.py new file mode 100644 index 00000000000..21ac6d32e30 --- /dev/null +++ b/sale_rental/models/stock_rule.py @@ -0,0 +1,24 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class StockRule(models.Model): + _inherit = "stock.rule" + + def _push_prepare_move_copy_values(self, move_to_copy, new_date): + """Inherit to write the end date of the rental on the return move""" + res = super()._push_prepare_move_copy_values(move_to_copy, new_date) + location_id = res.get("location_id", False) + if ( + location_id + and location_id == move_to_copy.warehouse_id.rental_out_location_id.id + and move_to_copy.sale_line_id + and move_to_copy.sale_line_id.rental_type == "new_rental" + ): + rental_end_date = move_to_copy.sale_line_id.end_date + res["date"] = fields.Datetime.to_datetime(rental_end_date) + return res diff --git a/sale_rental/models/stock_warehouse.py b/sale_rental/models/stock_warehouse.py new file mode 100644 index 00000000000..a9a0557ef22 --- /dev/null +++ b/sale_rental/models/stock_warehouse.py @@ -0,0 +1,251 @@ +# Copyright 2014-2021 Akretion France (http://www.akretion.com) +# @author Alexis de Lattre +# Copyright 2016-2021 Sodexis (http://sodexis.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +from odoo import _, api, fields, models +from odoo.exceptions import UserError + +logger = logging.getLogger(__name__) + + +class StockWarehouse(models.Model): + _inherit = "stock.warehouse" + + rental_view_location_id = fields.Many2one( + "stock.location", + "Parent Rental", + check_company=True, + domain="[('usage', '=', 'view'), ('company_id', '=', company_id)]", + ) + rental_in_location_id = fields.Many2one( + "stock.location", + "Rental In", + check_company=True, + domain="[('usage', '=', 'internal'), ('company_id', '=', company_id)]", + ) + rental_out_location_id = fields.Many2one( + "stock.location", + "Rental Out", + check_company=True, + domain="[('usage', '=', 'internal'), ('company_id', '=', company_id)]", + ) + rental_allowed = fields.Boolean() + rental_route_id = fields.Many2one("stock.route", string="Rental Route") + sell_rented_product_route_id = fields.Many2one( + "stock.route", string="Sell Rented Product Route" + ) + + @api.onchange("rental_allowed") + def _onchange_rental_allowed(self): + if not self.rental_allowed: + self.rental_view_location_id = False + self.rental_in_location_id = False + self.rental_out_location_id = False + self.rental_route_id = False + self.sell_rented_product_route_id = False + + def _get_rental_push_pull_rules(self): + self.ensure_one() + route_obj = self.env["stock.route"] + try: + rental_route = self.env.ref("sale_rental.route_warehouse0_rental") + except Exception: + rental_routes = route_obj.search([("name", "=", _("Rent"))]) + rental_route = rental_routes and rental_routes[0] or False + if not rental_route: + raise UserError(_("Can't find any generic 'Rent' route.")) + try: + sell_rented_product_route = self.env.ref( + "sale_rental.route_warehouse0_sell_rented_product" + ) + except Exception: + sell_rented_product_routes = route_obj.search( + [("name", "=", _("Sell Rented Product"))] + ) + sell_rented_product_route = ( + sell_rented_product_routes and sell_rented_product_routes[0] or False + ) + if not sell_rented_product_route: + raise UserError(_("Can't find any generic 'Sell Rented Product' route.")) + if not self.rental_in_location_id: + raise UserError( + _( + "The Rental Input stock location is not set on the " "warehouse {}" + ).format(self.name) + ) + if not self.rental_out_location_id: + raise UserError( + _( + "The Rental Output stock location is not set on the " "warehouse {}" + ).format(self.name) + ) + rental_pull_rule = { + "name": self._format_rulename( + self.rental_in_location_id, self.rental_out_location_id, "" + ), + "location_src_id": self.rental_in_location_id.id, + "location_dest_id": self.rental_out_location_id.id, + "route_id": rental_route.id, + "action": "pull", + "picking_type_id": self.out_type_id.id, + "warehouse_id": self.id, + "company_id": self.company_id.id, + } + rental_push_rule = { + "name": self._format_rulename( + self.rental_out_location_id, self.rental_in_location_id, "" + ), + "location_src_id": self.rental_out_location_id.id, + "location_dest_id": self.rental_in_location_id.id, + "route_id": rental_route.id, + "action": "push", + "picking_type_id": self.in_type_id.id, + "warehouse_id": self.id, + "company_id": self.company_id.id, + } + customer_loc = self.env.ref("stock.stock_location_customers") + sell_rented_product_pull_rule = { + "name": self._format_rulename( + self.rental_out_location_id, customer_loc, "" + ), + "location_src_id": self.rental_out_location_id.id, + "location_dest_id": customer_loc.id, + "route_id": sell_rented_product_route.id, + "action": "pull", + "picking_type_id": self.out_type_id.id, + "warehouse_id": self.id, + "company_id": self.company_id.id, + } + res = [ + rental_pull_rule, + rental_push_rule, + sell_rented_product_pull_rule, + ] + return res + + def _create_rental_locations(self): + slo = self.env["stock.location"] + for wh in self: + # create stock locations + if not wh.rental_view_location_id: + view_loc = slo.with_context(lang="en_US").search( + [ + ("name", "ilike", "Rental"), + ("location_id", "=", wh.view_location_id.id), + ("usage", "=", "view"), + ("company_id", "=", self.company_id.id), + ], + limit=1, + ) + if not view_loc: + view_loc = slo.with_context(lang="en_US").create( + { + "name": "Rental", + "location_id": wh.view_location_id.id, + "usage": "view", + "company_id": self.company_id.id, + } + ) + slo.browse(view_loc.id).name = _("Rental") + logger.debug( + "New view rental stock location created ID %d", view_loc.id + ) + wh.rental_view_location_id = view_loc.id + if not wh.rental_in_location_id: + in_loc = slo.with_context(lang="en_US").search( + [ + ("name", "ilike", "Rental In"), + ("location_id", "=", wh.rental_view_location_id.id), + ("company_id", "=", self.company_id.id), + ], + limit=1, + ) + if not in_loc: + in_loc = slo.with_context(lang="en_US").create( + { + "name": "Rental In", + "location_id": wh.rental_view_location_id.id, + "company_id": self.company_id.id, + } + ) + slo.browse(in_loc.id).name = _("Rental In") + logger.debug( + "New in rental stock location created ID %d", in_loc.id + ) + wh.rental_in_location_id = in_loc.id + if not wh.rental_out_location_id: + out_loc = slo.with_context(lang="en_US").search( + [ + ("name", "ilike", "Rental Out"), + ("location_id", "=", wh.rental_view_location_id.id), + ("company_id", "=", self.company_id.id), + ], + limit=1, + ) + if not out_loc: + out_loc = slo.with_context(lang="en_US").create( + { + "name": "Rental Out", + "location_id": wh.rental_view_location_id.id, + "company_id": self.company_id.id, + } + ) + slo.browse(out_loc.id).name = _("Rental Out") + logger.debug( + "New out rental stock location created ID %d", out_loc.id + ) + wh.rental_out_location_id = out_loc.id + + def write(self, vals): + if "rental_allowed" in vals: + rental_route = self.env.ref("sale_rental.route_warehouse0_rental") + sell_rented_route = self.env.ref( + "sale_rental.route_warehouse0_sell_rented_product" + ) + if vals.get("rental_allowed"): + self._create_rental_locations() + self.write( + { + "route_ids": [(4, rental_route.id)], + "rental_route_id": rental_route.id, + "sell_rented_product_route_id": sell_rented_route.id, + } + ) + rental_rules = self.env["stock.rule"].search( + [ + ("route_id", "in", [rental_route.id, sell_rented_route.id]), + ("active", "=", False), + ] + ) + if rental_rules: + rental_rules.write({"active": True}) + else: + for rule_vals in self._get_rental_push_pull_rules(): + self.env["stock.rule"].create(rule_vals) + else: + for wh in self: + rules_to_archive = self.env["stock.rule"].search( + [ + ( + "route_id", + "in", + ( + wh.rental_route_id.id, + wh.sell_rented_product_route_id.id, + ), + ), + ("company_id", "=", wh.company_id.id), + ] + ) + rules_to_archive.write({"active": False}) + wh.write( + { + "route_ids": [(3, rental_route.id)], + "rental_route_id": False, + "sell_rented_product_route_id": False, + } + ) + return super().write(vals) diff --git a/sale_rental/pyproject.toml b/sale_rental/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/sale_rental/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/sale_rental/readme/CONFIGURE.md b/sale_rental/readme/CONFIGURE.md new file mode 100644 index 00000000000..6125e49cd8d --- /dev/null +++ b/sale_rental/readme/CONFIGURE.md @@ -0,0 +1,11 @@ +In the *Products* menu, on the form view of a stockable product or +consumable, in the *Sales* tab, there is a button *Create Rental +Service* which starts a wizard to generate the corresponding rental +service. + +In the menu *Inventory \> Configuration \> Warehouse Management \> +Warehouses*, on the form view of the warehouse, in the *Technical +Information* tab, you will see two additional stock locations: *Rental +In* (stock of products to rent) and *Rental Out* (products currently +rented). In the *Warehouse Configuration* tab, make sure that the option +*Rental Allowed* is checked. diff --git a/sale_rental/readme/CONTRIBUTORS.md b/sale_rental/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..2bb4202ebd3 --- /dev/null +++ b/sale_rental/readme/CONTRIBUTORS.md @@ -0,0 +1,4 @@ +- Alexis de Lattre \<\> +- Sodexis \<\> +- Danh Vo \<\> +- Kiril Vangelovski \<\> diff --git a/sale_rental/readme/DESCRIPTION.md b/sale_rental/readme/DESCRIPTION.md new file mode 100644 index 00000000000..afe3a4ce372 --- /dev/null +++ b/sale_rental/readme/DESCRIPTION.md @@ -0,0 +1,5 @@ +With this module, you can rent products with Odoo. This module supports: + +- regular rentals. +- rental extensions. +- sale of rented products. diff --git a/sale_rental/readme/ROADMAP.md b/sale_rental/readme/ROADMAP.md new file mode 100644 index 00000000000..08848dd06bb --- /dev/null +++ b/sale_rental/readme/ROADMAP.md @@ -0,0 +1,7 @@ +This module has the following limitations: + +- No support for planning/agenda of the rented products (i.e. you can't + rely on this module to check your capacity to rent a product for the + selected dates when you create a quote) +- The unit of measure of the rental services must be *Day* (the rental + per hour / per week / per month is not supported for the moment) diff --git a/sale_rental/readme/USAGE.md b/sale_rental/readme/USAGE.md new file mode 100644 index 00000000000..25338fd9a46 --- /dev/null +++ b/sale_rental/readme/USAGE.md @@ -0,0 +1,14 @@ +In a sale order line (form view, not tree view), if you select a rental +service, you can: + +- create a new rental with a start date and an end date: when the sale + order is confirmed, it will generate a delivery order and an incoming + shipment. +- extend an existing rental: the incoming shipment will be postponed to + the end date of the extension. + +In a sale order line, if you select a product that has a corresponding +rental service, you can decide to sell the rented product that the +customer already has. If the sale order is confirmed, the incoming +shipment will be cancelled and a new delivery order will be created with +a stock move from *Rental Out* to *Customers*. diff --git a/sale_rental/security/ir.model.access.csv b/sale_rental/security/ir.model.access.csv new file mode 100644 index 00000000000..5cbd96db35b --- /dev/null +++ b/sale_rental/security/ir.model.access.csv @@ -0,0 +1,6 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_sale_rental_user,Read-Write-Create access on sale.rental to Sale User,model_sale_rental,sales_team.group_sale_salesman,1,1,1,0 +access_sale_rental_stock_user,Read access on sale.rental to Stock User,model_sale_rental,stock.group_stock_user,1,0,0,0 +access_sale_rental_manager,Full access on sale.rental to Sale Manager,model_sale_rental,sales_team.group_sale_manager,1,1,1,1 +access_create_rental_product_stock,Wizard create.rental.product for Stock manager,model_create_rental_product,stock.group_stock_manager,1,1,1,1 +access_create_rental_product_sale,Wizard create.rental.product for Sale manager,model_create_rental_product,sales_team.group_sale_manager,1,1,1,1 diff --git a/sale_rental/security/sale_rental_security.xml b/sale_rental/security/sale_rental_security.xml new file mode 100644 index 00000000000..05a52c09502 --- /dev/null +++ b/sale_rental/security/sale_rental_security.xml @@ -0,0 +1,22 @@ + + + + + + Sale rental multi-company + + ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] + + + + + + + diff --git a/sale_rental/static/description/icon.png b/sale_rental/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/sale_rental/static/description/icon.png differ diff --git a/sale_rental/static/description/index.html b/sale_rental/static/description/index.html new file mode 100644 index 00000000000..f071412daf9 --- /dev/null +++ b/sale_rental/static/description/index.html @@ -0,0 +1,478 @@ + + + + + +Sale Rental + + + +
+

Sale Rental

+ + +

Beta License: AGPL-3 OCA/sale-workflow Translate me on Weblate Try me on Runboat

+

With this module, you can rent products with Odoo. This module supports:

+
    +
  • regular rentals.
  • +
  • rental extensions.
  • +
  • sale of rented products.
  • +
+

Table of contents

+ +
+

Configuration

+

In the Products menu, on the form view of a stockable product or +consumable, in the Sales tab, there is a button Create Rental +Service which starts a wizard to generate the corresponding rental +service.

+

In the menu Inventory > Configuration > Warehouse Management > +Warehouses, on the form view of the warehouse, in the Technical +Information tab, you will see two additional stock locations: Rental +In (stock of products to rent) and Rental Out (products currently +rented). In the Warehouse Configuration tab, make sure that the option +Rental Allowed is checked.

+
+
+

Usage

+

In a sale order line (form view, not tree view), if you select a rental +service, you can:

+
    +
  • create a new rental with a start date and an end date: when the sale +order is confirmed, it will generate a delivery order and an incoming +shipment.
  • +
  • extend an existing rental: the incoming shipment will be postponed to +the end date of the extension.
  • +
+

In a sale order line, if you select a product that has a corresponding +rental service, you can decide to sell the rented product that the +customer already has. If the sale order is confirmed, the incoming +shipment will be cancelled and a new delivery order will be created with +a stock move from Rental Out to Customers.

+
+
+

Known issues / Roadmap

+

This module has the following limitations:

+
    +
  • No support for planning/agenda of the rented products (i.e. you can’t +rely on this module to check your capacity to rent a product for the +selected dates when you create a quote)
  • +
  • The unit of measure of the rental services must be Day (the rental +per hour / per week / per month is not supported for the moment)
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
  • Sodexis
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

alexis-via

+

This module is part of the OCA/sale-workflow project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/sale_rental/tests/__init__.py b/sale_rental/tests/__init__.py new file mode 100644 index 00000000000..ef39efe08c1 --- /dev/null +++ b/sale_rental/tests/__init__.py @@ -0,0 +1 @@ +from . import test_sale_rental diff --git a/sale_rental/tests/test_sale_rental.py b/sale_rental/tests/test_sale_rental.py new file mode 100644 index 00000000000..2f7aa498c2e --- /dev/null +++ b/sale_rental/tests/test_sale_rental.py @@ -0,0 +1,60 @@ +from odoo.exceptions import UserError +from odoo.tests import Form +from odoo.tests.common import TransactionCase + + +class TestSaleRental(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.test_rental_prod = cls.env.ref("sale_rental.rent_product_product_25") + cls.test_partner = cls.env["res.partner"].create({"name": "Foo"}) + cls.rental_in_loc = cls.env.ref("stock.warehouse0").rental_in_location_id + cls.rental_out_loc = cls.env.ref("stock.warehouse0").rental_out_location_id + + def test_main(self): + # Rent a product + so_form = Form(self.env["sale.order"]) + so_form.partner_id = self.test_partner + with so_form.order_line.new() as line: + line.product_id = self.test_rental_prod + line.start_date = "2022-01-01" + line.end_date = "2022-01-10" + line.rental_qty = 1 + so = so_form.save() + sol = so.order_line + self.assertEqual(sol.price_subtotal, 60) + so.action_confirm() + self.assertEqual(len(so.picking_ids), 2) + rental_out_pick = so.picking_ids.filtered( + lambda p: p.location_id == self.rental_in_loc + and p.location_dest_id == self.rental_out_loc + ) + self.assertTrue(rental_out_pick) + rental_in_pick = so.picking_ids.filtered( + lambda p: p.location_id == self.rental_out_loc + and p.location_dest_id == self.rental_in_loc + ) + self.assertTrue(rental_in_pick) + rental = self.env["sale.rental"].search([("start_order_line_id", "=", sol.id)]) + self.assertTrue(rental) + + # Sell the same product/rental + so_form = Form(self.env["sale.order"]) + so_form.partner_id = self.test_partner + with so_form.order_line.new() as line: + line.product_id = self.test_rental_prod.rented_product_id + line.product_uom_qty = 1 + line.sell_rental_id = rental + so = so_form.save() + sol = so.order_line + # Raises an error because rented product is not sent yet + with self.assertRaises(UserError): + so.action_confirm() + # Confirm the rental delivery and check the return which should + # be cancelled + rental_out_pick.action_assign() + rental_out_pick.action_set_quantities_to_reservation() + rental_out_pick.button_validate() + so.action_confirm() + self.assertEqual(rental_in_pick.state, "cancel") diff --git a/sale_rental/views/product.xml b/sale_rental/views/product.xml new file mode 100644 index 00000000000..2481a883ee8 --- /dev/null +++ b/sale_rental/views/product.xml @@ -0,0 +1,76 @@ + + + + + + + rental.product.product.form + product.product + + + + + + + + +