mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 23:12:09 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
52
odoo-bringout-oca-ocb-product_images/README.md
Normal file
52
odoo-bringout-oca-ocb-product_images/README.md
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Product Images
|
||||
|
||||
|
||||
Automatically set product images based on the barcode
|
||||
=====================================================
|
||||
|
||||
This module integrates with the Google Custom Search API to set images on products based on the
|
||||
barcode.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-product_images
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- product
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Product Images
|
||||
- **Version**: 1.0
|
||||
- **Category**: Technical
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `product_images`.
|
||||
|
||||
## 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
|
||||
32
odoo-bringout-oca-ocb-product_images/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-product_images/doc/ARCHITECTURE.md
Normal file
|
|
@ -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 Product_images Module - product_images
|
||||
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 product_images. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-product_images/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-product_images/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-product_images/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-product_images/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [product](../../odoo-bringout-oca-ocb-product)
|
||||
4
odoo-bringout-oca-ocb-product_images/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-product_images/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 product_images or install in UI.
|
||||
7
odoo-bringout-oca-ocb-product_images/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-product_images/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-product_images"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-product_images"
|
||||
```
|
||||
14
odoo-bringout-oca-ocb-product_images/doc/MODELS.md
Normal file
14
odoo-bringout-oca-ocb-product_images/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in product_images.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class ir_cron_trigger
|
||||
class product_product
|
||||
class res_config_settings
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-product_images/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-product_images/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: product_images. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon product_images
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-product_images/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-product_images/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
41
odoo-bringout-oca-ocb-product_images/doc/SECURITY.md
Normal file
41
odoo-bringout-oca-ocb-product_images/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in product_images.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../product_images/security/ir.model.access.csv)**
|
||||
- 1 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[product_security.xml](../product_images/security/product_security.xml)**
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../product_images/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
- **[product_security.xml](../product_images/security/product_security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -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-product_images/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-product_images/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 product_images
|
||||
```
|
||||
8
odoo-bringout-oca-ocb-product_images/doc/WIZARDS.md
Normal file
8
odoo-bringout-oca-ocb-product_images/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Wizards
|
||||
|
||||
Transient models exposed as UI wizards in product_images.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class ProductFetchImageWizard
|
||||
```
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
|
||||
from odoo import api, SUPERUSER_ID
|
||||
|
||||
|
||||
def uninstall_hook(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
ICP = env['ir.config_parameter']
|
||||
ICP.set_param('google.pse.id', False)
|
||||
ICP.set_param('google.custom_search.key', False)
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Product Images',
|
||||
'version': '1.0',
|
||||
'description': """
|
||||
Automatically set product images based on the barcode
|
||||
=====================================================
|
||||
|
||||
This module integrates with the Google Custom Search API to set images on products based on the
|
||||
barcode.
|
||||
""",
|
||||
'license': 'LGPL-3',
|
||||
'category': 'Technical',
|
||||
'depends': ['product'],
|
||||
'data': [
|
||||
'data/ir_cron_data.xml',
|
||||
'security/product_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'views/res_config_settings_views.xml',
|
||||
'wizard/product_fetch_image_wizard_views.xml',
|
||||
],
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<!-- The following cron is trigger-only. When the user triggers it, the cron processes some
|
||||
products to add an image from an external provider and schedules itself until all products
|
||||
are processed. The cron has then no reason to be triggered anymore. Also, its trigger
|
||||
should always be unique to be able to optimize the number of requests in accordance with
|
||||
the rate limit that some image providers may apply. -->
|
||||
<record id="ir_cron_fetch_image" model="ir.cron">
|
||||
<field name="name">Product Images: Get product images from Google</field>
|
||||
<field name="interval_number">9999</field>
|
||||
<field name="interval_type">months</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="doall">True</field>
|
||||
<field name="model_id" ref="model_product_fetch_image_wizard"/>
|
||||
<field name="code">model._cron_fetch_image()</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/af.po
Normal file
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/af.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# 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:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Gekanselleer"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/am.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/am.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
292
odoo-bringout-oca-ocb-product_images/product_images/i18n/ar.po
Normal file
292
odoo-bringout-oca-ocb-product_images/product_images/i18n/ar.po
Normal file
|
|
@ -0,0 +1,292 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"تم إيجاد %(matching_images_count)s صور مشابهة لـ %(product_count)s منتج. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" بما أن 10,000 منتج فقط يمكن معالجته في اليوم الواحد، ستتم معالجة\n"
|
||||
" الباقي غداً.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"هناك مهمة لمعالجة المنتجات جارية في الخلفية بالفعل. يرجى المحاولة مجدداً "
|
||||
"لاحقاً. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "مفتاح الواجهة البرمجية للتطبيق "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "قم بجلب صور المنتجات من صور Google في رقم باركود المنتج. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "الحصول على الصور "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "احصل على الصور من صور Google "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "مفتاح API لبحث Google المخصص "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "جلب الصورة قيد الانتظار "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "عدد المنتجات غير القابلة للمعالجة "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "عدد المنتجات لمعالجتها "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "عدد المنتجات المحددة "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"يرجى ملاحظة أن بعض الصور قد لا تكون خالية من حقوق النشر. يجب ألا تقوم\n"
|
||||
" بنشر تلك الصور على موقعك الإلكتروني. "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "صور المنتجات: احصل على صور المنتجات من Google "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "متغير المنتج "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "صور المنتجات "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "المنتجات لمعالجتها "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "تتم معالجة المنتجات في الخلفية. سوف يتم تحديث الصور تدريجياً. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "معرّف محرك البحث "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "يجب ضبط مفتاح API ومعرّف محرك البحث في الإعدادات العامة. "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"الواجهة البرمجية للبحث المخصص غير مفعلة في مشروع Google الخاص بك. يرجى زيارة"
|
||||
" صفحة مشروع منصة سحابة Google وتفعيلها. إذا كنت قد قمت بتمكين هذه الواجهة "
|
||||
"البرمجية للتطبيق حديثاً، يرجى الانتظار لعدة دقائق ثم المحاولة من جديد. "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "معرّف محرك بحث Google القابل للبرمجة "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"قائمة المنتجات المختارة التي تمتثل للمعايير (أن يكون لها باركود ودون صورة) "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"تم حذف الإجراء المجدول \"صور المنتجات: احصل على صور للمنتجات من Google\". "
|
||||
"يرجى التواصل مع مديرك لاستعادة الإجراء أو لإعادة تثبيت التطبيق "
|
||||
"\"product_images\". "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "الإجراء مجدول بالفعل. يرجى المحاولة مجدداً لاحقاً. "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "الإجراءات المشغلة "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"ما إذا كان يجب جلب صورة لهذا المنتج أم لا. يتم التعامل معه بواسطة cron. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "لقد قمت بتحديد "
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "مفتاح API الخاص بك أو معرّف محرك البحث غير صحيح. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "والذي ستتم معالجته. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"لن تتم معالجة\n"
|
||||
" المنتجات لأنها إما أن لها صورة بالفعل أو أن أرقام الباركود الخاصة بها\n"
|
||||
" لم يتم إعدادها بعد. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "المنتجات، "
|
||||
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/az.po
Normal file
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/az.po
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
"İnformasiya sistemlərinin texniki qarşılıqlı əlaqəsini təmin edən açar"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Ləğv edin"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Məhsul Çeşidi"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/be.po
Normal file
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/be.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Адмяніць"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/bg.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/bg.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отказ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Продуктов вариант"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/bs.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/bs.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Preuzmi slike"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Get Pictures from Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Image Fetch Pending"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Number of product unprocessable"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Number of products to process"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Number of selected products"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Product Images: Get product images from Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Slike proizvoda"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Products To Process"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID pretraživača"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "The API Key and Search Engine ID must be set in the General Settings."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "The identifier of the Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "This action is already scheduled. Please try again later."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Pokrenute akcije"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Whether an image must be fetched for this product. Handled by a cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "You selected"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Your API Key or your Search Engine ID is incorrect."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "of which will be processed."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "products,"
|
||||
304
odoo-bringout-oca-ocb-product_images/product_images/i18n/ca.po
Normal file
304
odoo-bringout-oca-ocb-product_images/product_images/i18n/ca.po
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Josep Anton Belchi, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# marcescu, 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:54+0000\n"
|
||||
"Last-Translator: marcescu, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s s'han trobat imatges coincidents per a "
|
||||
"%(product_count)s productes."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Com que només es poden processar 10.000 productes per dia, la resta serà\n"
|
||||
"fet demà.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Ja s'està executant una tasca per processar productes en segon pla. Torneu-"
|
||||
"ho a provar més tard."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Obtenir imatges de productes de Google Images basades en el número de codi "
|
||||
"de barres del producte."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obtenir imatges"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obtenir imatges de Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Clau de l'API de cerca personalitzada de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Imatge pendent d'obtenir"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Nombre de productes no processables"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Nombre de productes a processar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Nombre de productes seleccionats"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Tingueu en compte que algunes imatges podrien no estar lliures de drets. No hauríeu\n"
|
||||
" de publicar-les en el seu lloc web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Imatges de producte: Obtenir imatges de productes de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variants de producte"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Imatges de producte"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Productes a processar"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Els productes es processen en segon pla. Les imatges s'actualitzaran "
|
||||
"progressivament."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID del motor de cerca"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"L'ID del motor de clau i cerca de l'API s'ha d'establir a la configuració "
|
||||
"general."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"L'API de cerca personalitzada no està en habilitar en el vostre projecte de "
|
||||
"Google. Visiteu la pàgina del projecte Google Cloud Platform i activeu-la i "
|
||||
"torneu-ho a provar. Si heu habilitat aquesta API recentment, espereu uns "
|
||||
"minuts i torneu-ho a provar."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "L'identificador del motor de cerca programable de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"La llista de productes seleccionats que compleixen els criteris (tenen un "
|
||||
"codi de barres i no tenen imatge)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"L'acció programada \"Product Images: Obtenir imatges de productes de "
|
||||
"Google\" ha estat eliminada. Si us plau, posi's en contacte amb el seu "
|
||||
"administrador per a restaurar l'acció o per a reinstal·lar el mòdul "
|
||||
"\"product_*images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Aquesta acció ja està programada. Torneu-ho a provar més tard."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Accions disparades"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Si s'ha d'obtenir una imatge per a aquest producte. Manejat per un cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Heu seleccionat"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "La clau de l'API o l'ID del motor de cerca són incorrectes."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "del qual es processarà."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"els productes no seran\n"
|
||||
" processats perquè ja tenen una imatge o el seu codi de barres\n"
|
||||
" el número no està establert."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "productes,"
|
||||
279
odoo-bringout-oca-ocb-product_images/product_images/i18n/cs.po
Normal file
279
odoo-bringout-oca-ocb-product_images/product_images/i18n/cs.po
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Jakub Smolka, 2023
|
||||
# Katerina Horylova, 2024
|
||||
# Vojtech Smolka, 2024
|
||||
# Tereza Mokrá, 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:54+0000\n"
|
||||
"Last-Translator: Tereza Mokrá, 2024\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Klíč API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Natáhnout produktové obrázky z Google Images, na základě čárových kódů "
|
||||
"produktů."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Počet vybraných produktů"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta výrobku"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID vyhledávače"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Spouštěné akce"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "Produkty"
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/da.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/da.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Mads Søndergaard, 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:54+0000\n"
|
||||
"Last-Translator: Mads Søndergaard, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API nøgle"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annullér"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varevariant"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Afviklede handlinger"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
305
odoo-bringout-oca-ocb-product_images/product_images/i18n/de.po
Normal file
305
odoo-bringout-oca-ocb-product_images/product_images/i18n/de.po
Normal file
|
|
@ -0,0 +1,305 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 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:54+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s passende Bilder wurden für %(product_count)s "
|
||||
"Produkte gefunden."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Da nur 10.000 Produkte am Tag bearbeitet werden können, wird der Rest\n"
|
||||
" morgen erledigt.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Es läuft bereits eine Aufgabe zur Bearbeitung von Produkten im Hintergrund. "
|
||||
"Bitte versuchen Sie es später noch einmal."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API-Schlüssel"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurationseinstellungen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Abruf von Produktbildern aus Google Images auf der Grundlage der Barcode-"
|
||||
"Nummer des Produkts."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Bilder erhalten"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Bilder von Google Bilder erhalten"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "API-Schlüssel von Google Custom Search"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Bildabruf ausstehend"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Anzahl der Produkte, die nicht verarbeitet werden können"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Anzahl der zu verarbeitenden Produkte"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Anzahl der ausgewählten Produkte"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Bitte beachten Sie, dass einige Bilder möglicherweise nicht lizenzfrei sind. Sie sollten diese nicht\n"
|
||||
"auf Ihrer Website veröffentlichen."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Produktbilder: Produktbilder von Google abrufen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariante"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Produktbilder"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Zu verarbeitende Produkte"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Die Produkte werden im Hintergrund verarbeitet. Bilder werden nach und nach "
|
||||
"aktualisiert."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Suchmaschinen-ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Der API-Schlüssel und die Suchmaschinen-ID müssen in den Allgemeinen "
|
||||
"Einstellungen festgelegt werden."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Die benutzerdefinierte Such-API ist in Ihrem Google-Projekt nicht aktiviert."
|
||||
" Bitte besuchen Sie Ihre Google-Cloud-Platform-Projektseite, aktivieren Sie "
|
||||
"sie und versuchen Sie es dann erneut. Wenn Sie diese API vor kurzem "
|
||||
"aktiviert haben, warten Sie bitte ein paar Minuten und versuchen Sie es "
|
||||
"erneut."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Die Kennung der Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Die Liste der ausgewählten Produkte, die die Kriterien erfüllen (haben einen"
|
||||
" Barcode und kein Bild)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Die geplante Aktion „Produktbilder: Produktbilder von Google abrufen“ wurde "
|
||||
"gelöscht. Bitte kontaktieren Sie Ihren Administrator, um die Aktion "
|
||||
"wiederherzustellen oder das Modul „product_images“ neu zu installieren."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
"Diese Aktion wurde bereits geplant. Bitte versuchen Sie es später erneut."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Ausgelöste Aktionen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Ob für dieses Produkt ein Bild abgerufen werden muss. Wird von einem Cron "
|
||||
"verwaltet."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Sie haben"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Ihr API-Schlüssel oder Ihre Suchmaschinen-ID ist falsch."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "verarbeitet werden."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"Produkte werden nicht\n"
|
||||
"verarbeitet, weil sie entweder bereits ein Bild haben oder ihre Barcodenummer\n"
|
||||
"nicht festgelegt ist."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "Produkte ausgewählt, wovon"
|
||||
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/es.po
Normal file
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/es.po
Normal file
|
|
@ -0,0 +1,303 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 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:54+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s se han encontrado imágenes coincidentes para "
|
||||
"%(product_count)s productos."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
"Como solo 10,000 productos pueden ser procesados por dia, el resto se hará mañana.\n"
|
||||
"</span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Ya se está ejecutando una tarea para procesar productos en segundo plano. "
|
||||
"Vuelva a intentarlo más tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Obtenga imágenes de Google Imágenes basándose en el número de código de "
|
||||
"barras del producto."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obtener imágenes"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obtener imágenes de Google Imágenes"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Clave API para búsqueda personalizada en Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Esperando para obtener la imagen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Número de productos no procesables"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Número de productos a procesar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Número de productos seleccionados"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Por favor, tenga en cuenta que algunas imágenes pueden tener derechos de "
|
||||
"autor. No debería publicarlas esto en su sitio web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Imágenes de productos: obtener imágenes de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de producto"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Imágenes de productos"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Productos a procesar"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Los productos se procesan en segundo plano. Las imágenes se actualizarán "
|
||||
"progresivamente."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID de motor de búsqueda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"La clave API y el ID de motor de búsqueda deben establecerse en las "
|
||||
"configuraciones generales."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"No se habilitó la API de búsqueda personalizada en su proyecto de Google. "
|
||||
"Visite la página de su proyecto en la plataforma Google Cloud, habilítela y "
|
||||
"vuelva a intentarlo. Si ya habilitó esta API, espere unos minutos y vuelva a"
|
||||
" intentarlo."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "El identificador del motor de búsqueda programable de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"La lista de productos seleccionados que cumplen con los criterios (tener "
|
||||
"código de barras y no tener imágenes)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Se eliminó la acción programada llamada \"Imágenes de producto: obtener "
|
||||
"imágenes de productos de Google\". Póngase en contacto con su administrador "
|
||||
"para restaurar la acción o para volver a instalar el módulo "
|
||||
"\"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Esta accion ya esta programada. Por favor, inténtelo más tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Acciones activadas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Si se debe obtener una imagen para este producto. Esta acción la realiza un "
|
||||
"cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Ha seleccionado"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Su clave API o su ID de motor de búsqueda son incorrectos."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "de los cuales serán procesados."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"productos no se\n"
|
||||
" procesarán porque ya tienen una imagen o no se ha establecido\n"
|
||||
" su número de código de barras."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "productos,"
|
||||
|
|
@ -0,0 +1,301 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"Se encontraron %(matching_images_count)s imágenes que coinciden con "
|
||||
"%(product_count)s productos. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Como solo se pueden procesar 10,000 productos por día, los productos restantes\n"
|
||||
" se procesarán mañana.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Ya se está ejecutando una tarea para procesar productos en segundo plano. "
|
||||
"Vuelva a intentarlo más tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Obtener imágenes de productos de Google Imágenes según el número de código "
|
||||
"de barras de su producto."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obtener imágenes"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obtener imágenes de Google Imágenes"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Clave API de búsqueda de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Imagen pendiente de obtener"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Número de productos no procesables."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Número de productos por procesar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Número de productos seleccionados"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Tenga en cuenta que algunas de estas imágenes pueden tener derechos de autor. No debería\n"
|
||||
" publicarlas en su sitio web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Imágenes de productos: obtener imágenes de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante del producto"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Imágenes de producto"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Productos por procesar"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Los productos se procesan en segundo plano. Las imágenes se actualizarán "
|
||||
"progresivamente. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID de motor de búsqueda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"La clave API y el ID de motor de búsqueda se deben establecer en los ajustes"
|
||||
" generales."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"No se habilitó la API de búsqueda personalizada en su proyecto de Google. "
|
||||
"Visite la página de su proyecto en plataforma de Google Cloud, habilítela y "
|
||||
"vuelva a intentarlo. Si ya habilitó esta API, espere unos minutos y vuelva a"
|
||||
" intentarlo."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "El identificador del Motor de Búsqueda Programable de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"La lista de productos seleccionados que cumplen con los criterios (tener "
|
||||
"código de barras y no tener imágenes)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"La acción programada \"Imágenes de producto: obtener imágenes de productos "
|
||||
"de Google\" ha sido eliminada. Póngase en contacto con su administrador para"
|
||||
" restaurar la acción o para reinstalar el módulo \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Ya se programó esta acción. Inténtelo más tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Acciones activadas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Si se debe obtener una imagen para este producto. Lo maneja un cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Seleccionó"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Su clave API o su ID de motor de búsqueda son incorrectos."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "se procesarán."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"productos no se\n"
|
||||
" procesarán porque ya tienen una imagen o no se ha establecido\n"
|
||||
" su número de código de barras."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "productos,"
|
||||
295
odoo-bringout-oca-ocb-product_images/product_images/i18n/et.po
Normal file
295
odoo-bringout-oca-ocb-product_images/product_images/i18n/et.po
Normal file
|
|
@ -0,0 +1,295 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
# JanaAvalah, 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:54+0000\n"
|
||||
"Last-Translator: JanaAvalah, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(product_count)s tootele leiti %(matching_images_count)s vastavat pilti."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Kuna päevas saab töödelda vaid 10 000 toodet, siis ülejäänu jääb\n"
|
||||
" homseks teha.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr "Ülesanne toodete töötlemiseks juba käib. Palun proovi hiljem uuesti."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API võti"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Tühista"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Tooge teenusest Google Images tootepilte toote vöötkoodi numbri alusel."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Hankige pilte"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Hankige pilte Google´st"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google'i kohandatud API võti"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Pildi laadimine on ootel"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Töötlematute toodete arv"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Töödeldavate toodete arv"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Valitud toodete arv"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Pange tähele, et mõned pildid ei pruugi olla autoritasuvabad. Te ei peaks\n"
|
||||
" avaldama neid oma veebisaidil."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Tootepildid: hankige tootepilte Google´st."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Toote variatsioon"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Tootepildid"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Tooted töötlemiseks"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "Tooteid töödeldakse taustal. Pilte värskendatakse järk-järgult."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Otsingumootori ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API võti ja otsingumootori ID tuleb määrata jaotises Üldsätted."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Kohandatud API pole Teie Google'i projektis lubatud. Külastage oma Google "
|
||||
"Cloud Platform projekti lehte ja lubage see, seejärel proovige uuesti. Kui "
|
||||
"lubasite selle API hiljuti, oodake mõni minut ja proovige uuesti."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Google'i programmeeritava otsingumootori identifikaator"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Valitud toodete loend, mis vastavad kriteeriumidele (millel on vöötkood ja "
|
||||
"puudub pilt)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Ajastatud toiming \"Tootepildid: hankige Google'ilt tootepildid\" on "
|
||||
"kustutatud. Toimingu taastamiseks või mooduli \"product_images\" uuesti "
|
||||
"installimiseks võtke ühendust oma administraatoriga."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "See toiming on juba ajastatud. Palun proovi hiljem uuesti."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Käivitatud toimingud"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Kas selle toote jaoks tuleb pilt tuua. Kä"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Olete valinud"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Teie API võti või otsingumootori ID on vale."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "millest töödeldakse."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"tooteid ei tule\n"
|
||||
" töödeldud, kuna neil on juba pilt või vöötkood\n"
|
||||
" number pole määratud."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "tooted,"
|
||||
274
odoo-bringout-oca-ocb-product_images/product_images/i18n/fa.po
Normal file
274
odoo-bringout-oca-ocb-product_images/product_images/i18n/fa.po
Normal file
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 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:54+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "کلید API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "گونه محصول"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "اقدامات فعال شده"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
298
odoo-bringout-oca-ocb-product_images/product_images/i18n/fi.po
Normal file
298
odoo-bringout-oca-ocb-product_images/product_images/i18n/fi.po
Normal file
|
|
@ -0,0 +1,298 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s vastaavaa kuvaa on löydetty %(product_count)s "
|
||||
"tuotteelle."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Koska päivässä voidaan käsitellä vain 10 000 tuotetta, jäljelle jäävät tuotteet käsitellään\n"
|
||||
" huomenna.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Tehtävä, joka käsittelee tuotteita taustalla, on jo käynnissä. Yritä "
|
||||
"uudelleen myöhemmin."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Avain"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Hae tuotekuvia Google Imagesista tuotteen viivakoodinumeron perusteella."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Hanki kuvia"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Hanki kuvia Google Imagesista"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API-avain"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Kuvan haku odottaa käynnistymistä"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Käsittelemättömien tuotteiden määrä"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Käsiteltävien tuotteiden määrä"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Valittujen tuotteiden määrä"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Huomaa, että jotkin kuvat eivät välttämättä ole maksutta käytettävissä. Sinun ei pitäisi\n"
|
||||
" julkaista niitä verkkosivustollasi."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Tuotekuvat: Hanki tuotekuvat Googlesta"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Palvelukuvat"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Käsiteltävät tuotteet"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "Tuotteita käsitellään taustalla. Kuvat päivitetään asteittain."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Hakukoneen tunnus"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API-avain ja hakukoneen tunnus on asetettava Yleisissä asetuksissa."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Mukautetun haun sovellusliittymä ei ole käytössä Google-projektissasi. Käy "
|
||||
"Google Cloud Platform -projektisi sivulla ja ota se käyttöön ja yritä sitten"
|
||||
" uudelleen. Jos otit tämän API:n käyttöön hiljattain, odota muutama minuutti"
|
||||
" ja yritä uudelleen."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Googlen ohjelmoitavan hakukoneen tunniste"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Luettelo valituista tuotteista, jotka täyttävät kriteerit (joissa on "
|
||||
"viivakoodi, mutta ei kuvaa)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Ajastettu toiminto \"Tuotekuvat: Tuotekuvien hakeminen Googlesta\" on "
|
||||
"poistettu. Ota yhteyttä järjestelmänvalvojaan, jotta toiminto voidaan "
|
||||
"palauttaa tai jotta moduuli \"product_images\" voidaan asentaa uudelleen."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Tämä toiminta on jo aikataulutettu. Yritä myöhemmin uudelleen."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Liipaisintoimenpiteet"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Onko tälle tuotteelle haettava kuva. Käsitellään cronilla."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Valitsit"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "API-avaimesi tai hakukoneen tunnus on väärä."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "joista käsitellään."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"tuotteet eivät ole\n"
|
||||
" käsitellä, koska niillä on joko jo kuva tai niiden viivakoodia\n"
|
||||
" numeroa ei ole asetettu."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "tuotteet,"
|
||||
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/fr.po
Normal file
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/fr.po
Normal file
|
|
@ -0,0 +1,301 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s images correspondantes ont été trouvées pour "
|
||||
"%(product_count)s produits."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Puisque seuls 10.000 produits peuvent être traités par jour, le restant sera\n"
|
||||
" traité demain.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Une tâche pour traiter les produits est déjà en cours en arrière-plan. "
|
||||
"Veuillez réessayer plus tard."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Clé API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Collecter des images de produit depuis Google Images en fonction du code-"
|
||||
"barres du produit."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obtenir des images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obtenir des images à partir de Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Clé API recherche personnalisée Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Collecte d'images en attente"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Quantité de produits impossibles à traiter"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Quantité de produits à traiter"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Quantité de produits sélectionnés"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Notez que certaines images pourraient ne pas être libres de droits. Vous ne devriez pas\n"
|
||||
"les publier sur votre site web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Images de produits : Obtenir des images de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de produit"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Images de produits"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produits à traiter"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Les produits sont traités en arrière-plan. Les images seront mises à jour "
|
||||
"progressivement."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID moteur de recherche"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"La clé API et l'ID du moteur de recherche doivent être configurées dans les "
|
||||
"paramètres généraux."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"La recherche personnalisée API n'est pas activée dans votre projet Google. "
|
||||
"Allez à voter page de projet Google Cloud Platform et activez-la, puis "
|
||||
"réessayez. Si vous avez activé cet API récemment, veuillez attendre quelques"
|
||||
" minutes et réessayer plus tard."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "L'identifiant du moteur de recherche programmable de Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"La liste des produits sélectionnés qui correspondent aux critères (ont un "
|
||||
"code-barres et pas d'image)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"L'action planifiée \"Images de produits : Obtenir des images de Google\" a "
|
||||
"été supprimée. Veuillez contacter votre administrateur pour restaurer "
|
||||
"l'action ou réinstaller le module \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Cette action est déjà planifiée. Veuillez réessayer plus tard."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Actions déclenchées"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Si une image doit être récupérée pour ce produit. Géré par un cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Vous avez sélectionné"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Votre clé API ou votre ID de moteur de recherche est incorrect."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "parmi ceux-ci seront traités."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"les produits ne seront pas traités \n"
|
||||
"car ils ont déjà une image ou leur numéro de code-barres \n"
|
||||
"n'est pas défini."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produits,"
|
||||
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/gu.po
Normal file
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/gu.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Product Variant"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
277
odoo-bringout-oca-ocb-product_images/product_images/i18n/he.po
Normal file
277
odoo-bringout-oca-ocb-product_images/product_images/i18n/he.po
Normal file
|
|
@ -0,0 +1,277 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Netta Waizer, 2022
|
||||
# Roy Sayag, 2022
|
||||
# Ha Ketem <haketem@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:54+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"נמצאו %(matching_images_count)s דימויים מתאימים ל%(product_count)s מוצרים."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "מפתח API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "קבלת תמונות"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr " השג תמונות מגוגל"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "מספר המוצרים לטיפול"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "מספר מוצרים שנבחרנו"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "דימוי למוצרים: קבלת דימויים של המוצרים מגוגל"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "וריאנט מוצר"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "דימויים למוצרים"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "הפעולה הזו כבר מתוזמנת, נא לנסות מאוחר יותר."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "פעולות שהופעלו"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "לא סומן"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "מוצרים,"
|
||||
274
odoo-bringout-oca-ocb-product_images/product_images/i18n/hi.po
Normal file
274
odoo-bringout-oca-ocb-product_images/product_images/i18n/hi.po
Normal file
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
|
||||
# Manav Shah, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "उत्पाद प्रकार"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/hr.po
Normal file
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/hr.po
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Matej Mijoč, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Pokrenute akcije"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/hu.po
Normal file
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/hu.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API kulcs"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Termékváltozat"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/hy.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/hy.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
297
odoo-bringout-oca-ocb-product_images/product_images/i18n/id.po
Normal file
297
odoo-bringout-oca-ocb-product_images/product_images/i18n/id.po
Normal file
|
|
@ -0,0 +1,297 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s gambar yang cocok telah ditemukan untuk "
|
||||
"%(product_count)s produk."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Karena hanya 10,000 produk yang dapat diproses per hari, sisanya akan\n"
|
||||
" diselesaikan besok.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Task untuk memproses produk di latar belakang sudah berjalan. Mohon coba "
|
||||
"lagi nanti."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Ambil gambar produk dari Google Images berdasarkan nomor barcode produk."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Dapatkan Gambar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Dapatkan Gambar dari Google Image"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Pengambilan Gambar Pending"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Jumlah produk tidak dapat diproses"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Jumlah produk untuk diproses"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Jumlah produk yang dipilih"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Mohon catat bahwa beberapa gabmar mungkin tidak bebas royalti. Anda sebaiknya tidak\n"
|
||||
" menggunakannya pada website Anda."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Gambar Produk: Dapatkan gambar produk dari Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Gambar-gambar produk"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produk Untuk Diproses"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Produk diproses di latar belakang. Gambar-gambar akan diupdate secara "
|
||||
"progresif. "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API Key dan ID Search Engine harus ditetapkan di Pengaturan Umum."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Custom Search API tidak diaktifkan di Google project Anda. Silakan kunjungi "
|
||||
"halaman project Google Cloud Platform Anda dan aktifkan, lalu coba lagi. "
|
||||
"Bila Anda baru saja mengaktifkan API, mohon tunggu beberapa menit sebelum "
|
||||
"mencoba lagi."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Pengidentifikasi Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Daftar produk-produk yang dipilih yang memenuhi kriteria (memiliki barcode "
|
||||
"dan tanpa gambar)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Action yang dijadwalkan \"Gambar Produk: Dapatkan gambar produk dari "
|
||||
"Google\" telah dihapus. Mohon kunjungi administrator Anda untuk memulihkan "
|
||||
"action tersebut atau menginstal ulang modul \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Action ini sudah dijadwalkan. Silakan coba lagi nanti"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Action yang dipicu"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Apakah gambar harus diambil untuk produk ini. Ditangani oleh cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Anda memilih"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "API Key atau ID Search Engine Anda tidak benar."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "diantaranya akan diproses."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"produk tidak akan\n"
|
||||
" diproses karena mereka antara sudah memiliki gambar atau nomor barcode\n"
|
||||
" mereka belum ditetapkan."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produk,"
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/is.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/is.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Eyða"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Vöruafbrigði"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/it.po
Normal file
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/it.po
Normal file
|
|
@ -0,0 +1,303 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 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:54+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2024\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"Sono state trovate %(matching_images_count)s immagini corrispondenti per "
|
||||
"%(product_count)s prodotti."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Poiché possono essere elaborati solo 10.000 prodotti al giorno, il resto sarà\n"
|
||||
"fatto domani.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Un compito per elaborare i prodotti in background è già in esecuzione. Si "
|
||||
"prega di riprovare più tardi."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Chiave API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Recupera le immagini del prodotto da Google Immagini in base al numero del "
|
||||
"codice a barre del prodotto stesso."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Ottieni immagini"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Ottieni immagini da Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Recupero immagine in attesa"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Numero di prodotti non elaborabili"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Numero di prodotti da elaborare"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Numero di prodotti selezionati"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Si prega di notare che alcune immagini potrebbero non essere gratuite. Non devi\n"
|
||||
"pubblicarle sul tuo sito web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Immagini dei prodotti: Ottieni le immagini dei prodotti da Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante prodotto"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Immagini prodotto"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Prodotti da elaborare"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"I prodotti vengono elaborati nello sfondo. Le immagini saranno aggiornate "
|
||||
"gradualmente."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID motore di ricerca"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"La chiave API e l'ID del motore di ricerca devono essere impostati in "
|
||||
"Impostazioni generali."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"L'API della ricerca personalizzata non è abilitato nel tuo progetto Google. "
|
||||
"Visita la pagina del progetto nella piattaforma Google Cloud e attivala per "
|
||||
"poi riprovare. Se hai abilitato l'API di recente, aspetta qualche minuto e "
|
||||
"riprova."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "L'identificatore del motore di ricerca programmabile di Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"L'elenco dei prodotti selezionati che soddisfano i criteri (hanno un codice "
|
||||
"a barre e nessuna immagine)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"L'azione pianificata \"Immagini prodotto: ottieni immagini del prodotto da "
|
||||
"Google\" è stata eliminata. Contatta l'amministratore per ripristinare "
|
||||
"l'azione o installare di nuovo il modulo \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Questa azione è già programmata. Si prega di riprovare più tardi."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Azioni attivate"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Se un'immagine deve essere recuperata per questo prodotto. Gestito da un "
|
||||
"cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Hai selezionato"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "La tua API Key o la tua Search Engine ID non sono corrette."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "di cui sarà elaborato."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"prodotti non saranno\n"
|
||||
"elaborati perché o hanno già un'immagine o il loro codice a barre\n"
|
||||
"non è impostato."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "prodotti,"
|
||||
286
odoo-bringout-oca-ocb-product_images/product_images/i18n/ja.po
Normal file
286
odoo-bringout-oca-ocb-product_images/product_images/i18n/ja.po
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 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:54+0000\n"
|
||||
"Last-Translator: Junko Augias, 2025\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr "%(matching_images_count)sの一致する画像が%(product_count)s のプロダクト用に見つかりました。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" 一日に一万プロダクトしか処理されないため、残りは\n"
|
||||
" 明日処理されます。\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr "バックグラウンドでプロダクトを処理するタスクがすでに実行されています。後でもう一度お試し下さい。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "APIキー"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "プロダクトのバーコード番号に基づき、Google画像からプロダクト画像を取得します。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "写真を入手する"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Google画像から写真を入手する"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Googleカスタム検索APIキー"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "画像フェッチ保留"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "処理不可能なプロダクト数"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "処理待ちのプロダクト数"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "選択済プロダクト数"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"一部の画像はロイヤリティフリーではない場合があります。これらの画像を\n"
|
||||
"ウェブサイトに掲載しないで下さい。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "プロダクト画像:Googleからプロダクト画像を入手する"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "プロダクトバリアント"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "プロダクト画像"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "処理待ちのプロダクト"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "商品はバックグラウンドで処理されます。画像は順次更新されます。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "検索エンジンID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "APIキーと検索エンジンIDは、一般設定で設定する必要があります。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Googleプロジェクトでカスタム検索APIが有効になっていません。Google Cloud "
|
||||
"Platformのプロジェクトページにアクセスし、有効にしてから再試行して下さい。このAPIを有効にしてすぐの場合は、数分待ってから再試行して下さい。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Googleプログラム可能な検索エンジンの識別子"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr "条件(バーコードがあり、画像がない)を満たす、選択された商品のリスト"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"スケジュールされていたアクション「プロダクト画像: Googleからプロダクト画像を取得 "
|
||||
"」が削除されました。管理者に連絡して、アクションを復元するか、モジュール\"product_images\"を再インストールしてください。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "このアクションはすでにスケジュールされています。後でもう一度試して下さい。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "トリガーされたアクション"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "このプロダクト用に画像を取得しなければならないかどうか。cronによって処理されます。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "以下を選択しました:"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "APIキーまたは検索エンジンIDが間違っています。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "そのどれが処理されるか"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"プロダクトは\n"
|
||||
" すでに画像があるか、バーコード番号が設定されていないため\n"
|
||||
"処理されません。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "プロダクト"
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/km.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/km.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "សោរAPI"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "លុបចោល"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ការផ្លាស់ប្តូរផលិតផល"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
286
odoo-bringout-oca-ocb-product_images/product_images/i18n/ko.po
Normal file
286
odoo-bringout-oca-ocb-product_images/product_images/i18n/ko.po
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(product_count)s 품목에 대해서 일치하는 이미지%(matching_images_count)s 개를 검색하였습니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" 일일 처리할 수 있는 품목의 수량은 10,000 개이므로 나머지는 내일 완료될 수\n"
|
||||
" 있습니다.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr "백그라운드에서 품목을 처리하는 작업이 이미 실행 중입니다. 나중에 다시 시도해주십시오."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API 키"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "품목의 바코드 번호를 기반으로 Google 이미지에서 품목 이미지를 가져옵니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "이미지 가져오기"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Google 이미지에서 사진 가져오기"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google 맞춤 검색 API 키"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "이미지 가져오기 대기 중"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "처리 불가 품목 수"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "처리할 품목 수"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "선택한 품목 수"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"일부 이미지는 저작권료가 부과될 수 있습니다. 귀하의 웹사이트에 게시해서는\n"
|
||||
" 안 됩니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "품목 이미지: Google에서 품목 이미지 가져오기"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "품목 세부선택"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "품목 이미지"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "처리할 품목"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "품목은 백그라운드에서 처리됩니다. 이미지가 계속해서 업데이트될 예정입니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "검색 엔진 ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API 키 및 검색 엔진 ID는 일반 설정에서 설정해야 합니다."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Google 프로젝트에서 맞춤 검색 API를 사용할 수 없습니다. Google 클라우드 플랫폼 프로젝트 페이지를 방문하여 활성화한 다음 "
|
||||
"다시 시도하십시오. 최근에 이 API를 활성화한 경우에는 몇 분 정도 기다린 후 다시 시도하십시오."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Google 프로그램 검색 엔진의 식별 부호"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr "기준에 부합하도록 선별된 품목 리스트 (바코드 있으나 이미지 없음)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"예약된 작업인 \"품목 이미지: Google에서 품목 이미지 가져오기\"가 삭제되었습니다. 해당 작업을 복원하거나 "
|
||||
"\"product_images\" 모듈을 다시 설치하려면 관리자에게 문의하십시오."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "이미 예약된 작업입니다. 나중에 다시 시도해주십시오."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "진행된 작업"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "이 품목에 대한 이미지 가져오기를 실행할 지 여부입니다. 크론에서 처리합니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "다음을 선택함"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "API 키 또는 검색 엔진 ID가 올바르지 않습니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "해당 내용이 처리됩니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"품목에 이미 이미지가\n"
|
||||
" 존재하거나 바코드 번호가 설정되어 있지 않기 때문에, 해당 작업이\n"
|
||||
" 처리되지 않았습니다."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "품목,"
|
||||
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/lo.po
Normal file
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/lo.po
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@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:54+0000\n"
|
||||
"Last-Translator: Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "ຍົກເລີກ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
276
odoo-bringout-oca-ocb-product_images/product_images/i18n/lt.po
Normal file
276
odoo-bringout-oca-ocb-product_images/product_images/i18n/lt.po
Normal file
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 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:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API raktas"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Naudokite nuotraukas iš Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkto variantas"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/lv.po
Normal file
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/lv.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# JanisJanis <jbojars@gmail.com>, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@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:54+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produkta Veids"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Ierosinātās darbības"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/ml.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/ml.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
# Hasna <hasnausmantu@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:54+0000\n"
|
||||
"Last-Translator: Hasna <hasnausmantu@gmail.com>, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "റദ്ദാക്കുക"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "പ്രോഡക്റ്റ് വേരിയന്റ്"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "ഉൽപ്പന്ന ചിത്രങ്ങൾ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "ഉൽപ്പന്നങ്ങൾ,"
|
||||
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/mn.po
Normal file
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/mn.po
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API түлхүүр"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Цуцлах"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Барааны хувилбар"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/ms.po
Normal file
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/ms.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varian Produk"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/nb.po
Normal file
273
odoo-bringout-oca-ocb-product_images/product_images/i18n/nb.po
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Marius Stedjan <marius@stedjan.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:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API-nøkkel"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/nl.po
Normal file
303
odoo-bringout-oca-ocb-product_images/product_images/i18n/nl.po
Normal file
|
|
@ -0,0 +1,303 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s overeenkomende afbeeldingen zijn gevonden voor "
|
||||
"%(product_count)s producten."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Aangezien er slechts 10.000 producten per dag kunnen worden verwerkt, wordt de rest\n"
|
||||
" morgen gedaan.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Er wordt al een taak uitgevoerd om producten op de achtergrond te verwerken."
|
||||
" Probeer het later opnieuw."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Haal productafbeeldingen op uit Google Afbeeldingen op basis van het "
|
||||
"barcodenummer van het product."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Foto's ophalen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Afbeeldingen ophalen van Google Afbeeldingen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Afbeelding ophalen in behandeling"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst geupdate op"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Aantal onverwerkbare producten"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Aantal te verwerken producten"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Aantal geselecteerde producten"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Houd er rekening mee dat sommige afbeeldingen mogelijk niet royaltyvrij zijn. Je zou niet\n"
|
||||
" publiceer deze op je website."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Productafbeeldingen: ontvang productafbeeldingen van Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Productvariant"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Productafbeeldingen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Producten om te verwerken:"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Op de achtergrond worden producten verwerkt. Afbeeldingen worden geleidelijk"
|
||||
" bijgewerkt."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Zoekmachine-ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"De API Key en zoekmachine-ID moeten worden ingesteld in de algemene "
|
||||
"instellingen."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"De Custom Search API is niet ingeschakeld in je Google-project. Ga naar je "
|
||||
"Google Cloud Platform-projectpagina, schakel deze in en probeer het opnieuw."
|
||||
" Als je deze API onlangs heeft ingeschakeld, wacht dan een paar minuten en "
|
||||
"probeer het opnieuw."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "De identifier van de Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"De lijst met geselecteerde producten die aan de criteria voldoen (met een "
|
||||
"barcode en geen afbeelding)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"De geplande actie 'Productafbeeldingen: haal productafbeeldingen van Google'"
|
||||
" is verwijderd. Neem contact op met je beheerder om de actie te laten "
|
||||
"herstellen of om de module \"product_images\" opnieuw te installeren."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Deze actie is al gepland. Probeer het later opnieuw."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Getriggerde acties"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Of er een afbeelding moet worden opgehaald voor dit product. Behandeld door "
|
||||
"een cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Je hebt"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Je API Key of je zoekmachine-ID is onjuist."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "ervan zullen verwerkt worden."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"producten zullen niet zijn\n"
|
||||
" verwerkt omdat ze ofwel al een afbeelding of hun barcode hebben\n"
|
||||
" nummer is niet ingesteld."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "producten geselecteerd,"
|
||||
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/no.po
Normal file
271
odoo-bringout-oca-ocb-product_images/product_images/i18n/no.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Lars Aam <lars.aam@vikenfiber.no>, 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:54+0000\n"
|
||||
"Last-Translator: Lars Aam <lars.aam@vikenfiber.no>, 2023\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Kanseller"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
302
odoo-bringout-oca-ocb-product_images/product_images/i18n/pl.po
Normal file
302
odoo-bringout-oca-ocb-product_images/product_images/i18n/pl.po
Normal file
|
|
@ -0,0 +1,302 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Maksym <ms@myodoo.pl>, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"Znaleziono %(matching_images_count)s pasujących obrazów dla "
|
||||
"%(product_count)s produktów."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
"Ponieważ dziennie można przetworzyć tylko 10 000 produktów, pozostałe zostaną przetworzone jutro.\n"
|
||||
"</span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Zadanie przetwarzania produktów w tle jest już uruchomione. Spróbuj ponownie"
|
||||
" później."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Pobieranie obrazów produktów z Google Images na podstawie numeru kodu "
|
||||
"kreskowego produktu."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Pobierz zdjęcia"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Pobieranie zdjęć z usługi Obrazy Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Klucz API wyszukiwania niestandardowego Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Oczekiwanie na pobranie obrazu"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Liczba nieprzetworzonych produktów"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Liczba produktów do przetworzenia"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Liczba wybranych produktów"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Należy pamiętać, że niektóre obrazy mogą nie być wolne od tantiem. Nie należy\n"
|
||||
"publikować ich na swojej stronie WWW."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Obrazy produktów: Pobierz obrazy produktów z Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Wariant produktu"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Zdjęcia produktów"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produkty do przetworzenia"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "Produkty są przetwarzane w tle. Obrazy będą aktualizowane stopniowo."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Identyfikator wyszukiwarki"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Klucz API i identyfikator wyszukiwarki muszą być ustawione w Ustawieniach "
|
||||
"ogólnych."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Interfejs API wyszukiwania niestandardowego nie jest włączony w projekcie "
|
||||
"Google. Odwiedź stronę projektu Google Cloud Platform i włącz go, a "
|
||||
"następnie spróbuj ponownie. Jeśli API zostało włączone niedawno, odczekaj "
|
||||
"kilka minut i spróbuj ponownie."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Identyfikator programowalnej wyszukiwarki Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Lista wybranych produktów, które spełniają kryteria (mają kod kreskowy i nie"
|
||||
" mają obrazu)."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Zaplanowana akcja \"Zdjęcia produktów: Pobierz obrazy produktów z Google\" "
|
||||
"została usunięta. Skontaktuj się z administratorem, aby przywrócić akcję lub"
|
||||
" ponownie zainstalować moduł \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Ta akcja jest już zaplanowana. Spróbuj ponownie później."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Wyzwalane akcje"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Czy obraz musi zostać pobrany dla tego produktu. Obsługiwane przez cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Zaznaczyłeś"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Klucz API lub identyfikator wyszukiwarki są nieprawidłowe."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "z których zostaną przetworzone."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"produkty nie będą\n"
|
||||
"przetworzone, ponieważ albo mają już obraz, albo ich numer kodu kreskowego nie jest ustawiony.."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produkty,"
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/pt.po
Normal file
275
odoo-bringout-oca-ocb-product_images/product_images/i18n/pt.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 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:54+0000\n"
|
||||
"Last-Translator: Nuno Silva <nuno.silva@arxi.pt>, 2022\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variante de Artigo"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,302 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 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:54+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s imagens correspondentes foram encontradas para "
|
||||
"%(product_count)s produtos."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Já que somente 10.000 produtos podem ser processados por dia, o restante será\n"
|
||||
" feito amanhã.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Uma tarefa para processar produtos em segundo plano já está em execução. "
|
||||
"Tente novamente mais tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Obtenha imagens de produtos do Google Imagens com base no número do código "
|
||||
"de barras do produto."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obter imagens"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obter fotos do Google Imagens"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Chave da API de pesquisa personalizada do Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Busca de imagem pendente"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Número de produtos não processados"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Número de produtos a serem processados"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Número de produtos selecionados"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Observe que algumas imagens podem não ser isentas de royalties. Você não deve\n"
|
||||
" publicá-las em seu site."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Imagens de produtos: obter imagens de produtos do Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variação do Produto"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Imagens de produtos"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produtos a serem processados"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Os produtos são processados em segundo plano. As imagens serão atualizadas "
|
||||
"progressivamente."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID do mecanismo de pesquisa"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"A chave de API e o ID do mecanismo de pesquisa devem ser definidos nas "
|
||||
"configurações gerais."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"A API de pesquisa personalizada não está ativada em seu projeto do Google. "
|
||||
"Visite a página do seu projeto do Google Cloud Platform, ative-a e tente "
|
||||
"novamente. Se você ativou essa API recentemente, aguarde alguns minutos e "
|
||||
"tente novamente."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "O identificador do mecanismo de pesquisa programável do Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"A lista de produtos selecionados que atendem aos critérios (têm um código de"
|
||||
" barras e nenhuma imagem)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"A ação programada “Imagens do produto: Obter imagens de produtos do Google” "
|
||||
"foi excluída. Entre em contato com o administrador para que a ação seja "
|
||||
"restaurada ou para reinstalar o módulo “product_images”."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Essa ação já está programada. Tente novamente mais tarde."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Ações engatilhadas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Se uma imagem deve ser obtida para esse produto. Manipulado por um cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Você selecionou"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Sua chave de API ou seu ID do mecanismo de pesquisa está incorreto."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "dos quais serão processados."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"produtos não serão\n"
|
||||
" processados porque já têm uma imagem ou o número do código de barras\n"
|
||||
" não está definido."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produtos,"
|
||||
300
odoo-bringout-oca-ocb-product_images/product_images/i18n/ro.po
Normal file
300
odoo-bringout-oca-ocb-product_images/product_images/i18n/ro.po
Normal file
|
|
@ -0,0 +1,300 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Larisa_nexterp, 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:54+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s imagini potrivite au fost găsite pentru "
|
||||
"%(product_count)s produse."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"O dată ce o sarcină de procesare a produselor în fundal este deja în curs de"
|
||||
" execuție. Vă rugăm să încercați din nou mai târziu."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Cheie API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Preiați imaginile produselor din Google Images pe baza numărului de bare al "
|
||||
"produsului."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Obțineți imagini"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Obține imagini din Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Cheie API Google Custom Search"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Imaginea așteaptă preluarea"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Numărul de produse neînregistrabile"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Numărul de produse de procesat"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Numărul de produse selectate"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Vă rugăm să rețineți că unele imagini ar putea nu fi libere de drepturi de "
|
||||
"autor. Nu ar trebui să publicați acestea pe site-ul dvs."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Imagini produs: Obțineți imagini produs din Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantă produs"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Imagini produs"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produse de procesat"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Produsele sunt procesate în fundal. Imaginile vor fi actualizate progresiv."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID motor de căutare"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Cheia API și ID-ul motorului de căutare trebuie să fie setate în Setări "
|
||||
"generale."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"API-ul de căutare personalizată nu este activat în proiectul dvs. Google. Vă"
|
||||
" rugăm să vizitați pagina proiectului dvs. Google Cloud Platform și să l "
|
||||
"activați, apoi să încercați din nou. Dacă ați activat acest API recent, vă "
|
||||
"rugăm să așteptați câteva minute și să încercați din nou."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Identificatorul motorului de căutare programabil Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Lista de produse selectate care îndeplinesc criteriile (au un cod de bare și"
|
||||
" nu au imagine)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Acțiunea programată \"Imagini produs: Obțineți imagini produs din Google\" a"
|
||||
" fost ștearsă. Vă rugăm să contactați administratorul dvs. pentru a restaura"
|
||||
" acțiunea sau pentru a reinstala modulul \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
"Această acțiune este deja programată. Vă rugăm să încercați din nou mai "
|
||||
"târziu."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Acțiuni declanșate"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Dacă trebuie să se preia o imagine pentru acest produs. Manipulat de un "
|
||||
"cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Ați selectat"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Cheia API sau ID-ul motorului de căutare este incorect."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "din care vor fi procesate."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"produse nu vor fi\n"
|
||||
" procesate deoarece au deja o imagine sau numărul de bare\n"
|
||||
" nu este setat."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produse,"
|
||||
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/ru.po
Normal file
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/ru.po
Normal file
|
|
@ -0,0 +1,301 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 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:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"для %(product_count)s товаров найдено %(matching_images_count)s подходящих "
|
||||
"изображений."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Задача по обработке продуктов в фоновом режиме уже запущена. Пожалуйста, "
|
||||
"повторите попытку позже."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Ключ API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Получение изображений продуктов из Google Images на основе номера штрих-кода"
|
||||
" продукта."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Получить фотографии"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Получение изображений из Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Ключ API пользовательского поиска Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Ожидается получение изображения"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Количество неперерабатываемой продукции"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Количество продуктов для обработки"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Количество выбранных продуктов"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Обратите внимание, что некоторые изображения не могут быть свободны от авторских прав. Вам не следует\n"
|
||||
" публиковать их на своем сайте."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Изображения продуктов: Получайте изображения продуктов из Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Вариант продукта"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Изображения продукта"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Продукты для обработки"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Продукты обрабатываются в фоновом режиме. Изображения будут обновляться "
|
||||
"постепенно."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Идентификатор поисковой системы"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Ключ API и идентификатор поисковой системы должны быть заданы в общих "
|
||||
"настройках."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"API пользовательского поиска не включен в вашем проекте Google. Посетите "
|
||||
"страницу проекта Google Cloud Platform и включите его, а затем повторите "
|
||||
"попытку. Если вы включили этот API недавно, подождите несколько минут и "
|
||||
"повторите попытку."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Идентификатор программируемой поисковой системы Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Список отобранных товаров, которые соответствуют заданным критериям (имеют "
|
||||
"штрихкод и не имеют изображения)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Запланированное действие \"Изображения продуктов: Получение изображений "
|
||||
"товаров из Google\" было удалено. Обратитесь к администратору, чтобы "
|
||||
"восстановить действие или переустановить модуль \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Это действие уже запланировано. Пожалуйста, повторите попытку позже."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Запущенные действия"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Должно ли быть получено изображение для этого продукта. Обрабатывается cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Вы выбрали"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Ваш ключ API или идентификатор поисковой системы неверны."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "из которых будут обработаны."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"продукты не будут\n"
|
||||
" потому что на них либо уже есть изображение, либо их штрихкод\n"
|
||||
" номер штрихкода не установлен."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "продукты,"
|
||||
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/sk.po
Normal file
272
odoo-bringout-oca-ocb-product_images/product_images/i18n/sk.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Kľúč"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušené"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varianta produktu"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
277
odoo-bringout-oca-ocb-product_images/product_images/i18n/sl.po
Normal file
277
odoo-bringout-oca-ocb-product_images/product_images/i18n/sl.po
Normal file
|
|
@ -0,0 +1,277 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Vida Potočnik <vida.potocnik@mentis.si>, 2022
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Aleš Pipan, 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:54+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Prekliči"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Različica proizvoda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Sprožena dejanja"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/sq.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/sq.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
294
odoo-bringout-oca-ocb-product_images/product_images/i18n/sr.po
Normal file
294
odoo-bringout-oca-ocb-product_images/product_images/i18n/sr.po
Normal file
|
|
@ -0,0 +1,294 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 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:54+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s pronađene slike za %(product_count)s proizvoda."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Zadatak za obradu proizvoda u pozadini već je pokrenut. Molimo pokušajte "
|
||||
"ponovo kasnije."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API ljuč"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Preuzmite slike proizvoda sa Google slika na osnovu broja barkoda proizvoda."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Dobijte slike"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Get Pictures from Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Custom Search API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Image Fetch Pending"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Number of product unprocessable"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Number of products to process"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Number of selected products"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Product Images: Get product images from Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijante proizvoda"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Product images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Products To Process"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Search Engine ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "The API Key and Search Engine ID must be set in the General Settings."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "The identifier of the Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "This action is already scheduled. Please try again later."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Triggered actions"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Whether an image must be fetched for this product. Handled by a cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "You selected"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Your API Key or your Search Engine ID is incorrect."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "of which will be processed."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "proizvodi,"
|
||||
299
odoo-bringout-oca-ocb-product_images/product_images/i18n/sv.po
Normal file
299
odoo-bringout-oca-ocb-product_images/product_images/i18n/sv.po
Normal file
|
|
@ -0,0 +1,299 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Haojun Zou <apollo_zhj@msn.com>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Simon S, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 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:54+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s matchande bilder har hittats för %(product_count)s"
|
||||
" produkter."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"En uppgift för att bearbeta produkter i bakgrunden är redan igång. Vänligen "
|
||||
"försök igen senare."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API-nyckel"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Hämta produktbilder från Google Images baserat på produktens "
|
||||
"streckkodsnummer."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Hämta bilder"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Hämta bilder från Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "API-nyckel för Google anpassad sökning"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Bildhämtning pågår"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Antal produkter som inte kan bearbetas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Antal produkter som ska bearbetas"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Antal utvalda produkter"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Observera att vissa bilder kanske inte är royaltyfria. Du bör inte\n"
|
||||
" publicera dessa på din webbplats."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Produktbilder: Hämta produktbilder från Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Produktbilder"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Produkter till process"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Produkterna bearbetas i bakgrunden. Bilder kommer att uppdateras successivt."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Sökmotor-ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"API-nyckeln och sökmotor-ID:t måste anges i de allmänna inställningarna."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"API:t för anpassad sökning är inte aktiverat i ditt Google-projekt. Gå till "
|
||||
"projektsidan för Google Cloud Platform och aktivera det och försök sedan "
|
||||
"igen. Om du aktiverade detta API nyligen, vänta några minuter och försök "
|
||||
"igen."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Identifieraren för Googles programmerbara sökmotor"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Listan över utvalda produkter som uppfyller kriterierna (har en streckkod "
|
||||
"och ingen bild)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Den schemalagda åtgärden \"Produktbilder: Hämta produktbilder från Google\" "
|
||||
"har tagits bort. Kontakta din administratör för att få åtgärden återställd "
|
||||
"eller för att installera om modulen \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Denna åtgärd är redan planerad. Vänligen försök igen senare."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Utlösta åtgärder"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "Om en bild måste hämtas för den här produkten. Hanteras av en cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Du valde"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Din API-nyckel eller ditt sökmotor-ID är felaktigt."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "av vilka kommer att bearbetas."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"produkter kommer inte att\n"
|
||||
" eftersom de antingen redan har en bild eller för att streckkodsnumret\n"
|
||||
" nummer inte är angivet."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "produkter,"
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/sw.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/sw.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/ta.po
Normal file
267
odoo-bringout-oca-ocb-product_images/product_images/i18n/ta.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr ""
|
||||
294
odoo-bringout-oca-ocb-product_images/product_images/i18n/th.po
Normal file
294
odoo-bringout-oca-ocb-product_images/product_images/i18n/th.po
Normal file
|
|
@ -0,0 +1,294 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 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:54+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"พบรูปภาพที่ตรงกัน %(matching_images_count)s สำหรับสินค้า %(product_count)s"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" เนื่องจากสามารถประมวลผลสินค้าได้เพียง 10,000 รายการต่อวัน ส่วนที่เหลือจะดำเนินการ\n"
|
||||
" ในวันพรุ่งนี้\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"งานในการประมวลผลผลิตภัณฑ์ในพื้นหลังกำลังทำงานอยู่แล้ว "
|
||||
"กรุณาลองใหม่อีกครั้งในภายหลัง"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่าการกำหนดค่า"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "ดึงภาพสินค้าจาก Google Images ตามหมายเลขบาร์โค้ดของสินค้า"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "รับรูปภาพ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "รับรูปภาพจาก Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "คีย์ API การค้นหาที่กำหนดเองของ Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "รอการดึงข้อมูลรูปภาพ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "จำนวนสินค้าที่ไม่สามารถประมวลผลได้"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "จำนวนสินค้าที่จะดำเนินการ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "จำนวนสินค้าที่เลือก"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"โปรดทราบว่ารูปภาพบางรูปอาจไม่ไม่มีค่าลิขสิทธิ์ คุณไม่ควร\n"
|
||||
"เผยแพร่สิ่งเหล่านี้บนเว็บไซต์ของคุณ"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "รูปภาพผลิตภัณฑ์: รับรูปภาพผลิตภัณฑ์จาก Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "ตัวแปรสินค้า"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "รูปภาพสินค้า"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "ผลิตภัณฑ์ที่ต้องดำเนินการ"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"สินค้าได้รับการประมวลผลในเบื้องหลังแล้ว "
|
||||
"รูปภาพจะได้รับการอัปเดตอย่างต่อเนื่อง"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "รหัสเครื่องมือค้นหา"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "ต้องตั้งค่าคีย์ API และรหัสเครื่องมือค้นหาในการตั้งค่าทั่วไป"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Custom Search API ไม่ได้เปิดใช้งานในโปรเจ็กต์ Google ของคุณ "
|
||||
"โปรดไปที่หน้าโปรเจ็กต์ Google Cloud Platform ของคุณแล้วเปิดใช้งาน "
|
||||
"จากนั้นลองอีกครั้ง หากคุณเปิดใช้งาน API นี้ โปรดรอสักครู่แล้วลองอีกครั้ง"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "ตัวระบุของ Google Programmable Search Engine"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr "รายการสินค้าที่ถูกคัดเลือกเข้าเกณฑ์ (มีบาร์โค้ด และไม่มีรูปภาพ)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"การดำเนินการตามกำหนดเวลา \"รูปภาพผลิตภัณฑ์: รับรูปภาพผลิตภัณฑ์จาก Google\" "
|
||||
"ได้ถูกลบแล้ว "
|
||||
"โปรดติดต่อผู้ดูแลระบบของคุณเพื่อเรียกคืนการดำเนินการหรือติดตั้งโมดูล "
|
||||
"\"product_images\" ใหม่"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "การดำเนินการนี้ถูกกำหนดไว้แล้ว กรุณาลองใหม่อีกครั้งในภายหลัง"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "การกระทำที่ทริกเกอร์"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "ต้องดึงรูปภาพสำหรับผลิตภัณฑ์นี้หรือไม่ จัดการโดย cron"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "คุณเลือกแล้ว"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "รหัส API หรือ Search Engine ID ของคุณไม่ถูกต้อง"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "ซึ่งจะถูกดำเนินการ"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"สินค้าจะไม่ได้รับ\n"
|
||||
" การดำเนินการเนื่องจากมีรูปภาพอยู่แล้วหรือไม่ได้ตั้งค่า\n"
|
||||
" หมายเลขบาร์โค้ด"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "สินค้า,"
|
||||
302
odoo-bringout-oca-ocb-product_images/product_images/i18n/tr.po
Normal file
302
odoo-bringout-oca-ocb-product_images/product_images/i18n/tr.po
Normal file
|
|
@ -0,0 +1,302 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# omerfarukcakmak <omerfarukckmk@protonmail.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.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:54+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(product_count)s ürünleri için %(matching_images_count)s uyumlu görseller "
|
||||
"bulundu."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
"Günde sadece 10.000 ürün işlenebildiğinden, \n"
|
||||
"geri kalanı yarın yapılacak.\n"
|
||||
"</span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Ürünleri arka planda işleme görevi zaten çalışıyor. Lütfen daha sonra tekrar"
|
||||
" deneyiniz."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API Anahtarı"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Yapılandırma Ayarları"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Ürünün barkod numarasına göre Google Görseller'den ürün resimlerini alın."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Resimleri Al"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Google Görseller'den Resim Alın"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google Özel Arama API Anahtarı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Resim Alma Beklemede"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "İşlenemeyen ürün sayısı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "İşlenecek ürün sayısı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Seçilen ürün sayısı"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Lütfen bazı resimlerin telifsiz olmayabileceğini unutmayın. \n"
|
||||
"Bunları web sitenizde yayınlamamalısınız."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Ürün Resimleri: Google'dan ürün resimleri alın"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Ürün Varyantı"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Ürün resimleri"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "İşlenecek Ürünler"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Ürünler arka planda işlenir. Resimler aşamalı olarak güncellenecektir."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "Arama Motoru Kimliği"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"API Anahtarı ve Arama Motoru Kimliği, Genel Ayarlar'da ayarlanmalıdır."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"Google projenizde Özel Arama API'sı etkinleştirilmemiş. Lütfen Google Cloud "
|
||||
"Platform proje sayfanızı ziyaret edin ve etkinleştirin, ardından yeniden "
|
||||
"deneyin. Bu API'yi yakın zamanda etkinleştirdiyseniz, lütfen birkaç dakika "
|
||||
"bekleyin ve yeniden deneyin."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Google Programlanabilir Arama Motorunun tanımlayıcısı"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Kriterleri karşılayan seçili ürünlerin listesi (barkodlu ve görselsiz)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Planlanmış \"Ürün Resimleri: Google'dan ürün resimleri al\" işlemi silindi. "
|
||||
"İşlemin geri yüklenmesi veya \"product_images\" modülünü yeniden yüklemek "
|
||||
"için lütfen yöneticinizle iletişime geçin."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Bu eylem zaten planlanmış. Lütfen daha sonra tekrar deneyiniz."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Tetiklenen eylemler"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Bu ürün için bir resmin getirilmesi gerekip gerekmediği. Bir cron tarafından"
|
||||
" yönetilir."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Seçtin"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "API Anahtarınız veya Arama Motoru Kimliğiniz yanlış."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "olanlardan işlenecektir."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"Ürünler ya görseli olduğu için ya da barkod numarası ayarlanmadığı için "
|
||||
"işleme alınmayacaktır."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "ürünler,"
|
||||
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/uk.po
Normal file
301
odoo-bringout-oca-ocb-product_images/product_images/i18n/uk.po
Normal file
|
|
@ -0,0 +1,301 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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:54+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s знайдено відповідні зображення для товарів "
|
||||
"%(product_count)s."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Оскільки в день можна обробити лише 10 000 товарів, решту \n"
|
||||
"буде зроблено завтра.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Завдання обробки товарів у фоновому режимі вже виконується. Будь-ласка "
|
||||
"спробуйте пізніше."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Ключ API "
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Отримайте зображення товару з Google Images на основі номера штрих-коду "
|
||||
"товару."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Отримати зображення"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Отримати зображення з Google Images"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Ключ API кастомного пошуку Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Очікує отримання зображення"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Кількість товару, який не обробляється"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Кількість товару для обробки"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Кількість обраних товарів"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Зауважте, що деякі зображення можуть бути не безкоштовними. Ви не повинні \n"
|
||||
"публікувати їх на своєму веб-сайті."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Зображення товарів. Отримайте зображення товарів з Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Варіант товару"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Зображення товарів"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Товари для обробки"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Товари обробляються у фоновому режимі. Зображення будуть поступово "
|
||||
"оновлюватися."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID пошукової системи"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Ключ API та ID пошукової системи мають бути встановлені в Загальних "
|
||||
"налаштуваннях."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"API користувацького пошуку не ввімкнено у вашому проекті Google. Відвідайте "
|
||||
"сторінку проекту Google Cloud Platform і ввімкніть її, а потім повторіть "
|
||||
"спробу. Якщо ви нещодавно ввімкнули цей API, зачекайте кілька хвилин і "
|
||||
"повторіть спробу."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Ідентифікатор програмованої пошукової системи Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Список вибраних товарів, які відповідають критеріям (мають штрих-код і немає"
|
||||
" зображення)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Заплановану дію \"Зображення товарів: отримувати зображення товарів від "
|
||||
"Google\" видалено. Зверніться до свого адміністратора, щоб відновити дію або"
|
||||
" перевстановити модуль \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Ця акція вже запланована. Будь-ласка спробуйте пізніше."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Запущені дії"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Чи потрібно завантажувати зображення для цього продукту. Обробляється cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Ви обрали"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Ваш ключ API або ID пошукової системи невірні."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "якого буде оброблено."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"товари не будуть оброблені, \n"
|
||||
"оскільки вони вже мають зображення або їх номер штрих-коду \n"
|
||||
"не встановлено."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "товари,"
|
||||
298
odoo-bringout-oca-ocb-product_images/product_images/i18n/vi.po
Normal file
298
odoo-bringout-oca-ocb-product_images/product_images/i18n/vi.po
Normal file
|
|
@ -0,0 +1,298 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 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:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr ""
|
||||
"%(matching_images_count)s hình ảnh trùng khớp được tìm thấy cho "
|
||||
"%(product_count)s sản phẩm."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" Vì chỉ có 10.000 sản phẩm cps thể được xử lý mỗi ngày, số còn lại sẽ được\n"
|
||||
" hoàn thành vào ngày mai.\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr ""
|
||||
"Một nhiệm vụ xử lý sản phẩm trong nền đang chạy. Vui lòng thử lại sau."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "Khóa API"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr ""
|
||||
"Tìm nạp hình ảnh sản phẩm từ Google Hình ảnh dựa trên số mã vạch của sản "
|
||||
"phẩm."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "Lấy hình ảnh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "Lấy hình ảnh từ Google Hình ảnh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Khóa API tìm kiếm tùy chỉnh của Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "Đang chờ tìm nạp hình ảnh"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Chỉnh sửa lần cuối vào"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "Số sản phẩm không thể xử lý"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "Số sản phẩm cần xử lý"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "Số sản phẩm được lựa chọn"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"Xin lưu ý rằng một số hình ảnh có thể không được miễn phí bản quyền. Bạn không nên\n"
|
||||
" đăng những hình ảnh đó lên trang web."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "Hình ảnh sản phẩm: Lấy hình ảnh sản phẩm từ Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "Hình ảnh sản phẩm"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "Sản phẩm cần xử lý"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr ""
|
||||
"Sản phẩm đang được xử lý trong nền. Hình ảnh sẽ được cập nhật dần dần."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "ID công cụ tìm kiếm"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr ""
|
||||
"Khoá API và ID công cụ tìm kiếm phải được cài đặt trong phần Cài đặt chung."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"API tìm kiếm tùy chỉnh không được bật trong dự án Google của bạn. Vui lòng "
|
||||
"truy cập trang dự án Google Cloud Platform của bạn và bật lên, sau đó thử "
|
||||
"lại. Nếu bạn đã bật API này gần đây, vui lòng đợi vài phút và thử lại."
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Mã định danh của Công cụ tìm kiếm có thể lập trình của Google"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr ""
|
||||
"Danh sách sản phẩm được lựa chọn đạt tiêu chí (có mã vạch và không có hình "
|
||||
"ảnh)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr ""
|
||||
"Hành động được lên lịch \"Hình ảnh sản phẩm: Lấy hình ảnh sản phẩm từ "
|
||||
"Google\" đã bị xóa. Vui lòng liên hệ với quản trị viên để khôi phục hành "
|
||||
"động hoặc cài đặt lại phân hệ \"product_images\"."
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "Hành động này đã được lên lịch. Vui lòng thử lại sau. "
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "Hành động được kích hoạt"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr ""
|
||||
"Liệu một hình ảnh có phải được tìm nạp cho sản phẩm này hay không. Được xử "
|
||||
"lý bởi một cron."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "Bạn đã chọn"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "Khoá API hoặc ID công cụ tìm kiếm của bạn không chính xác."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "mà sẽ được xử lý."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"sản phẩm sẽ không\n"
|
||||
" được xử lý bởi vì chúng đã có hình ảnh hoặc mã vạch của chúng\n"
|
||||
" không được thiết lập."
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "sản phẩm,"
|
||||
|
|
@ -0,0 +1,281 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jeffery CHEN <jeffery9@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:54+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2022\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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr "已找到%(matching_images_count)s个与%(product_count)s个产品相匹配的图像。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" 由于每天只能处理10,000件产品,其余的将在明天完成。\n"
|
||||
" 明天完成。\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr "一个在后台处理产品的任务已经在运行。请稍后再试。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API密钥"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置设置"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "根据产品的条形码号码,从谷歌图像中获取产品图像。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "使用条形码获取产品图片"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "从谷歌图像中获取图像"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "谷歌自定义搜索API密钥"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "图像获取待定"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "无法加工的产品数量"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "要处理的产品数量"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "所选产品的数量"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"请注意,有些图像可能不是免版税的。您不应该\n"
|
||||
" 在您的网站上发布这些图像。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "产品图像。从谷歌获取产品图像"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "产品变体"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "产品图像"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "要加工的产品"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "产品是在后台处理的。图像将被逐步更新。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "搜索引擎ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API密钥和搜索引擎ID必须在常规设置中设置。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr "您的谷歌项目中没有启用自定义搜索API。请访问您的谷歌云平台项目页面并启用它,然后重试。如果您最近启用了这个API,请等待几分钟再重试。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "谷歌可编程搜索引擎的识别器"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr "符合标准的所选产品列表(有条形码,无图像)。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr "计划中的动作 \"产品图像。从谷歌获取产品图像 \"已被删除。请联系您的管理员,恢复该操作或重新安装模块 \"product_images\"。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "这个动作已经安排好了。请稍后再试。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "触发动作"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "是否必须为该产品获取图像。由定时任务处理。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "您选择了"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "您的API密钥或您的搜索引擎ID不正确。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "如果这个送货被拆分,该字段连接到包括了已经处理的部分的送货。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"产品将不会被处理\n"
|
||||
" 因为它们要么已经有一个图像,要么它们的条形码号码没有被设置。\n"
|
||||
" 号码没有被设置。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "产品。"
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_images
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 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:54+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: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(matching_images_count)s matching images have been found for "
|
||||
"%(product_count)s products."
|
||||
msgstr "已為 %(product_count)s 個產品找到 %(matching_images_count)s 個匹配的圖片。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" As only 10,000 products can be processed per day, the remaining will be\n"
|
||||
" done tomorrow.\n"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span attrs=\"{'invisible': [('nb_products_selected', '<=', 10000)]}\">\n"
|
||||
" 由於每天只能處理 10,000 個產品,其餘的將在明天完成。\n"
|
||||
" </span>"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A task to process products in the background is already running. Please try "
|
||||
"againlater."
|
||||
msgstr "在背景處理產品的任務已經在運行。請稍後再試。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "API Key"
|
||||
msgstr "API 金鑰"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置設定"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_fetch_image_wizard
|
||||
msgid ""
|
||||
"Fetch product images from Google Images based on the product's barcode "
|
||||
"number."
|
||||
msgstr "根據產品的條碼編號從 Google 圖片中獲取產品圖片。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "Get Pictures"
|
||||
msgstr "獲取圖片"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.act_window,name:product_images.product_product_action_get_pic_with_barcode
|
||||
#: model:ir.actions.act_window,name:product_images.product_template_action_get_pic_with_barcode
|
||||
msgid "Get Pictures from Google Images"
|
||||
msgstr "從 Google 圖片獲取圖片"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_custom_search_key
|
||||
msgid "Google Custom Search API Key"
|
||||
msgstr "Google 自定義搜索 API 密鑰"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Image Fetch Pending"
|
||||
msgstr "圖像提取待處理"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_unable_to_process
|
||||
msgid "Number of product unprocessable"
|
||||
msgstr "不可執行產品數"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_to_process
|
||||
msgid "Number of products to process"
|
||||
msgstr "要執行的產品數量"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__nb_products_selected
|
||||
msgid "Number of selected products"
|
||||
msgstr "所選產品數量"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"Please note that some images might not be royalty-free. You should not\n"
|
||||
" publish these on your website."
|
||||
msgstr ""
|
||||
"請注意,某些圖像可能不是免版稅的。你不應該\n"
|
||||
" 在您的網站上發布這些內容。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.actions.server,name:product_images.ir_cron_fetch_image_ir_actions_server
|
||||
#: model:ir.cron,cron_name:product_images.ir_cron_fetch_image
|
||||
msgid "Product Images: Get product images from Google"
|
||||
msgstr "產品圖片:從 Google 獲取產品圖片"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "產品款式"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Product images"
|
||||
msgstr "產品圖片"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid "Products To Process"
|
||||
msgstr "要執行的產品"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Products are processed in the background. Images will be updated "
|
||||
"progressively."
|
||||
msgstr "產品在後台處理。圖片將逐步更新。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.res_config_settings_view_form
|
||||
msgid "Search Engine ID"
|
||||
msgstr "搜索引擎 ID"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "The API Key and Search Engine ID must be set in the General Settings."
|
||||
msgstr "API Key 和 Search Engine ID 必須在 General Settings 中設置。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
msgstr ""
|
||||
"您的 Google 項目中未啟用自定義搜索 API。請訪問您的 Google Cloud Platform "
|
||||
"項目頁面並啟用它,然後重試。如果您最近啟用了此 API,請等待幾分鐘並重試。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,field_description:product_images.field_res_config_settings__google_pse_id
|
||||
msgid "The identifier of the Google Programmable Search Engine"
|
||||
msgstr "Google 可編程搜索引擎的標識符"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_fetch_image_wizard__products_to_process
|
||||
msgid ""
|
||||
"The list of selected products that meet the criteria (have a barcode and no "
|
||||
"image)"
|
||||
msgstr "符合條件的選定產品列表(有條碼且無圖像)"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
msgstr "操作規劃“產品圖片:從 Google 獲取產品圖片”已被刪除。請聯繫您的管理員以恢復操作或重新安裝模塊“product_images”。"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/models/ir_cron_trigger.py:0
|
||||
#, python-format
|
||||
msgid "This action is already scheduled. Please try again later."
|
||||
msgstr "此操作已排定。請稍後再試。"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model,name:product_images.model_ir_cron_trigger
|
||||
msgid "Triggered actions"
|
||||
msgstr "觸發動作"
|
||||
|
||||
#. module: product_images
|
||||
#: model:ir.model.fields,help:product_images.field_product_product__image_fetch_pending
|
||||
msgid "Whether an image must be fetched for this product. Handled by a cron."
|
||||
msgstr "是否必須為該產品獲取圖像。由 cron 處理。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "You selected"
|
||||
msgstr "您選擇的"
|
||||
|
||||
#. module: product_images
|
||||
#. odoo-python
|
||||
#: code:addons/product_images/wizard/product_fetch_image_wizard.py:0
|
||||
#, python-format
|
||||
msgid "Your API Key or your Search Engine ID is incorrect."
|
||||
msgstr "您的 API 密鑰或搜索引擎 ID 不正確。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "of which will be processed."
|
||||
msgstr "其中將被處理。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid ""
|
||||
"products will not be\n"
|
||||
" processed because they either already have an image or their barcode\n"
|
||||
" number is not set."
|
||||
msgstr ""
|
||||
"產品將無法\n"
|
||||
" 處理,因為他們已經有圖片或條碼\n"
|
||||
" 編號未設置。"
|
||||
|
||||
#. module: product_images
|
||||
#: model_terms:ir.ui.view,arch_db:product_images.product_fetch_image_wizard_view_form
|
||||
msgid "products,"
|
||||
msgstr "產品,"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import ir_cron_trigger
|
||||
from . import product
|
||||
from . import res_config_settings
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class IrCronTrigger(models.Model):
|
||||
_inherit = 'ir.cron.trigger'
|
||||
|
||||
@api.constrains('cron_id')
|
||||
def _check_image_cron_is_not_already_triggered(self):
|
||||
""" Ensure that there is a maximum of one trigger at a time for `ir_cron_fetch_image`.
|
||||
|
||||
This cron is triggered in an optimal way to retrieve fastly the images without blocking a
|
||||
worker for a long amount of time. It fetches images in multiples batches to allow other
|
||||
crons to run in between. The cron also schedules itself if there are remaining products to
|
||||
be processed or if it encounters errors like a rate limit reached, a ConnectionTimeout, or
|
||||
service unavailable. Multiple triggers at the same will trouble the rate limit management
|
||||
and/or errors handling. More information in `product_fetch_image_wizard.py`.
|
||||
|
||||
:return: None
|
||||
:raise ValidationError: If the maximum number of coexisting triggers for
|
||||
`ir_cron_fetch_image` is reached
|
||||
"""
|
||||
ir_cron_fetch_image = self.env.ref(
|
||||
'product_images.ir_cron_fetch_image', raise_if_not_found=False
|
||||
)
|
||||
|
||||
if ir_cron_fetch_image and self.cron_id.id != ir_cron_fetch_image.id:
|
||||
return
|
||||
|
||||
cron_triggers_count = self.env['ir.cron.trigger'].search_count(
|
||||
[('cron_id', '=', ir_cron_fetch_image.id)]
|
||||
)
|
||||
# When the cron is automatically triggered, we must allow two triggers to exists at the same
|
||||
# time: the one that triggered the cron and the one that will schedule another cron run. We
|
||||
# check whether the cron was automatically triggered rather than manually triggered to cover
|
||||
# the case where the admin would create an ir.cron.trigger manually.
|
||||
max_coexisting_cron_triggers = 2 if self.env.context.get('automatically_triggered') else 1
|
||||
if cron_triggers_count > max_coexisting_cron_triggers:
|
||||
raise ValidationError(_("This action is already scheduled. Please try again later."))
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = "product.product"
|
||||
|
||||
image_fetch_pending = fields.Boolean(
|
||||
help="Whether an image must be fetched for this product. Handled by a cron.",
|
||||
)
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
google_custom_search_key = fields.Char(
|
||||
string="Google Custom Search API Key",
|
||||
config_parameter='google.custom_search.key',
|
||||
)
|
||||
google_pse_id = fields.Char(
|
||||
string="The identifier of the Google Programmable Search Engine",
|
||||
config_parameter='google.pse.id',
|
||||
)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_product_get_pic_barcode_manager,product.images.get.pic.barcode manager,model_product_fetch_image_wizard,base.group_system,1,1,1,0
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record model="ir.rule" id="product_images_product_fetch_image_wizard_rule">
|
||||
<field name="name">
|
||||
Product fetch image wizard: access only your own wizard
|
||||
</field>
|
||||
<field name="model_id" ref="model_product_fetch_image_wizard"/>
|
||||
<field name="domain_force">[('create_uid', '=', user.id)]</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.product.images</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='msg_module_product_images']" position="replace">
|
||||
<div class="content-group"
|
||||
attrs="{'invisible': [('module_product_images', '=', False)]}"
|
||||
id="msg_module_product_images">
|
||||
<div class="content-group mt16 row">
|
||||
<label string="API Key" for="google_custom_search_key"
|
||||
class="col-4 col-lg-4 o_light_label"/>
|
||||
<field name="google_custom_search_key" nolabel="1"/>
|
||||
<label string="Search Engine ID" for="google_pse_id"
|
||||
class="col-4 col-lg-4 o_light_label"/>
|
||||
<field name="google_pse_id" nolabel="1"/>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import product_fetch_image_wizard
|
||||
|
|
@ -0,0 +1,329 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
import logging
|
||||
from datetime import timedelta
|
||||
|
||||
import requests
|
||||
from requests.exceptions import ConnectionError as RequestConnectionError, Timeout as RequestTimeout
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ProductFetchImageWizard(models.TransientModel):
|
||||
_name = 'product.fetch.image.wizard'
|
||||
_description = "Fetch product images from Google Images based on the product's barcode number."
|
||||
|
||||
_session = requests.Session()
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields_list):
|
||||
# Check that the cron has not been deleted and raise an error if so
|
||||
ir_cron_fetch_image = self.env.ref(
|
||||
'product_images.ir_cron_fetch_image', raise_if_not_found=False
|
||||
)
|
||||
if not ir_cron_fetch_image:
|
||||
raise UserError(_(
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
))
|
||||
|
||||
# Check that the cron is not already triggered and raise an error if so
|
||||
cron_triggers_count = self.env['ir.cron.trigger'].search_count(
|
||||
[('cron_id', '=', ir_cron_fetch_image.id)]
|
||||
)
|
||||
if cron_triggers_count > 0:
|
||||
raise UserError(_(
|
||||
"A task to process products in the background is already running. Please try again"
|
||||
"later."
|
||||
))
|
||||
|
||||
# Check if API keys are set without retrieving the values to avoid leaking them
|
||||
ICP = self.env['ir.config_parameter']
|
||||
google_pse_id_is_set = bool(ICP.get_param('google.pse.id'))
|
||||
google_custom_search_key_is_set = bool(ICP.get_param('google.custom_search.key'))
|
||||
if not (google_pse_id_is_set and google_custom_search_key_is_set):
|
||||
raise UserError(_(
|
||||
"The API Key and Search Engine ID must be set in the General Settings."
|
||||
))
|
||||
|
||||
# Compute default values
|
||||
if self._context.get('active_model') == 'product.template':
|
||||
product_ids = self.env['product.template'].browse(
|
||||
self._context.get('active_ids')
|
||||
).product_variant_ids
|
||||
else:
|
||||
product_ids = self.env['product.product'].browse(
|
||||
self._context.get('active_ids')
|
||||
)
|
||||
nb_products_selected = len(product_ids)
|
||||
products_to_process = product_ids.filtered(lambda p: not p.image_1920 and p.barcode)
|
||||
nb_products_to_process = len(products_to_process)
|
||||
nb_products_unable_to_process = nb_products_selected - nb_products_to_process
|
||||
defaults = super().default_get(fields_list)
|
||||
defaults.update(
|
||||
products_to_process=products_to_process,
|
||||
nb_products_selected=nb_products_selected,
|
||||
nb_products_to_process=nb_products_to_process,
|
||||
nb_products_unable_to_process=nb_products_unable_to_process,
|
||||
)
|
||||
return defaults
|
||||
|
||||
nb_products_selected = fields.Integer(string="Number of selected products", readonly=True)
|
||||
products_to_process = fields.Many2many(
|
||||
comodel_name='product.product',
|
||||
help="The list of selected products that meet the criteria (have a barcode and no image)",
|
||||
)
|
||||
nb_products_to_process = fields.Integer(string="Number of products to process", readonly=True)
|
||||
nb_products_unable_to_process = fields.Integer(
|
||||
string="Number of product unprocessable", readonly=True
|
||||
)
|
||||
|
||||
def action_fetch_image(self):
|
||||
""" Fetch the images of the first ten products and delegate the remaining to the cron.
|
||||
|
||||
The first ten images are immediately fetched to improve the user experience. This way, they
|
||||
can immediately browse the processed products and be assured that the task is running well.
|
||||
Also, if any error occurs, it can be thrown to the user. Then, a cron job is triggered to be
|
||||
run as soon as possible, unless the daily request limit has been reached. In that case, the
|
||||
cron job is scheduled to run a day later.
|
||||
|
||||
:return: A notification to inform the user about the outcome of the action
|
||||
:rtype: dict
|
||||
"""
|
||||
self.products_to_process.image_fetch_pending = True # Flag products to process for the cron
|
||||
|
||||
# Process the first 10 products immediately
|
||||
matching_images_count = self._process_products(self._get_products_to_process(10))
|
||||
|
||||
if self._get_products_to_process(1): # Delegate remaining products to the cron
|
||||
# Check that the cron has not been deleted and raise an error if so
|
||||
ir_cron_fetch_image = self.env.ref(
|
||||
'product_images.ir_cron_fetch_image', raise_if_not_found=False
|
||||
)
|
||||
if not ir_cron_fetch_image:
|
||||
raise UserError(_(
|
||||
"The scheduled action \"Product Images: Get product images from Google\" has "
|
||||
"been deleted. Please contact your administrator to have the action restored "
|
||||
"or to reinstall the module \"product_images\"."
|
||||
))
|
||||
|
||||
# Check that the cron is not already triggered and create a new trigger if not
|
||||
cron_triggers_count = self.env['ir.cron.trigger'].search_count(
|
||||
[('cron_id', '=', ir_cron_fetch_image.id)]
|
||||
)
|
||||
if cron_triggers_count == 0:
|
||||
self.with_context(automatically_triggered=False)._trigger_fetch_images_cron()
|
||||
message = _(
|
||||
"Products are processed in the background. Images will be updated progressively."
|
||||
)
|
||||
warning_type = 'success'
|
||||
else:
|
||||
message = _(
|
||||
"%(matching_images_count)s matching images have been found for %(product_count)s "
|
||||
"products.",
|
||||
matching_images_count=matching_images_count,
|
||||
product_count=len(self.products_to_process)
|
||||
)
|
||||
warning_type = 'success' if matching_images_count > 0 else 'warning'
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'title': _("Product images"),
|
||||
'type': warning_type,
|
||||
'message': message,
|
||||
'next': {'type': 'ir.actions.act_window_close'},
|
||||
}
|
||||
}
|
||||
|
||||
def _cron_fetch_image(self):
|
||||
""" Fetch images of a list of products using their barcode.
|
||||
|
||||
This method is called from a cron job. If the daily request limit is reached, the cron job
|
||||
is scheduled to run again a day later.
|
||||
|
||||
:return: None
|
||||
"""
|
||||
# Retrieve 100 products at a time to limit the run time and avoid reaching Google's default
|
||||
# rate limit.
|
||||
self._process_products(self._get_products_to_process(100))
|
||||
if self._get_products_to_process(1):
|
||||
self.with_context(automatically_triggered=True)._trigger_fetch_images_cron(
|
||||
fields.Datetime.now() + timedelta(minutes=1.0)
|
||||
)
|
||||
|
||||
def _get_products_to_process(self, limit=10000):
|
||||
""" Get the products that need to be processed and meet the criteria.
|
||||
|
||||
The criteria are to have a barcode and no image. If `products_to_process` is not populated,
|
||||
the DB is searched to find matching product records.
|
||||
|
||||
:param int limit: The maximum number of records to return, defaulting to 10000 to match
|
||||
Google's API default rate limit
|
||||
:return: The products that meet the criteria
|
||||
:rtype: recordset of `product.product`
|
||||
"""
|
||||
products_to_process = self.products_to_process or self.env['product.product'].search(
|
||||
[('image_fetch_pending', '=', True)], limit=limit
|
||||
)
|
||||
return products_to_process.filtered(
|
||||
# p.image_fetch_pending needed for self.products_to_process's records that might already
|
||||
# have been processed but not yet removed from the list when called from
|
||||
# action_fetch_image.
|
||||
lambda p: not p.image_1920 and p.barcode and p.image_fetch_pending
|
||||
)[:limit] # Apply the limit after the filter with self.products_to_process for more results
|
||||
|
||||
def _process_products(self, products_to_process):
|
||||
""" Fetch an image from the Google Custom Search API for each product.
|
||||
|
||||
We fetch the 10 first image URLs and save the first valid image.
|
||||
|
||||
:param recordset products_to_process: The products for which an image must be fetched, as a
|
||||
`product.product` recordset
|
||||
:return: The number of products for which a matching image was found
|
||||
:rtype: int
|
||||
:raises UserError: If the project is misconfigured on Google's side
|
||||
:raises UserError: If the API Key or Search Engine ID is incorrect
|
||||
"""
|
||||
if not products_to_process:
|
||||
return 0
|
||||
|
||||
nb_service_unavailable_codes = 0
|
||||
nb_timeouts = 0
|
||||
for product in products_to_process:
|
||||
# Fetch image URLs and handle eventual errors
|
||||
try:
|
||||
response = self._fetch_image_urls_from_google(product.barcode)
|
||||
if response.status_code == requests.codes.forbidden:
|
||||
raise UserError(_(
|
||||
"The Custom Search API is not enabled in your Google project. Please visit "
|
||||
"your Google Cloud Platform project page and enable it, then retry. If you "
|
||||
"enabled this API recently, please wait a few minutes and retry."
|
||||
))
|
||||
elif response.status_code == requests.codes.service_unavailable:
|
||||
nb_service_unavailable_codes += 1
|
||||
if nb_service_unavailable_codes <= 3: # Temporary loss of service
|
||||
continue # Let the image of this product be fetched by the next cron run
|
||||
|
||||
# The service has not responded more han 3 times, stop trying for now and wait
|
||||
# for the next cron run.
|
||||
self.with_context(automatically_triggered=True)._trigger_fetch_images_cron(
|
||||
fields.Datetime.now() + timedelta(hours=1.0)
|
||||
)
|
||||
_logger.warning(
|
||||
"received too many service_unavailable responses. delegating remaining "
|
||||
"images to next cron run."
|
||||
)
|
||||
break
|
||||
elif response.status_code == requests.codes.too_many_requests:
|
||||
self.with_context(automatically_triggered=True)._trigger_fetch_images_cron(
|
||||
fields.Datetime.now() + timedelta(days=1.0)
|
||||
)
|
||||
_logger.warning(
|
||||
"search quota exceeded. delegating remaining images to next cron run."
|
||||
)
|
||||
break
|
||||
elif response.status_code == requests.codes.bad_request:
|
||||
raise UserError(_(
|
||||
"Your API Key or your Search Engine ID is incorrect."
|
||||
))
|
||||
except (RequestConnectionError, RequestTimeout):
|
||||
nb_timeouts += 1
|
||||
if nb_timeouts <= 3: # Temporary loss of service
|
||||
continue # Let the image of this product be fetched by the next cron run
|
||||
|
||||
# The service has not responded more han 3 times, stop trying for now and wait for
|
||||
# the next cron run.
|
||||
self.with_context(automatically_triggered=True)._trigger_fetch_images_cron(
|
||||
fields.Datetime.now() + timedelta(hours=1.0)
|
||||
)
|
||||
_logger.warning(
|
||||
"encountered too many timeouts. delegating remaining images to next cron run."
|
||||
)
|
||||
break
|
||||
|
||||
# Fetch image and handle possible error
|
||||
response_content = response.json()
|
||||
if int(response_content['searchInformation']['totalResults']) > 0:
|
||||
for item in response_content['items']: # Only populated if totalResults > 0
|
||||
try:
|
||||
image = self._get_image_from_url(item['link'])
|
||||
if image:
|
||||
product.image_1920 = image
|
||||
break # Stop at the first valid image
|
||||
except (
|
||||
RequestConnectionError,
|
||||
RequestTimeout,
|
||||
UserError, # Raised when the image couldn't be decoded as base64
|
||||
):
|
||||
pass # Move on to the next image
|
||||
|
||||
product.image_fetch_pending = False
|
||||
self.env.cr.commit() # Commit every image in case the cron is killed
|
||||
|
||||
return len(products_to_process.filtered('image_1920'))
|
||||
|
||||
def _fetch_image_urls_from_google(self, barcode):
|
||||
""" Fetch the first 10 image URLs from the Google Custom Search API.
|
||||
|
||||
:param string barcode: A product's barcode
|
||||
:return: A response or None
|
||||
:rtype: Response
|
||||
"""
|
||||
if not barcode:
|
||||
return
|
||||
|
||||
ICP = self.env['ir.config_parameter']
|
||||
return self._session.get(
|
||||
url='https://customsearch.googleapis.com/customsearch/v1',
|
||||
params={
|
||||
'cx': ICP.get_param('google.pse.id').strip(),
|
||||
'safe': 'active',
|
||||
'searchType': 'image',
|
||||
'key': ICP.get_param('google.custom_search.key').strip(),
|
||||
'rights': 'cc_publicdomain,cc_attribute,cc_sharealike',
|
||||
'imgSize': 'large',
|
||||
'imgType': 'photo',
|
||||
'fields': 'searchInformation/totalResults,items(link)',
|
||||
'q': barcode,
|
||||
}
|
||||
)
|
||||
|
||||
def _get_image_from_url(self, url):
|
||||
""" Retrieve an image from the URL.
|
||||
|
||||
If the url contains 'x-raw-image:///', the request failed or the response header
|
||||
'Content-Type' does not contain 'image/', return None
|
||||
|
||||
:param string url: url of an image
|
||||
:return: The retrieved image or None
|
||||
:rtype: bytes
|
||||
"""
|
||||
image = None
|
||||
if 'x-raw-image:///' not in url: # Ignore images with incorrect link
|
||||
response = self._session.get(url, timeout=5)
|
||||
if response.status_code == requests.codes.ok \
|
||||
and 'image/' in response.headers.get('Content-Type', ''): # Ignore non-image results
|
||||
image = base64.b64encode(response.content)
|
||||
return image
|
||||
|
||||
def _trigger_fetch_images_cron(self, at=None):
|
||||
""" Create a trigger for the con `ir_cron_fetch_image`.
|
||||
|
||||
By default the cron is scheduled to be executed as soon as possible but
|
||||
the optional `at` argument may be given to delay the execution later
|
||||
with a precision down to 1 minute.
|
||||
|
||||
:param Optional[datetime.datetime] at:
|
||||
When to execute the cron, at one moments in time instead of as soon as possible.
|
||||
"""
|
||||
self.env.ref('product_images.ir_cron_fetch_image')._trigger(at)
|
||||
# If two `ir_cron_fetch_image` are triggered automatically, and the first one is not
|
||||
# committed, the constrains will return a ValidationError and roll back to the last commit,
|
||||
# leaving no `ir_cron_fetch_image` in the schedule.
|
||||
self.env.cr.commit()
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="product_fetch_image_wizard_view_form" model="ir.ui.view">
|
||||
<field name="name">product.fetch.image.wizard.view</field>
|
||||
<field name="model">product.fetch.image.wizard</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<sheet>
|
||||
<p>
|
||||
You selected <field name="nb_products_selected"/> products,
|
||||
<field name="nb_products_to_process"/> of which will be processed.
|
||||
<span attrs="{'invisible': [('nb_products_unable_to_process', '=', 0)]}">
|
||||
<field name="nb_products_unable_to_process"/> products will not be
|
||||
processed because they either already have an image or their barcode
|
||||
number is not set.
|
||||
</span>
|
||||
<span attrs="{'invisible': [('nb_products_selected', '<=', 10000)]}">
|
||||
As only 10,000 products can be processed per day, the remaining will be
|
||||
done tomorrow.
|
||||
</span>
|
||||
</p>
|
||||
<p attrs="{'invisible': [('nb_products_to_process', '=', 0)]}">
|
||||
Please note that some images might not be royalty-free. You should not
|
||||
publish these on your website.
|
||||
</p>
|
||||
<footer>
|
||||
<button name="action_fetch_image"
|
||||
type="object"
|
||||
string="Get Pictures"
|
||||
class="oe_highlight"
|
||||
attrs="{'invisible': [('nb_products_to_process', '=', 0)]}"/>
|
||||
<button special="cancel"
|
||||
string="Cancel"
|
||||
attrs="{'invisible': [('nb_products_to_process', '=', 0)]}"/>
|
||||
<button special="cancel"
|
||||
string="Cancel"
|
||||
class="oe_highlight"
|
||||
attrs="{'invisible': [('nb_products_to_process', '!=', 0)]}"/>
|
||||
</footer>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_action_get_pic_with_barcode" model="ir.actions.act_window">
|
||||
<field name="name">Get Pictures from Google Images</field>
|
||||
<field name="res_model">product.fetch.image.wizard</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
<field name="binding_model_id" ref="product.model_product_template"/>
|
||||
</record>
|
||||
|
||||
<record id="product_product_action_get_pic_with_barcode" model="ir.actions.act_window">
|
||||
<field name="name">Get Pictures from Google Images</field>
|
||||
<field name="res_model">product.fetch.image.wizard</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
<field name="binding_model_id" ref="product.model_product_product"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
42
odoo-bringout-oca-ocb-product_images/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-product_images/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-product_images"
|
||||
version = "16.0.0"
|
||||
description = "Product Images - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-product>=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 = ["product_images"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue