mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 20:52:00 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
46
odoo-bringout-oca-ocb-website_sale_autocomplete/README.md
Normal file
46
odoo-bringout-oca-ocb-website_sale_autocomplete/README.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Google places autocompletion
|
||||
|
||||
Assist your users with automatic completion & suggestions when filling their address during checkout
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_autocomplete
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- website_sale
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Google places autocompletion
|
||||
- **Version**: 1.0
|
||||
- **Category**: Website/Website
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_sale_autocomplete`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Website_sale_autocomplete Module - website_sale_autocomplete
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for website_sale_autocomplete. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [website_sale](../../odoo-bringout-oca-ocb-website_sale)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon website_sale_autocomplete or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-website_sale_autocomplete"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-website_sale_autocomplete"
|
||||
```
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in website_sale_autocomplete.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class res_config_settings
|
||||
class website
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: website_sale_autocomplete. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon website_sale_autocomplete
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_sale_autocomplete
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-website_sale_autocomplete"
|
||||
version = "16.0.0"
|
||||
description = "Google places autocompletion - Assist your users with automatic completion & suggestions when filling their address during checkout"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-website_sale>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["website_sale_autocomplete"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Google places autocompletion',
|
||||
'category': 'Website/Website',
|
||||
'summary': 'Assist your users with automatic completion & suggestions when filling their address during checkout',
|
||||
'version': '1.0',
|
||||
'description': "Assist your users with automatic completion & suggestions when filling their address during checkout",
|
||||
'depends': [
|
||||
'website_sale'
|
||||
],
|
||||
'data': [
|
||||
'views/templates.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'website_sale_autocomplete/static/src/js/address_form.js',
|
||||
'website_sale_autocomplete/static/src/xml/autocomplete.xml',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_sale_autocomplete/static/tests/**/*.js'
|
||||
],
|
||||
},
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import requests
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
from odoo.tools import html2plaintext
|
||||
|
||||
import logging
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
FIELDS_MAPPING = {
|
||||
'country': ['country'],
|
||||
'street_number': ['number'],
|
||||
'locality': ['city'], # If locality exists, use it instead of the more general administrative area
|
||||
'route': ['street'],
|
||||
'postal_code': ['zip'],
|
||||
'administrative_area_level_1': ['state', 'city'],
|
||||
'administrative_area_level_2': ['state', 'country']
|
||||
}
|
||||
|
||||
# If a google fields may correspond to multiple standard fields, the first occurrence in the list will overwrite following entries.
|
||||
FIELDS_PRIORITY = ['country', 'street_number', 'neighborhood', 'locality', 'route', 'postal_code',
|
||||
'administrative_area_level_1', 'administrative_area_level_2']
|
||||
GOOGLE_PLACES_ENDPOINT = 'https://maps.googleapis.com/maps/api/place'
|
||||
TIMEOUT = 2.5
|
||||
|
||||
|
||||
class AutoCompleteController(http.Controller):
|
||||
|
||||
def _translate_google_to_standard(self, google_fields):
|
||||
standard_data = {}
|
||||
|
||||
for google_field in google_fields:
|
||||
fields_standard = FIELDS_MAPPING[google_field['type']] if google_field['type'] in FIELDS_MAPPING else []
|
||||
|
||||
for field_standard in fields_standard:
|
||||
if field_standard in standard_data: # if a value is already assigned, do not overwrite it.
|
||||
continue
|
||||
# Convert state and countries to odoo ids
|
||||
if field_standard == 'country':
|
||||
standard_data[field_standard] = request.env['res.country'].search(
|
||||
[('code', '=', google_field['short_name'].upper())])[0].id
|
||||
elif field_standard == 'state':
|
||||
state = request.env['res.country.state'].search(
|
||||
[('code', '=', google_field['short_name'].upper()),
|
||||
('country_id.id', '=', standard_data['country'])])
|
||||
if len(state) == 1:
|
||||
standard_data[field_standard] = state.id
|
||||
else:
|
||||
standard_data[field_standard] = google_field['long_name']
|
||||
return standard_data
|
||||
|
||||
def _guess_number_from_input(self, source_input, standard_address):
|
||||
"""
|
||||
Google might not send the house number in case the address
|
||||
does not exist in their database.
|
||||
We try to guess the number from the user's input to avoid losing the info.
|
||||
"""
|
||||
# Remove other parts from address to make better guesses
|
||||
guessed_house_number = source_input \
|
||||
.replace(standard_address.get('zip', ''), '') \
|
||||
.replace(standard_address.get('street', ''), '') \
|
||||
.replace(standard_address.get('city', ''), '')
|
||||
guessed_house_number = guessed_house_number.split(',')[0].strip()
|
||||
return guessed_house_number
|
||||
|
||||
def _perform_place_search(self, partial_address, api_key=None, session_id=None, language_code=None, country_code=None):
|
||||
if len(partial_address) <= 5:
|
||||
return {
|
||||
'results': [],
|
||||
'session_id': session_id
|
||||
}
|
||||
|
||||
params = {
|
||||
'key': api_key,
|
||||
'fields': 'formatted_address,name',
|
||||
'inputtype': 'textquery',
|
||||
'types': 'address',
|
||||
'input': partial_address
|
||||
}
|
||||
if country_code:
|
||||
params['components'] = f'country:{country_code}'
|
||||
if language_code:
|
||||
params['language'] = language_code
|
||||
if session_id:
|
||||
params['sessiontoken'] = session_id
|
||||
|
||||
try:
|
||||
results = requests.get(f'{GOOGLE_PLACES_ENDPOINT}/autocomplete/json', params=params, timeout=TIMEOUT).json()
|
||||
except (TimeoutError, ValueError) as e:
|
||||
_logger.error(e)
|
||||
return {
|
||||
'results': [],
|
||||
'session_id': session_id
|
||||
}
|
||||
|
||||
if results.get('error_message'):
|
||||
_logger.error(results['error_message'])
|
||||
|
||||
results = results.get('predictions', [])
|
||||
|
||||
# Convert google specific format to standard format.
|
||||
return {
|
||||
'results': [{
|
||||
'formatted_address': result['description'],
|
||||
'google_place_id': result['place_id'],
|
||||
} for result in results],
|
||||
'session_id': session_id
|
||||
}
|
||||
|
||||
def _perform_complete_place_search(self, address, api_key=None, google_place_id=None, language_code=None, session_id=None):
|
||||
params = {
|
||||
'key': api_key,
|
||||
'place_id': google_place_id,
|
||||
'fields': 'address_component,adr_address'
|
||||
}
|
||||
|
||||
if language_code:
|
||||
params['language'] = language_code
|
||||
if session_id:
|
||||
params['sessiontoken'] = session_id
|
||||
|
||||
try:
|
||||
results = requests.get(f'{GOOGLE_PLACES_ENDPOINT}/details/json', params=params, timeout=TIMEOUT).json()
|
||||
except (TimeoutError, ValueError) as e:
|
||||
_logger.error(e)
|
||||
return {'address': None}
|
||||
|
||||
if results.get('error_message'):
|
||||
_logger.error(results['error_message'])
|
||||
|
||||
try:
|
||||
html_address = results['result']['adr_address']
|
||||
results = results['result']['address_components'] # Get rid of useless extra data
|
||||
except KeyError:
|
||||
return {'address': None}
|
||||
|
||||
# Keep only the first type from the list of types
|
||||
for res in results:
|
||||
res['type'] = res.pop('types')[0]
|
||||
|
||||
# Sort the result by their priority.
|
||||
results.sort(key=lambda r: FIELDS_PRIORITY.index(r['type']) if r['type'] in FIELDS_PRIORITY else 100)
|
||||
|
||||
standard_address = self._translate_google_to_standard(results)
|
||||
|
||||
if 'number' not in standard_address:
|
||||
standard_address['number'] = self._guess_number_from_input(address, standard_address)
|
||||
standard_address['formatted_street_number'] = f'{standard_address["number"]} {standard_address.get("street", "")}'
|
||||
else:
|
||||
formatted_from_html = html2plaintext(html_address.split(',')[0])
|
||||
formatted_manually = f'{standard_address["number"]} {standard_address.get("street", "")}'
|
||||
# Sometimes, the google api sends back abbreviated data :
|
||||
# "52 High Road Street" becomes "52 HR St" for example. We usually take the result from google, but if it's an abbreviation, take our guess instead.
|
||||
if len(formatted_from_html) >= len(formatted_manually):
|
||||
standard_address['formatted_street_number'] = formatted_from_html
|
||||
else:
|
||||
standard_address['formatted_street_number'] = formatted_manually
|
||||
return standard_address
|
||||
|
||||
@http.route('/autocomplete/address', methods=['POST'], type='json', auth='public', website=True)
|
||||
def _autocomplete_address(self, partial_address, session_id=None):
|
||||
api_key = request.env['website'].get_current_website().sudo().google_places_api_key
|
||||
return self._perform_place_search(partial_address, session_id=session_id, api_key=api_key)
|
||||
|
||||
@http.route('/autocomplete/address_full', methods=['POST'], type='json', auth='public', website=True)
|
||||
def _autocomplete_address_full(self, address, session_id=None, google_place_id=None, **kwargs):
|
||||
api_key = request.env['website'].get_current_website().sudo().google_places_api_key
|
||||
return self._perform_complete_place_search(address, google_place_id=google_place_id,
|
||||
session_id=session_id, api_key=api_key, **kwargs)
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
-- disable website_sale_autocomplete
|
||||
UPDATE website
|
||||
SET google_places_api_key = 'dummy';
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webtuiste"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2022\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" إنشاء مشروع Google والحصول على مفتاح "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" قم بتفعيل الفوترة في مشروع Google الخاص بك "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "مفتاح الواجهة البرمجية للتطبيق "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "مفتاح الواجهة البرمجية لـ Google Places "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "مشغل بواسطة Google "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "الموقع الإلكتروني"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
"İnformasiya sistemlərinin texniki qarşılıqlı əlaqəsini təmin edən açar"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Veb sayt"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налады канфігурацыі"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Вэб-сайт"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Martin Dinovski, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Dinovski, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Ключ за Google Places API."
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Осъществено от Google "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Pokretano od Googlea"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Creeu un projecte de Google i obteniu una clau"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Habiliteu la facturació al vostre projecte de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustos de configuració"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Clau de l'API de Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Desenvolupat per Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Lloc web"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2022\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Klíč API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API nøgle"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurer opsætning"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API-nøgle"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Drevet af Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Hjemmeside"
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Ein Google-Projekt erstellen und eine Schlüssel erhalten"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Rechnungsstellung in Ihrem Google-Projekt aktivieren"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API-Schlüssel"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurationseinstellungen"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "API-Schlüssel von Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 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:57+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Crear un Google Project y obtener una clave"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Habilite la facturación en su proyecto de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Clave de la API de Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Con tecnología de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Crea un proyecto de Google y obtén la clave"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Habilita la facturación en tu proyecto de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Clave de la API de Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Con la tecnología de Google "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Looge Google'i projekt ja hankige võti"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Lubage arveldamine enda Google'i projektis"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API võti"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API võti"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Kiri saadetud läbi Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Veebileht"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# fardin mardani <fmardani0@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: fardin mardani <fmardani0@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"یک پروژه گوگل ایجاد کنید و یک کلید دریافت کنید"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"صورتحساب را در پروژه Google خود فعال کنید"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "کلید API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "کلید API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "پشتیبانی شده توسط گوگل"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "تارنما"
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Richard Mouthier <rmo@odoo.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Luo Google-projekti ja hanki avain"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Ota laskutus käyttöön Google-projektissasi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Avain"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API-avain"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Järjestelmää pyörittää Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Verkkosivu"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Créer un projet Google et obtenir une clé"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Activer la facturation sur votre projet Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Clé API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Clé API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Généré par Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Site web"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "מפתח API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "אתר אינטרנט"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "वेबसाइट"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Vladimir Olujić <olujic.vladimir@storm.hr>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2024\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API kulcs"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API kulcs"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Buat Google Project dan dapatkan kunci"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Aktifkan billing pada Google Project Anda"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Stillingarvalkostir"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Vefsíða"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Crea un progetto Google e ottieni una chiave"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Abilita fatturazione sul progetto Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Chiave API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Chiave API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Fornito da Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sito web"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "APIキー"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "GoogleプレイスAPIキー"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "ウェブサイト"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Chan Nath <channath@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "សោរAPI"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "កំណត់រចនាសម្ព័ន្ធ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "វែបសាយ"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API 키"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google 플레이스 API 키"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "웹사이트"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: sackda chanthasombath, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ການຕັ້ງຄ່າ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API raktas"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Sukurta Naudojant Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Svetainė"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# JanisJanis <jbojars@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Nodrošina Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Tīkla vietne"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്സ്"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "വെബ്സൈറ്റ് "
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API түлхүүр"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Вэбсайт"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "laman web"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API-nøkkel"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Nettsted"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Maak een Google project en krijg een sleutel"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
" <i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Facturering op je Google-project mogelijk maken"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# 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:57+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Utwórz Projekt Google i uzyskaj klucz"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Uruchom billing na Projekcie Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Klucz API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Strona internetowa"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Marcelo Pereira <marcelo.pereira@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:57+0000\n"
|
||||
"Last-Translator: Marcelo Pereira <marcelo.pereira@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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Crie um Projeto Google e receba uma chave"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Habilite o faturamento em seu Projeto Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Chave da API do Google Maps"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Com a tecnologia Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Cozmin Candea <office@terrabit.ro>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Creați un proiect Google și obțineți o cheie"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Activează facturarea pe proiectul tău Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Cheie API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Cheie API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Oferit de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Pagină web"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 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:57+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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Ключ API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Ключ API Google Адресов"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Работает от Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Вебсайт"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Kľúč"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Spletna stran"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Kreirajte Google projekta i dobijte ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Omogućite naplatu na svom Google projektu"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API ljuč"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API ključ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Omogućava Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# 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:57+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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API-nyckel"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "API-nyckel för Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webbplats"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่าการกำหนดค่า"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "คีย์ Google สถานที่ API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "สนับสนุนโดย Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "เว็บไซต์"
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Halil, 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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Bir Google Projesi oluşturun ve bir anahtar alın"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Google Projenizde faturalandırmayı etkinleştirin"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API Anahtarı"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Yapılandırma Ayarları"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Rehber API Anahtarı"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Google tarafından desteklenmektedir"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Websitesi"
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Створіть Google Project та отримайте ключ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Увімкніть виставлення рахунків на вашому Google Project"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Ключ API "
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Ключ API Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Зроблено Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Веб-сайт"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "Mã khóa API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cấu hình"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Khoá Google Places API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Cung cấp bởi Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Trang web"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:57+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.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: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 创建一个Google项目并得到一个密钥"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 在您的Google项目启用计费"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API密钥"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置设置"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google放置API 密钥"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "Google技术提供"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "网站"
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# 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:57+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
msgid "API Key"
|
||||
msgstr "API 金鑰"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "配置設定"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__google_places_api_key
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API 密鑰"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr "由 Google 提供"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "網站"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import website
|
||||
from . import res_config_settings
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
from odoo import models, fields
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
google_places_api_key = fields.Char(
|
||||
string='Google Places API Key',
|
||||
related='website_id.google_places_api_key',
|
||||
readonly=False)
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class Website(models.Model):
|
||||
_inherit = 'website'
|
||||
|
||||
google_places_api_key = fields.Char(
|
||||
string='Google Places API Key',
|
||||
groups="base.group_system")
|
||||
|
||||
def has_google_places_api_key(self):
|
||||
return bool(self.sudo().google_places_api_key)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,112 @@
|
|||
/** @odoo-module */
|
||||
|
||||
import publicWidget from 'web.public.widget';
|
||||
import { DropPrevious } from 'web.concurrency';
|
||||
import { debounce } from "@web/core/utils/timing";
|
||||
import { qweb as QWeb } from 'web.core';
|
||||
|
||||
publicWidget.registry.AddressForm = publicWidget.Widget.extend({
|
||||
selector: '.oe_cart .checkout_autoformat:has(input[name="street"][data-autocomplete-enabled="1"])',
|
||||
events: {
|
||||
'input input[name="street"]': '_onChangeStreet',
|
||||
'click .js_autocomplete_result': '_onClickAutocompleteResult'
|
||||
},
|
||||
init: function() {
|
||||
this.streetAndNumberInput = document.querySelector('input[name="street"]');
|
||||
this.cityInput = document.querySelector('input[name="city"]');
|
||||
this.zipInput = document.querySelector('input[name="zip"]');
|
||||
this.countrySelect = document.querySelector('select[name="country_id"]');
|
||||
this.stateSelect = document.querySelector('select[name="state_id"]');
|
||||
this.dp = new DropPrevious();
|
||||
this.sessionId = this._generateUUID();
|
||||
|
||||
this._onChangeStreet = debounce(this._onChangeStreet, 200);
|
||||
this._super.apply(this, arguments);
|
||||
},
|
||||
|
||||
/**
|
||||
* Used to generate a unique session ID for the places API.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
_generateUUID: function() {
|
||||
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
|
||||
const r = (Math.random() * 16) | 0, v = c == "x" ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
});
|
||||
},
|
||||
|
||||
_hideAutocomplete: function (inputContainer) {
|
||||
const dropdown = inputContainer.querySelector('.dropdown-menu');
|
||||
if (dropdown) {
|
||||
dropdown.remove();
|
||||
}
|
||||
},
|
||||
|
||||
_onChangeStreet: async function (ev) {
|
||||
const inputContainer = ev.currentTarget.parentNode;
|
||||
if (ev.currentTarget.value.length >= 5) {
|
||||
this.dp.add(
|
||||
this._rpc({
|
||||
route: '/autocomplete/address',
|
||||
params: {
|
||||
partial_address: ev.currentTarget.value,
|
||||
session_id: this.sessionId || null
|
||||
}
|
||||
})).then((response) => {
|
||||
this._hideAutocomplete(inputContainer);
|
||||
inputContainer.appendChild($(QWeb.render("website_sale_autocomplete.AutocompleteDropDown", {
|
||||
results: response.results
|
||||
}))[0]);
|
||||
if (response.session_id) {
|
||||
this.sessionId = response.session_id;
|
||||
}
|
||||
}
|
||||
);
|
||||
} else {
|
||||
this._hideAutocomplete(inputContainer);
|
||||
}
|
||||
},
|
||||
|
||||
_onClickAutocompleteResult: async function(ev) {
|
||||
const dropDown = ev.currentTarget.parentNode;
|
||||
|
||||
const spinner = document.createElement('div');
|
||||
dropDown.innerText = '';
|
||||
dropDown.classList.add('d-flex', 'justify-content-center', 'align-items-center');
|
||||
spinner.classList.add('spinner-border', 'text-warning', 'text-center', 'm-auto');
|
||||
dropDown.appendChild(spinner);
|
||||
|
||||
const address = await this._rpc({
|
||||
route: '/autocomplete/address_full',
|
||||
params: {
|
||||
address: ev.currentTarget.innerText,
|
||||
google_place_id: ev.currentTarget.dataset.googlePlaceId,
|
||||
session_id: this.sessionId || null
|
||||
}
|
||||
});
|
||||
if (address.formatted_street_number) {
|
||||
this.streetAndNumberInput.value = address.formatted_street_number;
|
||||
}
|
||||
// Text fields, empty if no value in order to avoid the user missing old data.
|
||||
this.zipInput.value = address.zip || '';
|
||||
this.cityInput.value = address.city || '';
|
||||
|
||||
// Selects based on odoo ids
|
||||
if (address.country) {
|
||||
this.countrySelect.value = address.country;
|
||||
// Let the state select know that the country has changed so that it may fetch the correct states or disappear.
|
||||
this.countrySelect.dispatchEvent(new Event('change', {bubbles: true}));
|
||||
}
|
||||
if (address.state) {
|
||||
// Waits for the stateSelect to update before setting the state.
|
||||
new MutationObserver((entries, observer) => {
|
||||
this.stateSelect.value = address.state;
|
||||
observer.disconnect();
|
||||
}).observe(this.stateSelect, {
|
||||
childList: true, // Trigger only if the options change
|
||||
});
|
||||
}
|
||||
dropDown.remove();
|
||||
},
|
||||
});
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<templates>
|
||||
<t t-name="website_sale_autocomplete.AutocompleteDropDown">
|
||||
<div t-attf-class="dropdown-menu position-relative #{results.length ? 'show' : ''}">
|
||||
<a class="dropdown-item js_autocomplete_result"
|
||||
t-foreach="results" t-as="result"
|
||||
t-att-data-google-place-id="result['google_place_id']">
|
||||
<t t-out="result['formatted_address']"/>
|
||||
</a>
|
||||
<img class="ms-auto pe-1" src="/website_sale_autocomplete/static/src/img/powered_by_google_on_white.png" alt="Powered by Google"/>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
/** @odoo-module */
|
||||
|
||||
import tour from 'web_tour.tour';
|
||||
import tourUtils from 'website_sale.tour_utils';
|
||||
|
||||
|
||||
function fail (errorMessage) {
|
||||
tour._consume_tour(tour.running_tour, errorMessage);
|
||||
}
|
||||
|
||||
tour.register('autocomplete_tour', {
|
||||
test: true,
|
||||
url: '/shop', // /shop/address is redirected if no sales order
|
||||
}, [{
|
||||
content: "search test product",
|
||||
trigger: 'form input[name="search"]',
|
||||
run: "text A test product",
|
||||
},{
|
||||
content: 'Go to the product page',
|
||||
trigger: '.dropdown-item:contains("A test product")'
|
||||
}, {
|
||||
content: 'Add to cart',
|
||||
trigger: '#add_to_cart'
|
||||
},
|
||||
tourUtils.goToCart(),
|
||||
{
|
||||
content: 'Go to process checkout',
|
||||
trigger: 'a:contains("Process Checkout")'
|
||||
}, { // Actual test
|
||||
content: 'Input in Street & Number field',
|
||||
trigger: 'input[name="street"]',
|
||||
run: 'text This is a test'
|
||||
}, {
|
||||
content: 'Check if results have appeared',
|
||||
trigger: '.js_autocomplete_result',
|
||||
run: function () {}
|
||||
}, {
|
||||
content: 'Input again in street field',
|
||||
trigger: 'input[name="street"]',
|
||||
run: 'text add more'
|
||||
}, {
|
||||
content: 'Click on the first result',
|
||||
trigger: '.js_autocomplete_result'
|
||||
}, {
|
||||
content: 'Verify the autocomplete box disappeared',
|
||||
trigger: 'body:not(:has(.js_autocomplete_result))'
|
||||
}, { // Verify test data has been input
|
||||
content: 'Check Street & number have been set',
|
||||
trigger: 'input[name="street"]',
|
||||
run: function () {
|
||||
if (this.$anchor.val() !== '42 A fictional Street') {
|
||||
fail('Street value is not correct : ' + this.$anchor.val())
|
||||
}
|
||||
}
|
||||
}, {
|
||||
content: 'Check City is not empty anymore',
|
||||
trigger: 'input[name="city"]',
|
||||
run: function () {
|
||||
if (this.$anchor.val() !== 'A Fictional City') {
|
||||
fail('Street value is not correct : ' + this.$anchor.val())
|
||||
}
|
||||
}
|
||||
}, {
|
||||
content: 'Check Zip code is not empty anymore',
|
||||
trigger: 'input[name="zip"]',
|
||||
run: function () {
|
||||
if (this.$anchor.val() !== '12345') {
|
||||
fail('Street value is not correct : ' + this.$anchor.val())
|
||||
}
|
||||
}
|
||||
}]);
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_ui
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.addons.website_sale_autocomplete.controllers.main import AutoCompleteController
|
||||
from odoo.tests import patch, HttpCase, tagged
|
||||
|
||||
CONTROLLER_PATH = 'odoo.addons.website_sale_autocomplete.controllers.main.AutoCompleteController'
|
||||
MOCK_GOOGLE_ID = 'aHR0cHM6Ly93d3cueW91dHViZS5jb20vd2F0Y2g/dj1kUXc0dzlXZ1hjUQ=='
|
||||
MOCK_API_KEY = 'Tm9ib2R5IGV4cGVjdHMgdGhlIFNwYW5pc2ggaW5xdWlzaXRpb24gIQ=='
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestUI(HttpCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.product = cls.env['product.product'].create({
|
||||
'name': 'A test product',
|
||||
'website_published': True,
|
||||
'list_price': 1
|
||||
})
|
||||
|
||||
def test_autocomplete(self):
|
||||
with patch.object(AutoCompleteController, '_perform_complete_place_search',
|
||||
lambda controller, *args, **kwargs: {
|
||||
'country': self.env['res.country'].search([('code', '=', 'USA')]).id,
|
||||
'state': self.env['res.country.state'].search([('country_id.code', '=', 'USA')])[0].id,
|
||||
'zip': '12345',
|
||||
'city': 'A Fictional City',
|
||||
'street': 'A fictional Street',
|
||||
'number': 42,
|
||||
'formatted_street_number': '42 A fictional Street'
|
||||
}), \
|
||||
patch.object(AutoCompleteController, '_perform_place_search',
|
||||
lambda controller, *args, **kwargs: {
|
||||
'results': [{
|
||||
'formatted_address': f'Result {x}',
|
||||
'google_place_id': MOCK_GOOGLE_ID
|
||||
} for x in range(5)]}):
|
||||
self.env['website'].get_current_website().google_places_api_key = MOCK_API_KEY
|
||||
self.start_tour('/shop/address', 'autocomplete_tour')
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
|
||||
<record id="res_config_settings_view_form_inherit_autocomplete_googleplaces" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.autocomplete.googleplaces</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="website.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='autocomplete_googleplaces_setting']/div[hasclass('o_setting_right_pane')]" position="inside">
|
||||
<div>
|
||||
<div class="content-group row mt16">
|
||||
<label class="col-4" for="google_places_api_key" string="API Key"/>
|
||||
<field class="col-6" name="google_places_api_key"/>
|
||||
</div>
|
||||
<div class="mt8">
|
||||
<a target="_blank" href="https://console.cloud.google.com/getting-started">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
Create a Google Project and get a key
|
||||
</a>
|
||||
<br/>
|
||||
<a target="_blank" href="https://console.cloud.google.com/billing">
|
||||
<i class="fa fa-arrow-right"/>
|
||||
Enable billing on your Google Project
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<odoo>
|
||||
<template id="website_sale_address_with_autocomplete" inherit_id="website_sale.address">
|
||||
<xpath expr="//input[@name='street']" position="attributes">
|
||||
<attribute name="t-att-data-autocomplete-enabled">
|
||||
1 if website.has_google_places_api_key() else 0
|
||||
</attribute>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue