mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 00:12:03 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
51
odoo-bringout-oca-ocb-website_sale_digital/README.md
Normal file
51
odoo-bringout-oca-ocb-website_sale_digital/README.md
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# Digital Products
|
||||
|
||||
|
||||
Sell e-goods in your eCommerce store (e.g. webinars, articles, e-books, video tutorials).
|
||||
To do so, create the product and attach the file to share via the *Files* button of the product form.
|
||||
Once the order is paid, the file is made available in the order confirmation page and in the customer portal.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_digital
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- attachment_indexation
|
||||
- website_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Digital Products
|
||||
- **Version**: 0.1
|
||||
- **Category**: Website/Website
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_sale_digital`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Website_sale_digital Module - website_sale_digital
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for website_sale_digital. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [attachment_indexation](../../odoo-bringout-oca-ocb-attachment_indexation)
|
||||
- [website_sale](../../odoo-bringout-oca-ocb-website_sale)
|
||||
4
odoo-bringout-oca-ocb-website_sale_digital/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-website_sale_digital/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon website_sale_digital or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_digital"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-website_sale_digital"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-website_sale_digital/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-website_sale_digital/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in website_sale_digital.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class product_product
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: website_sale_digital. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon website_sale_digital
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-website_sale_digital/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-website_sale_digital/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_sale_digital
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
43
odoo-bringout-oca-ocb-website_sale_digital/pyproject.toml
Normal file
43
odoo-bringout-oca-ocb-website_sale_digital/pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-website_sale_digital"
|
||||
version = "16.0.0"
|
||||
description = "Digital Products - Sell digital products in your eCommerce store"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-attachment_indexation>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-website_sale>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["website_sale_digital"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
{
|
||||
'name': 'Digital Products',
|
||||
'version': '0.1',
|
||||
'summary': 'Sell digital products in your eCommerce store',
|
||||
'category': 'Website/Website',
|
||||
'description': """
|
||||
Sell e-goods in your eCommerce store (e.g. webinars, articles, e-books, video tutorials).
|
||||
To do so, create the product and attach the file to share via the *Files* button of the product form.
|
||||
Once the order is paid, the file is made available in the order confirmation page and in the customer portal.
|
||||
""",
|
||||
'depends': [
|
||||
'attachment_indexation',
|
||||
'website_sale',
|
||||
],
|
||||
'installable': True,
|
||||
'data': [
|
||||
'views/website_sale_digital.xml',
|
||||
'views/website_sale_digital_view.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/product_demo.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
import io
|
||||
import os
|
||||
import mimetypes
|
||||
|
||||
from odoo import http
|
||||
from odoo.exceptions import AccessError
|
||||
from odoo.http import request
|
||||
from odoo.addons.sale.controllers.portal import CustomerPortal
|
||||
|
||||
|
||||
class WebsiteSaleDigital(CustomerPortal):
|
||||
orders_page = '/my/orders'
|
||||
|
||||
@http.route([
|
||||
'/my/orders/<int:order_id>',
|
||||
], type='http', auth='public', website=True)
|
||||
def portal_order_page(self, order_id=None, **post):
|
||||
response = super(WebsiteSaleDigital, self).portal_order_page(order_id=order_id, **post)
|
||||
if not 'sale_order' in response.qcontext:
|
||||
return response
|
||||
order = response.qcontext['sale_order']
|
||||
invoiced_lines = request.env['account.move.line'].sudo().search([('move_id', 'in', order.invoice_ids.ids), ('move_id.payment_state', 'in', ['paid', 'in_payment'])])
|
||||
products = invoiced_lines.mapped('product_id') | order.order_line.filtered(lambda r: not r.price_subtotal).mapped('product_id')
|
||||
if not order.amount_total:
|
||||
# in that case, we should add all download links to the products
|
||||
# since there is nothing to pay, so we shouldn't wait for an invoice
|
||||
products = order.order_line.mapped('product_id')
|
||||
|
||||
Attachment = request.env['ir.attachment'].sudo()
|
||||
purchased_products_attachments = {}
|
||||
for product in products.filtered(lambda p: p.attachment_count):
|
||||
# Search for product attachments
|
||||
product_id = product.id
|
||||
template = product.product_tmpl_id
|
||||
att = Attachment.sudo().search_read(
|
||||
domain=['|', '&', ('res_model', '=', product._name), ('res_id', '=', product_id), '&', ('res_model', '=', template._name), ('res_id', '=', template.id), ('product_downloadable', '=', True)],
|
||||
fields=['name', 'write_date'],
|
||||
order='write_date desc',
|
||||
)
|
||||
|
||||
# Ignore products with no attachments
|
||||
if not att:
|
||||
continue
|
||||
|
||||
purchased_products_attachments[product_id] = att
|
||||
|
||||
response.qcontext.update({
|
||||
'digital_attachments': purchased_products_attachments,
|
||||
})
|
||||
return response
|
||||
|
||||
@http.route([
|
||||
'/my/download',
|
||||
], type='http', auth='public')
|
||||
def download_attachment(self, attachment_id):
|
||||
# Check if this is a valid attachment id
|
||||
attachment = request.env['ir.attachment'].sudo().search_read(
|
||||
[('id', '=', int(attachment_id))],
|
||||
["name", "datas", "mimetype", "res_model", "res_id", "type", "url"]
|
||||
)
|
||||
|
||||
if attachment:
|
||||
attachment = attachment[0]
|
||||
else:
|
||||
return request.redirect(self.orders_page)
|
||||
|
||||
try:
|
||||
request.env['ir.attachment'].browse(attachment_id).check('read')
|
||||
except AccessError: # The user does not have read access on the attachment.
|
||||
# Check if access can be granted through their purchases.
|
||||
res_model = attachment['res_model']
|
||||
res_id = attachment['res_id']
|
||||
digital_purchases = request.env['account.move.line'].get_digital_purchases()
|
||||
if res_model == 'product.product':
|
||||
purchased_product_ids = digital_purchases
|
||||
elif res_model == 'product.template':
|
||||
purchased_product_ids = request.env['product.product'].sudo().browse(
|
||||
digital_purchases
|
||||
).mapped('product_tmpl_id').ids
|
||||
else:
|
||||
purchased_product_ids = [] # The purchases must be related to products.
|
||||
if res_id not in purchased_product_ids: # No related purchase was found.
|
||||
return request.redirect(self.orders_page) # Prevent the user from downloading.
|
||||
|
||||
# The user has bought the product, or has the rights to the attachment
|
||||
if attachment["type"] == "url":
|
||||
if attachment["url"]:
|
||||
return request.redirect(attachment["url"])
|
||||
else:
|
||||
return request.not_found()
|
||||
elif attachment["datas"]:
|
||||
data = io.BytesIO(base64.standard_b64decode(attachment["datas"]))
|
||||
# we follow what is done in ir_http's binary_content for the extension management
|
||||
extension = os.path.splitext(attachment["name"] or '')[1]
|
||||
extension = extension if extension else mimetypes.guess_extension(attachment["mimetype"] or '')
|
||||
filename = attachment['name']
|
||||
filename = filename if os.path.splitext(filename)[1] else filename + extension
|
||||
return http.send_file(data, filename=filename, as_attachment=True)
|
||||
else:
|
||||
return request.not_found()
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="website_sale_digital.product_1" model="product.template">
|
||||
<field name="name">eBook: Office Renovation for Dummies</field>
|
||||
<field name="standard_price">2</field>
|
||||
<field name="list_price">4.50</field>
|
||||
<field name="detailed_type">service</field>
|
||||
<field name="is_published" eval="True"/>
|
||||
<field name="image_1920" type="base64" file="website_sale_digital/static/digital_product_1.jpg"/>
|
||||
<field name="categ_id" ref="product.product_category_6"/>
|
||||
</record>
|
||||
|
||||
<record id="website_sale_digital.attach1" model="ir.attachment">
|
||||
<field name="name">ebook.pdf</field>
|
||||
<field name="type">binary</field>
|
||||
<field name="datas" type="base64" file="website_sale_digital/static/ebook.pdf"/>
|
||||
<field name="res_id" ref="website_sale_digital.product_1"/>
|
||||
<field name="res_model">product.template</field>
|
||||
<field name="product_downloadable">True</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2022\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "إضافة مرفقات إلى هذا المنتج الرقمي "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "مرفق"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "المرفقات الرقمية"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "الملفات الرقمية "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "قابل للتنزيل من بوابة المنتج "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "التنزيلات "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "الملف"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "عنصر اليومية"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "المنتج"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "متغير المنتج "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "الملفات المرفقة هي التي سيتم شراؤها وإرسالها إلى العميل. "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "الكتاب الإلكتروني: ترميم المكاتب للمبتدئين "
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Qoşma"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fayl"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Jurnal Sətirləri"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Məhsul"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Məhsul Çeşidi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Прымацаванне"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Прикачен файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Дигитални приложения"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Предоставен за изтегляне от продуктовия портал"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Счетоводна Операция"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Продуктов вариант"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Dodajte priloge za ovaj digitalni proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Zakačka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitalni prilozi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitalne datoteke"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Može se preuzeti s portala proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Preuzimanja"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Datoteka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eKnjiga: renoviranje kancelarije za pokučare"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Josep Anton Belchi, 2022
|
||||
# marcescu, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arnau Ros, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Arnau Ros, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Afegeix adjunts per a aquest producte digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Adjunt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Adjunts digitals"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Fitxers digitals"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Descarregable des del portal del producte"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Descarregues "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fitxer"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunt comptable"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variants de producte"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Els arxius adjunts són els que seran comprats i enviats al client."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Renovació d'oficines per a Dummies"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2022\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Příloha"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitální přílohy"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitální soubory"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Stažitelné z produktového portálu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Stahování"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Soubor"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka deníku"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta výrobku"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: renovace kanceláří pro začátečníky"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Walther Barnett <walther@gundogpro.dk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Tilføj vedhæftning til dette digitale produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Vedhæftning"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Vedhæftede filer"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitale filer"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Download fra produktportal"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fil"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varevariant"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "De vedhæftede filer er dem der bliver købt og sendt til kunden"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Office Renovation for Dummies"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Anhänge für dieses digitale Produkt hinzufügen"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Dateianhang"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitale Anhänge"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitale Dateien"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Kann vom Produktportal heruntergeladen werden."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Datei"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Buchungszeile"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariante"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"Die angehängten Dateien sind diejenigen, die gekauft und an den Kunden "
|
||||
"geschickt werden."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Bürorenovierung für Dummies"
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-08 06:49+0000\n"
|
||||
"PO-Revision-Date: 2018-10-08 06:49+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Συνημμένο"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/models/product.py:23
|
||||
#: code:addons/website_sale_digital/models/product.py:54
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Ψηφιακά Συνημμένα"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Μεταφορτωμένο από την πύλη ειδών"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Αρχείο"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Γραμμή Τιμολογίου"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Είδος"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Πρότυπο Είδους "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,uom_name:website_sale_digital.product_1
|
||||
msgid "Unit(s)"
|
||||
msgstr "Μονάδες"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,weight_uom_name:website_sale_digital.product_1
|
||||
msgid "kg"
|
||||
msgstr "κιλά"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/"
|
||||
"odoo-9/language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "File"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Invoice Line"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Añadir archivos adjuntos para este producto digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Adjunto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Adjuntos digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Archivos digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Se puede descargar desde el portal de productos"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Descargas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantes de producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"Los archivos adjuntos son los que serán comprados y enviados al cliente."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Renovación de Oficina para Torpes"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_BO/)\n"
|
||||
"Language: es_BO\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
# Mateo Tibaquirá <nestormateo@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-02-12 14:42+0000\n"
|
||||
"Last-Translator: ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
"Las aventuras de Alicia en el País de las Maravillas (comúnmente abreviado "
|
||||
"como Alicia en el País de las Maravillas) es una novela 1865 escrita por "
|
||||
"autor Charles Inglés Lutwidge Dodgson bajo seudónimo Lewis Carroll. Habla de "
|
||||
"una chica llamada Alicia que cae a través de un agujero de conejo en un "
|
||||
"mundo de fantasía poblado por las criaturas peculiares, antropomorfas. El "
|
||||
"cuento juega con lógica, dando la historia de popularidad duradera con "
|
||||
"adultos como con niños. Está considerado como uno de los mejores ejemplos "
|
||||
"del género absurdo literario. Su curso narrativa y estructura, los "
|
||||
"personajes y las imágenes han sido enormemente influyente en la cultura y la "
|
||||
"literatura popular, especialmente en el género de la fantasía."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr "Alicia en el País de las Maravillas - Lewis Caroll"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Adjuntos Digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr "Contenido Digital "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr "Descargas <span class=\"caret\"/>"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de Factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr "Novela de Lewis Caroll."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del Producto"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/"
|
||||
"odoo-9/language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-20 13:22+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
"Las aventuras de Alicia en el País de las Maravillas (comúnmente abreviado "
|
||||
"como Alicia en el País de las Maravillas) es una novela 1865 escrita por "
|
||||
"autor Charles Inglés Lutwidge Dodgson bajo seudónimo Lewis Carroll. Habla de "
|
||||
"una chica llamada Alicia que cae a través de un agujero de conejo en un "
|
||||
"mundo de fantasía poblado por las criaturas peculiares, antropomorfas. El "
|
||||
"cuento juega con lógica, dando la historia de popularidad duradera con "
|
||||
"adultos como con niños. Está considerado como uno de los mejores ejemplos "
|
||||
"del género absurdo literario. Su curso narrativa y estructura, los "
|
||||
"personajes y las imágenes han sido enormemente influyente en la cultura y la "
|
||||
"literatura popular, especialmente en el género de la fantasía."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr "Las aventuras de Alicia en el país de las maravillas - Lewis Carroll"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Adjuntos digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr "Contenido Digital "
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr "Descargas <span class=\"caret\"/>"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr "Novela escrita por Lewis Caroll."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Agregar archivos adjuntos para este producto digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Archivo adjunto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Archivos adjuntos digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Archivos digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Se puede descargar desde el portal de productos"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Descargas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante del producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"Los archivos adjuntos son los que serán comprados y enviados al cliente."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Libro electrónico: Renovación de oficina para dummies"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PA/)\n"
|
||||
"Language: es_PA\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-06-16 19:49+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/"
|
||||
"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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
"Las Aventuras de Alicia en el País de las Maravillas (comunmente abreviado "
|
||||
"como Alicia en el País de las Maravillas) es una novela de 1865 escrita por "
|
||||
"el autor inglés Charles Lutwidge Dogson, bajo el seudónimo Lewis Carroll. "
|
||||
"Cuenta la historia de una niña llamada Alicia que cae a través de la "
|
||||
"madriguera de un conejo hasta un mundo poblado de criaturas peculiares y "
|
||||
"antropomórficas. El cuento juega con la lógica, dando a la historia una "
|
||||
"popularidad duradera tanto entre los adultos como entre los miños. Se "
|
||||
"considera como uno de los mejores ejemplos del género literario sin sentido. "
|
||||
"Su ritmo narrativo y estructura, personajes y parafernalia, han sido "
|
||||
"enormemente inlfuyentes en la cultura popular y en la literatura, "
|
||||
"especialmente en el género fantástico."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr "Las Aventuras de Alicia en el País de las Maravillas - Lewis Caroll"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Adjuntos Digitales"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr "Contenido Digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr "Descargas <span class=\"caret\"/>"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Detalle de Factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr "Novela por Lewis Caroll."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de Producto"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Manusta faile antud virtuaalsele tootele"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Manus"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitaalsed manused"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Virtuaalsed failid"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Allalaaditav tooteportaalist"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Allalaadimised"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fail"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Andmiku kanderida"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Toode"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Toote variatsioon"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Manustatud failid on need, mis on ostetud ja saadetakse kliendile."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "E-raamat: Kontori renoveerimine "
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Faktura lerroa"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# fardin mardani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: fardin mardani, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "پیوستهایی را برای این محصول دیجیتال اضافه کنید"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "پیوست"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "پرونده"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "آیتم روزنامه"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "محصول"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "گونه محصول"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Lisää liitetiedostoja tälle digitaaliselle tuotteelle"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Liite"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitaaliset liitteet"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitaaliset tiedostot"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Ladattavissa tuoteportaalista"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Lataukset"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Tiedosto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Päiväkirjatapahtuma"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Liitteenä olevat tiedostot ostetaan ja lähetetään asiakkaalle."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "e-kirja: Toimistoremontti typeryksille"
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n"
|
||||
"Language: fo\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Fakturalinja"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Vøra"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Ludvig Auvens <lau@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Ajoutez des pièces jointes pour ce produit numérique"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Pièce jointe"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Pièces jointes numériques"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Fichiers numériques"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Téléchargeable depuis le portail produit"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Téléchargements"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fichier"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Écriture comptable"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de produit"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"Les fichiers joints sont ceux qui seront achetés et envoyés au client."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook : Rénovation de bureau pour les nuls"
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language: fr_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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ligne de facturation"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Armstrong Foundjem <foundjem@ieee.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-03-02 21:50+0000\n"
|
||||
"Last-Translator: Armstrong Foundjem <foundjem@ieee.org>\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Pièces jointes numériques"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Fichier"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "ligne de facturation"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modèle de produit"
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Arquivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Liña de factura"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Modelo de Producto"
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journal Item"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Product Variant"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# NoaFarkash, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "קובץ מצורף"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "קבצים מצורפים דיגיטליים"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "קבצים דיגיטליים"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "ניתן להוריד מפורטל המוצרים"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "הורדות"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "קובץ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "תנועת יומן"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "מוצר"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "וריאנט מוצר"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "ספר אלקטרוני: חידוש משרדים למתחילים"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "अटैचमेंट"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "फ़ाइल"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "जर्नल आइटम"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "उत्पाद"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "उत्पाद प्रकार"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Tina Milas, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitalni prilozi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Može se preuzeti s portala proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Datoteka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2022
|
||||
# krnkris, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Melléklet"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitális mellékletek"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Letölthető a termék portálról"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fájl"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Könyvelési tételsor"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Termék"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Termékváltozat"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Tambahkan lampiran untuk produk ditigal ini"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Lampiran"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Lampiran Digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "File Digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Dapat diunduh dari portal produk"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Unduhan"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "File"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"File yang dilampir adalah file yang akan dibeli dan dikirim ke pelanggan."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Office Renovation for Dummies"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Viðhengi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Vara"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Vöruafbrigði"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Aggiunta allegati per questo prodotto digitale"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Allegato"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Allegati digitali"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "File digitali"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Scaricabile dal portale prodotti"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Scaricamenti"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "File"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Movimento contabile"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante prodotto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"I file allegati sono quelli che verranno acquistati e inviati al cliente."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook - Rinnovare l'ufficio per negati"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "このデジタルプロダクトに添付ファイルを追加しましょう"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "添付"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "電子データ添付"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "デジタルファイル"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "プロダクトポータルからダウンロード可能"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "ファイル"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "仕訳明細"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "プロダクト"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "プロダクトバリアント"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "添付ファイルは、購入したりお客様にお送りするものです。"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eブック: オフィスリノベーション ダミー用"
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
|
||||
"Language: ka\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "ფაილი"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "პროდუქტი"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
|
||||
"Language: kab\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Afaylu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Izirig n tfaturt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Afaris"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Taneɣruft n ufaris"
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
|
||||
"Language: kk\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "ឯកសារភ្ជាប់"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "ឯកសារភ្ជាប់ឌីជីថល"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "ឯកសារឌីជីថល"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "អាចទាញយកបានពីផលិតផលវិបផតថល"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "ការទាញយក"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "ឯកសារ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ប្រភេទទិនានុប្បវត្ត"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "ផលិតផល"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ការផ្លាស់ប្តូរផលិតផល"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "សៀវភៅអេឡិចត្រូនិច: ការកែលម្អការិយាល័យសម្រាប់ឌុមមី។"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sarah Park, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "이 디지털 품목에 대한 첨부 파일 추가"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "첨부 파일"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "디지털 첨부 파일"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "디지털 파일"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "상품 포털에서 내려받기 가능"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "내려받기"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "파일"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "분개 항목"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "품목"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "품목 세부선택"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "첨부 파일은 고객님이 구매하시면 발송드리는 파일입니다."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "이북 : 바보들을 위한 사무실 개조"
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-12 12:27+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:16+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/models/product.py:23
|
||||
#: code:addons/website_sale_digital/models/product.py:54
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ລານການລົງບັນຊີ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "ສິນຄ້າ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Pridėti prisegtukus šiam skaitmeniniui produktui"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prisegtukas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Skaitmeniniai priedai"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Skaitmeniniai failai"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Galima atsisiųsti iš produktų portalo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Atsisiuntimai"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Failas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Žurnalo įrašas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produktas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkto variantas"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "e-knyga: Biuro atnaujinimas \"žaliems\""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Pielikums"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fails"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Kontējums"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkts"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkta Veids"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:08+0000\n"
|
||||
"PO-Revision-Date: 2016-01-14 10:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/"
|
||||
"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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland) "
|
||||
"is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best "
|
||||
"examples of the literary nonsense genre. Its narrative course and structure, "
|
||||
"characters and imagery have been enormously influential in both popular "
|
||||
"culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:29
|
||||
#: code:addons/website_sale_digital/product.py:56
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/product.py:22
|
||||
#, python-format
|
||||
msgid "Digital Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.orders_followup_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "File"
|
||||
msgstr "Датотека"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ставка од фактура"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Производ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Урнек на производ"
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "അറ്റാച്ച്മെന്റ്"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "ഡിജിറ്റൽ അറ്റാച്ച്മെന്റുകൾ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "ഡിജിറ്റൽ ഫയലുകൾ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "ഡൗൺലോഡുകൾ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "ഫയൽ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ജേർണൽ ഐറ്റം"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "പ്രോഡക്റ്റ്"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "പ്രോഡക്റ്റ് വേരിയന്റ്"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# hish, 2022
|
||||
# baaska sh <sh.baaskash@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Хавсралт"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Дижитал хавсралтууд"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Дижитал файлууд"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Барааны порталаас татаж авах боломжтой"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Татагдсан"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Журналын бичилт"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Бараа"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Барааны хувилбар"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Lampiran"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Fail Digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Muat turun"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jorunn D. Newth, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Vedlegg"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitale vedlegg"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitale filer"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Kan lastes ned fra produktportalen"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Nedlastinger"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fil"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Ebok: Kontor-oppussing for dummies"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Bijlagen toevoegen voor dit digitale product"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Bijlage"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitale bijlagen"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitale bestanden"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Downloadbaar vanaf productportaal"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Bestand"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Boekingsregel"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Productvariant"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"De bijgevoegde bestanden zijn degene die worden gekocht en naar de klant "
|
||||
"worden verzonden."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Kantoorrenovatie for Dummies"
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Dodaj załączniki do tego produktu cyfrowego."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Załącznik"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Załączniki cyfrowe"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Pliki cyfrowe."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Do pobrania z portalu produktu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Pobrane"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Plik"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Pozycja zapisu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Wariant produktu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Załączone pliki mogą być kupione i wysłane do klienta."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: remont biura dla opornych."
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2022
|
||||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
|
||||
# Luiz Fernando <lfpsgs@outlook.com>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Anexos Digitais"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Ficheiros Digitais"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Transferível do portal do artigo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Transferências"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Ficheiro"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de Artigo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Kevilyn Rosa, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Adicionar anexos para este produto digital"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Anexos Digitais"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Arquivos Digitais"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Transferível a partir do portal de produtos"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Arquivo"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item de Diário"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variação do Produto"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"Os arquivos anexados são os que serão comprados e enviados ao cliente."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Ex: Renovação do Office para Bonecos"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Atașament"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Atașamente Digitale"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Fișiere Digitale"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Descărcabil de pe portalul de produse"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Descărcări"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fișier"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Element jurnal"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantă produs"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Viktor Pogrebniak <vp@aifil.ru>, 2022
|
||||
# Collex100, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Kropotkin <yelizariev@itpp.dev>, 2022\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Вложение"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Цифровые вложения"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "цифровые файлы"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Скачать с портала продукта"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Загрузка"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Элемент журнала"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Вариант продукта"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Электронная книга Офисный ремонт для чайников"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Príloha"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitálne prílohy"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Súbor"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka účtovnej knihy"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta produktu"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Priponka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitalne priloge"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Datoteka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Postavka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Različica proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Dodajte priloge za ovaj digitalni proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digitalni prilozi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digitalne datoteke"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Može se preuzeti sa portala proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Preuzimanja"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Datoteka"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka izveštaja"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijante proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Priložene datoteke su one koje će biti kupljene i poslate kupcu."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "e-knjiga: Renoviranje kancelarije za početnike"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
|
||||
"PO-Revision-Date: 2017-10-02 11:26+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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: website_sale_digital
|
||||
#: model:product.template,description_sale:website_sale_digital.product_1
|
||||
msgid ""
|
||||
"Alice's Adventures in Wonderland (commonly shortened to Alice in Wonderland)"
|
||||
" is an 1865 novel written by English author Charles Lutwidge Dodgson under "
|
||||
"the pseudonym Lewis Carroll. It tells of a girl named Alice falling through "
|
||||
"a rabbit hole into a fantasy world populated by peculiar, anthropomorphic "
|
||||
"creatures. The tale plays with logic, giving the story lasting popularity "
|
||||
"with adults as well as with children. It is considered to be one of the best"
|
||||
" examples of the literary nonsense genre. Its narrative course and "
|
||||
"structure, characters and imagery have been enormously influential in both "
|
||||
"popular culture and literature, especially in the fantasy genre."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "Alice's Adventures in Wonderland - Lewis Caroll"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: code:addons/website_sale_digital/models/product.py:23
|
||||
#: code:addons/website_sale_digital/models/product.py:54
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment_product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document_product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.portal_order_page_downloads
|
||||
msgid "Downloads <span class=\"caret\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product_attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template_attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fajl"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_invoice_line
|
||||
msgid "Invoice Line"
|
||||
msgstr "Stavka računa"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,description:website_sale_digital.product_1
|
||||
msgid "Novel by Lewis Caroll."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Portal Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "ir.attachment"
|
||||
msgstr "ir.attachment"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Simon S, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Chrille Hedberg <hedberg.chrille@gmail.com>, 2022\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Lägg till bilagor för denna digitala produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Bilaga"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Digital bilaga"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Digital fil"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Nerladdningsbar från produktportalen"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Nerladdningar"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Fil"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Transaktion"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
"De bifogade filerna är de som kommer att köpas och skickas till kunden."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Kontorsrenovering för Dummies"
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Wichanon Jamwutthipreecha, 2022\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "เพิ่มไฟล์แนบสำหรับผลิตภัณฑ์ดิจิทัลนี้"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "การแนบ"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "ไฟล์แนบดิจิทัล"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "ไฟล์ดิจิทัล"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "สามารถดาวน์โหลดได้จากพอร์ทัลสินค้า"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "ดาวน์โหลด"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "ไฟล์"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "รายการบันทึก"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "สินค้า"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ตัวแปรสินค้า"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "ไฟล์แนบเป็นไฟล์ที่จะซื้อและส่งให้ลูกค้า"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: การปรับปรุงสำนักงานสำหรับ Dummies"
|
||||
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2022
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Murat Durmuş <muratd@projetgrup.com>, 2022\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Bu dijital ürün için ekler ekleyin"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Ek"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Dijital Ekler"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Sayısal Dosyalar"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Ürün portalından indirilebilir"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "İndirmeler"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Dosya"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Yevmiye Kalemi"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Ürün Varyantı"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Ekli dosyalar satın alınacak ve müşteriye gönderilecek dosyalardır."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "eBook: Office Renovation for Dummies"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "Додати прикріплення до цього цифрового товару"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Прикріплення"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Цифрові прикріплення"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Цифрові файли"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Завантажується з порталу товарів"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Завантаження"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Файл"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Елемент журналу"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Товар"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Варіант товару"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "Вкладені файли – це ті, які будуть придбані та надіслані клієнту."
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Електронна книга: Офісний ремонт для чайників"
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Vo Thanh Thuy, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Vo Thanh Thuy, 2022\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Đính kèm"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "Tệp đính kèm số"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "Tệp kỹ thuật số"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "Có thể tải xuống từ cổng sản phẩm"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "Tải xuống"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "Tệp"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Bút toán"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "Sách điện tử: Sửa chữa văn phòng cho người mới bắt đầu "
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\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: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "为该数字产品添加附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "数字化附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "数字文件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "从产品门户下载"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "下载"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "文件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日记账项目"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "产品变体"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "附件中的文件是将被采购并发送给客户的文件。"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "电子书:傻瓜的办公室改造"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_digital
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Add attachments for this digital product"
|
||||
msgstr "為此數碼產品加入附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Digital Attachments"
|
||||
msgstr "電子附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_product_view_form_inherit_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.product_template_view_form_inherit_digital
|
||||
msgid "Digital Files"
|
||||
msgstr "電子附件"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_ir_attachment__product_downloadable
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_mrp_document__product_downloadable
|
||||
msgid "Downloadable from product portal"
|
||||
msgstr "從產品網站頁面下載"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_digital.sale_order_portal_content_inherit_website_sale_digital
|
||||
msgid "Downloads"
|
||||
msgstr "下載"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_product__attachment_count
|
||||
#: model:ir.model.fields,field_description:website_sale_digital.field_product_template__attachment_count
|
||||
msgid "File"
|
||||
msgstr "檔案"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日記帳項目"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "商品"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:ir.model,name:website_sale_digital.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "產品款式"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#. odoo-python
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#: code:addons/website_sale_digital/models/product.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The attached files are the ones that will be purchased and sent to the "
|
||||
"customer."
|
||||
msgstr "所附文件是將會購買並發送給客戶的文件。"
|
||||
|
||||
#. module: website_sale_digital
|
||||
#: model:product.template,name:website_sale_digital.product_1
|
||||
msgid "eBook: Office Renovation for Dummies"
|
||||
msgstr "電子書:辦公室翻新DIY"
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue