mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 01:12:02 +02:00
19.0 vanilla
This commit is contained in:
parent
79f83631d5
commit
73afc09215
6267 changed files with 1534193 additions and 1130106 deletions
|
|
@ -10,37 +10,15 @@ 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
|
||||
- google_address_autocomplete
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_sale_autocomplete`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/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
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -1,12 +1,15 @@
|
|||
[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"
|
||||
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",
|
||||
"odoo-bringout-oca-ocb-website_sale>=19.0.0",
|
||||
"TODO_MAP-google_address_autocomplete>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -16,7 +19,7 @@ classifiers = [
|
|||
"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.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
|
|
@ -8,7 +7,8 @@
|
|||
'version': '1.0',
|
||||
'description': "Assist your users with automatic completion & suggestions when filling their address during checkout",
|
||||
'depends': [
|
||||
'website_sale'
|
||||
'website_sale',
|
||||
'google_address_autocomplete',
|
||||
],
|
||||
'data': [
|
||||
'views/templates.xml',
|
||||
|
|
@ -16,13 +16,16 @@
|
|||
],
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'website_sale_autocomplete/static/src/js/address_form.js',
|
||||
'google_address_autocomplete/static/src/google_places_session.js',
|
||||
'website_sale_autocomplete/static/src/interactions/address_form.js',
|
||||
'website_sale_autocomplete/static/src/xml/autocomplete.xml',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_sale_autocomplete/static/tests/**/*.js'
|
||||
],
|
||||
},
|
||||
'auto_install': True,
|
||||
'installable': True,
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,172 +1,9 @@
|
|||
# -*- 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__)
|
||||
from odoo.addons.google_address_autocomplete.controllers.google_address_autocomplete import AutoCompleteController
|
||||
|
||||
|
||||
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)
|
||||
class WebsiteSaleAutoCompleteController(AutoCompleteController):
|
||||
def _get_api_key(self, use_employees_key):
|
||||
if not use_employees_key:
|
||||
return request.env['website'].get_current_website().sudo().google_places_api_key
|
||||
return super()._get_api_key(use_employees_key)
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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"
|
||||
|
|
@ -1,67 +1,82 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:45+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/ar/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" إنشاء مشروع Google والحصول على مفتاح "
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" قم بتفعيل الفوترة في مشروع Google الخاص بك "
|
||||
"<i class=\"oi oi-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 "مفتاح الواجهة البرمجية للتطبيق "
|
||||
msgstr "مفتاح الواجهة البرمجية للتطبيق"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تهيئة الإعدادات "
|
||||
msgstr "تهيئة الإعدادات"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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 "
|
||||
msgstr "مفتاح الواجهة البرمجية لـ Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "مشغل بواسطة Google "
|
||||
msgstr "مشغل بواسطة Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "الموقع الإلكتروني"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "مفتاح الواجهة البرمجية لـ Google Places في الموقع الإلكتروني"
|
||||
|
|
|
|||
|
|
@ -1,36 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -38,27 +34,41 @@ msgstr ""
|
|||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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 "Вэб-сайт"
|
||||
|
|
@ -1,64 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройки"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Осъществено от Google "
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,64 +1,76 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Kreirajte Google projekt 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Omogućite naplatu na vašem Google projektu"
|
||||
|
||||
# taken from hr.po
|
||||
#. 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č"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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č"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml
|
||||
#, python-format
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
msgid "Powered by Google"
|
||||
msgstr "Pokretano od Googlea"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,44 +1,41 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:33+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/ca/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Crear un Google Project i obtindre 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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Activar la facturació a Google Project"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -48,18 +45,28 @@ 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ó"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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 "Clau de l'API de Google Places"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Desenvolupat per Google"
|
||||
|
||||
|
|
@ -67,3 +74,8 @@ msgstr "Desenvolupat per Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Lloc web"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,35 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -42,22 +41,37 @@ msgstr "Klíč API"
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení konfigurace"
|
||||
msgstr "Konfigurační nastavení"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Webová stránka"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,72 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:14+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Opret et Google-projekt, og få en nøgle"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Aktivér fakturering på dit Google-projekt"
|
||||
|
||||
#. 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"
|
||||
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"
|
||||
msgstr "Konfigurationsindstillinger"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -61,3 +74,8 @@ msgstr "Drevet af Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Hjemmeside"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "API-nøgle fra Google Places til hjemmesiden"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,44 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-28 09:09+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Ein Google-Projekt erstellen und einen 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Rechnungsstellung in Ihrem Google-Projekt aktivieren"
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -49,19 +51,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Unterstützt durch Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "API-Schlüssel von Google Places der Website"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-24 19:23+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
msgid "Powered by Google"
|
||||
msgstr "Με την Υποστήριξη της Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Ιστότοπος"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
@ -1,43 +1,42 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Noemi Pla Garcia (nopl)" <nopl@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-20 09:52+0000\n"
|
||||
"Last-Translator: \"Noemi Pla Garcia (nopl)\" <nopl@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/es/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Habilitar la facturación en su Google Project"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -50,19 +49,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
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"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Clave API de Google Places para el sitio web"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,40 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 06:27+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_sale_autocomplete/es_419/>\n"
|
||||
"Language: es_419\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Habilita la facturación en tu proyecto de Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
|
|
@ -50,19 +48,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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 "
|
||||
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"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Clave API de Google Places para el sitio web"
|
||||
|
|
@ -1,69 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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 võti"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Kiri saadetud läbi Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Veebileht"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,68 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "تنظیمات پیکربندی"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "پشتیبانی شده توسط گوگل"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "تارنما"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,49 +1,46 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/fi/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr "API-avain"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
|
|
@ -51,19 +48,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. 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"
|
||||
msgstr "Palvelun tarjoaa Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Verkkosivu"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Verkkosivun Google Places API-avain"
|
||||
|
|
|
|||
|
|
@ -1,42 +1,40 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:26+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/fr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Activer la facturation sur votre projet Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
|
|
@ -50,19 +48,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Site Web"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Clé API Google Places du site Web"
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,62 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדר הגדרות"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "אתר אינטרנט"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,35 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -41,22 +38,37 @@ msgstr ""
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन सेटिंग"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "वेबसाइट"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,64 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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č"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,40 +1,41 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/hu/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Google projekt létrehozása és kulcs beszerzése"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Számlázás bekapcsolása a Google projekten"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -44,22 +45,37 @@ 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"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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 kulcs"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Powered by Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
msgstr "Weboldal"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,41 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:47+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/id/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Aktifkan billing pada Google Project Anda"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
|
|
@ -49,15 +48,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -65,3 +74,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Website's Google Places API Key"
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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"
|
||||
|
|
@ -1,43 +1,41 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/it/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Abilita fatturazione sul progetto Google"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Abilita fatturazione sul tuo progetto Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -50,15 +48,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -66,3 +74,8 @@ msgstr "Fornito da Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sito web"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Chiave API sito web Google Places"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,42 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-16 02:30+0000\n"
|
||||
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/ja/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -42,18 +46,28 @@ msgstr "APIキー"
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "コンフィグ設定"
|
||||
msgstr "構成設定"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -61,3 +75,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "ウェブサイト"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "ウェブサイトのGoogleプレイスAPIキー"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +42,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +68,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
# 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 "វែបសាយ"
|
||||
|
|
@ -1,38 +1,41 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:47+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/ko/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -42,18 +45,28 @@ msgstr "API 키"
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "설정 구성"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -61,3 +74,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "웹사이트"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "웹사이트의 Google Places API 키"
|
||||
|
|
|
|||
|
|
@ -1,31 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +41,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +67,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,64 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigūracijos nustatymai"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Svetainė"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,64 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurācijas uzstādījumi"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Tīkla vietne"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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 "വെബ്സൈറ്റ് "
|
||||
|
|
@ -1,62 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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 түлхүүр"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргооны тохируулга"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Вэбсайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
# 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"
|
||||
|
|
@ -1,31 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +41,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +67,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
@ -1,36 +1,35 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:47+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/nb_NO/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -45,15 +44,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -61,3 +70,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Nettsted"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,64 +1,72 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 08:07+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/nl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
" <i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Facturering op je Google-project mogelijk maken"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Facturatie om je Google Project in te schakelen"
|
||||
|
||||
#. 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"
|
||||
msgstr "API key"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuratie instellingen"
|
||||
msgstr "Configuratie-instellingen"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -66,3 +74,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Google Places API-sleutel van de Website"
|
||||
|
|
|
|||
|
|
@ -1,43 +1,43 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Marta (wacm)" <wacm@odoo.com>, 2025, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:53+0000\n"
|
||||
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/pl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && "
|
||||
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Stwórz Google Projekt i otrzymaj 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"Uruchom billing na Projekcie Google"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Aktywuj fakturowanie w swoim Projekcie Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -47,18 +47,28 @@ msgstr "Klucz API"
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ustawienia konfiguracji"
|
||||
msgstr "Konfiguracja ustawień"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -66,3 +76,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Strona internetowa"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Klucz API Google Places dla Strony internetowej"
|
||||
|
|
|
|||
|
|
@ -1,44 +1,48 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/pt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr "Chave de API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
|
|
@ -46,19 +50,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
msgstr "Chave da API do Google Maps"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
msgstr "Desenvolvido por Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
msgstr "Site"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Chave da API do Google Places do site"
|
||||
|
|
|
|||
|
|
@ -1,48 +1,48 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_sale_autocomplete/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Habilite o faturamento em seu Projeto Google"
|
||||
"<i class=\"oi oi-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"
|
||||
msgstr "Chave de API"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
|
|
@ -50,19 +50,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Desenvolvido por Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Chave da API do Google Places do site"
|
||||
|
|
|
|||
|
|
@ -1,43 +1,42 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Busoi Cristina <elena.busoi@capps.ai>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-11 13:01+0000\n"
|
||||
"Last-Translator: Busoi Cristina <elena.busoi@capps.ai>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/ro/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Activează facturarea pe proiectul tău Google"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Activați facturarea pe proiectul dvs. Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -50,19 +49,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afișat"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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"
|
||||
msgstr "Cheia API Google Locații"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Site web"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Cheia API Google Places a site-ului web"
|
||||
|
|
|
|||
|
|
@ -1,39 +1,42 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 17.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2024-01-30 15:14+0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -43,22 +46,37 @@ msgstr "Ключ API"
|
|||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
msgstr "Параметры конфигурации"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Работает от Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Вебсайт"
|
||||
msgstr "Сайт"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,62 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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ľúč"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -45,15 +45,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, python-format
|
||||
msgid "Powered by Google"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -61,3 +71,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Spletna stran"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,31 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:38+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +41,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +67,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,66 +0,0 @@
|
|||
# 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"
|
||||
|
|
@ -1,31 +1,32 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +41,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +67,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
@ -1,39 +1,42 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-20 17:17+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Skapa ett Google-project och få en nyckel"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Aktivera fakturering på ditt Google-projekt"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
|
|
@ -46,15 +49,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -62,3 +75,8 @@ msgstr "Powered by Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webbplats"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,58 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,39 +1,41 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 22:54+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/th/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -46,15 +48,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "สนับสนุนโดย Google"
|
||||
|
||||
|
|
@ -62,3 +74,8 @@ msgstr "สนับสนุนโดย Google"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "เว็บไซต์"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,44 +1,46 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:46+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/tr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Bir Google Proje Yönetimi 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" Google Projenizde faturalandırmayı etkinleştirin"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Google Proje Yönetiminizde 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
|
||||
|
|
@ -51,15 +53,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
|
||||
|
|
@ -67,3 +79,8 @@ msgstr "Google tarafından desteklenmektedir"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Websitesi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Web Sitesinin Google Places API Anahtarı"
|
||||
|
|
|
|||
|
|
@ -1,67 +1,74 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:04+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
"Plural-Forms: \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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-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 "
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Налаштування"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "Зроблено Google"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Веб-сайт"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -0,0 +1,95 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/> Google loyihasini yarating va kalit oling"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/> Google loyihangizda to‘lov tizimini "
|
||||
"faollashtiring"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model_terms:ir.ui.view,arch_db:website_sale_autocomplete.res_config_settings_view_form_inherit_autocomplete_googleplaces
|
||||
#, fuzzy
|
||||
msgid "API Key"
|
||||
msgstr "API kaliti"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Sozlamalar"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
#, fuzzy
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google Places API kaliti"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_sale_autocomplete/static/src/xml/autocomplete.xml:0
|
||||
#, fuzzy
|
||||
msgid "Powered by Google"
|
||||
msgstr "Google tomonidan quvvatlanadi"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
#, fuzzy
|
||||
msgid "Website"
|
||||
msgstr "Veb-sayt"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
#, fuzzy
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Veb-saytning Google Places API kaliti"
|
||||
|
|
@ -1,63 +1,83 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-11 08:59+0000\n"
|
||||
"Last-Translator: \"Thi Huong Nguyen (thng)\" <thng@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_sale_autocomplete/vi/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Tạo một dự án Google và nhận mã khóa"
|
||||
|
||||
#. 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Bật lập hoá đơn trên dự án "
|
||||
"Google của bạn"
|
||||
|
||||
#. 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"
|
||||
msgstr "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"
|
||||
msgstr "Cài đặt cấu hình"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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"
|
||||
msgstr "Được hỗ trợ bởi Google"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "Trang web"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "Khoá API Google Places của trang web"
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -18,14 +18,14 @@ 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"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -40,15 +40,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 ""
|
||||
|
||||
|
|
@ -56,3 +66,8 @@ msgstr ""
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,42 +1,41 @@
|
|||
# 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
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_sale_autocomplete/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: 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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 创建一个Google项目并得到一个密钥"
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-arrow-right\"/>\n"
|
||||
" 在您的Google项目启用计费"
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -49,19 +48,34 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__google_places_api_key
|
||||
msgid "Google Places API Key"
|
||||
msgstr "Google放置API 密钥"
|
||||
msgstr "谷歌放置API 密钥"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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技术提供"
|
||||
msgstr "谷歌技术提供"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "网站"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "网站 Google Places API 密钥"
|
||||
|
|
|
|||
|
|
@ -1,38 +1,45 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# * website_sale_autocomplete
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
# Tony Ng, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:12+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_sale_autocomplete/zh_Hant/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Create a Google Project and get a key"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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"
|
||||
"<i class=\"oi oi-arrow-right\"/>\n"
|
||||
" Enable billing on your Google Project"
|
||||
msgstr ""
|
||||
"<i class=\"oi oi-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
|
||||
|
|
@ -45,15 +52,25 @@ 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_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_website__id
|
||||
msgid "ID"
|
||||
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 "由 Google 提供"
|
||||
|
||||
|
|
@ -61,3 +78,8 @@ msgstr "由 Google 提供"
|
|||
#: model:ir.model,name:website_sale_autocomplete.model_website
|
||||
msgid "Website"
|
||||
msgstr "網站"
|
||||
|
||||
#. module: website_sale_autocomplete
|
||||
#: model:ir.model.fields,field_description:website_sale_autocomplete.field_res_config_settings__website_google_places_api_key
|
||||
msgid "Website's Google Places API Key"
|
||||
msgstr "網站的 Google Places API 密鑰"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
from odoo import models, fields
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
google_places_api_key = fields.Char(
|
||||
string='Google Places API Key',
|
||||
website_google_places_api_key = fields.Char(
|
||||
string="Website's Google Places API Key",
|
||||
related='website_id.google_places_api_key',
|
||||
readonly=False)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import models, fields
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Website(models.Model):
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB |
|
|
@ -0,0 +1,92 @@
|
|||
import { Interaction } from "@web/public/interaction";
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
import { googlePlacesSession } from "@google_address_autocomplete/google_places_session";
|
||||
import { KeepLast } from "@web/core/utils/concurrency";
|
||||
|
||||
export class AddressForm extends Interaction {
|
||||
static selector = ".oe_cart .address_autoformat";
|
||||
static selectorHas = "input[name='street'][data-autocomplete-enabled='1']";
|
||||
dynamicContent = {
|
||||
"input[name='street']": { "t-on-input.withTarget": this.debounced(this.onStreetInput, 200) },
|
||||
".js_autocomplete_result": { "t-on-click.withTarget": this.onClickAutocompleteResult },
|
||||
};
|
||||
|
||||
setup() {
|
||||
this.streetAndNumberInput = this.el.querySelector("input[name='street']");
|
||||
this.cityInput = this.el.querySelector("input[name='city']");
|
||||
this.zipInput = this.el.querySelector("input[name='zip']");
|
||||
this.countrySelect = this.el.querySelector("select[name='country_id']");
|
||||
this.stateSelect = this.el.querySelector("select[name='state_id']");
|
||||
this.keepLast = new KeepLast();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {MouseEvent} ev
|
||||
* @param {HTMLElement} currentTargetEl
|
||||
*/
|
||||
async onStreetInput(ev, inputEl) {
|
||||
const inputContainerEl = inputEl.parentNode;
|
||||
if (inputEl.value.length >= 5) {
|
||||
this.keepLast.add(
|
||||
googlePlacesSession.getAddressPropositions({
|
||||
partial_address: inputEl.value,
|
||||
}).then((response) => {
|
||||
inputContainerEl.querySelector(".dropdown-menu")?.remove();
|
||||
this.renderAt("website_sale_autocomplete.AutocompleteDropDown", {
|
||||
results: response.results,
|
||||
}, inputContainerEl);
|
||||
})
|
||||
);
|
||||
} else {
|
||||
inputContainerEl.querySelector(".dropdown-menu")?.remove();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {MouseEvent} ev
|
||||
* @param {HTMLElement} currentTargetEl
|
||||
*/
|
||||
async onClickAutocompleteResult(ev, currentTargetEl) {
|
||||
const dropdownEl = currentTargetEl.parentNode;
|
||||
dropdownEl.innerText = "";
|
||||
dropdownEl.classList.add("d-flex", "justify-content-center", "align-items-center");
|
||||
|
||||
const spinnerEl = document.createElement("div");
|
||||
spinnerEl.classList.add("spinner-border", "text-warning", "text-center", "m-auto");
|
||||
dropdownEl.appendChild(spinnerEl);
|
||||
|
||||
const address = await this.waitFor(googlePlacesSession.getAddressDetails({
|
||||
address: currentTargetEl.innerText,
|
||||
google_place_id: currentTargetEl.dataset.googlePlaceId,
|
||||
}));
|
||||
|
||||
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[0];
|
||||
// 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[0];
|
||||
observer.disconnect();
|
||||
}).observe(this.stateSelect, {
|
||||
childList: true, // Trigger only if the options change
|
||||
});
|
||||
}
|
||||
dropdownEl.remove();
|
||||
}
|
||||
}
|
||||
|
||||
registry
|
||||
.category("public.interactions")
|
||||
.add("website_sale_autocomplete.address_form", AddressForm);
|
||||
|
|
@ -1,112 +0,0 @@
|
|||
/** @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();
|
||||
},
|
||||
});
|
||||
|
|
@ -4,11 +4,11 @@
|
|||
<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-foreach="results" t-as="result" t-key="result_index"
|
||||
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"/>
|
||||
<img class="ms-auto pe-1" src="/google_address_autocomplete/static/src/img/powered_by_google_on_white.png" alt="Powered by Google"/>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
|
|||
|
|
@ -1,71 +1,42 @@
|
|||
/** @odoo-module */
|
||||
|
||||
import tour from 'web_tour.tour';
|
||||
import tourUtils from 'website_sale.tour_utils';
|
||||
import { registry } from "@web/core/registry";
|
||||
import * as tourUtils from '@website_sale/js/tours/tour_utils';
|
||||
|
||||
|
||||
function fail (errorMessage) {
|
||||
tour._consume_tour(tour.running_tour, errorMessage);
|
||||
}
|
||||
|
||||
tour.register('autocomplete_tour', {
|
||||
test: true,
|
||||
registry.category("web_tour.tours").add('autocomplete_tour', {
|
||||
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'
|
||||
},
|
||||
steps: () => [
|
||||
...tourUtils.addToCart({ productName: "A test product", expectUnloadPage: true }),
|
||||
tourUtils.goToCart(),
|
||||
{
|
||||
content: 'Go to process checkout',
|
||||
trigger: 'a:contains("Process Checkout")'
|
||||
}, { // Actual test
|
||||
tourUtils.goToCheckout(),
|
||||
{ // Actual test
|
||||
content: 'Input in Street & Number field',
|
||||
trigger: 'input[name="street"]',
|
||||
run: 'text This is a test'
|
||||
run: "edit 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'
|
||||
run: "fill 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
|
||||
trigger: ".dropdown-menu .js_autocomplete_result:first:contains(result 0)",
|
||||
run: "click",
|
||||
},
|
||||
// TODO: Make this step work in headless mode
|
||||
// {
|
||||
// content: "Verify the autocomplete box disappeared",
|
||||
// trigger: `body:not(:has(.dropdown-menu .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())
|
||||
}
|
||||
}
|
||||
trigger: "input[name=street]:value(/^42 A fictional Street$/)",
|
||||
}, {
|
||||
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())
|
||||
}
|
||||
}
|
||||
trigger: 'input[name="city"]:value(/^A Fictional City$/)',
|
||||
}, {
|
||||
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())
|
||||
}
|
||||
}
|
||||
}]);
|
||||
trigger: 'input[name="zip"]:value(/^12345$/)',
|
||||
}]});
|
||||
|
|
|
|||
|
|
@ -1,9 +1,13 @@
|
|||
# -*- 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'
|
||||
from odoo.tests import HttpCase, patch, tagged
|
||||
|
||||
from odoo.addons.google_address_autocomplete.controllers.google_address_autocomplete import (
|
||||
AutoCompleteController,
|
||||
)
|
||||
|
||||
|
||||
CONTROLLER_PATH = 'odoo.addons.google_address_autocomplete.controllers.google_address_autocomplete.AutoCompleteController'
|
||||
MOCK_GOOGLE_ID = 'aHR0cHM6Ly93d3cueW91dHViZS5jb20vd2F0Y2g/dj1kUXc0dzlXZ1hjUQ=='
|
||||
MOCK_API_KEY = 'Tm9ib2R5IGV4cGVjdHMgdGhlIFNwYW5pc2ggaW5xdWlzaXRpb24gIQ=='
|
||||
|
||||
|
|
@ -22,8 +26,8 @@ class TestUI(HttpCase):
|
|||
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,
|
||||
'country': [self.env['res.country'].search([('code', '=', 'USA')]).id, 'United States'],
|
||||
'state': [self.env['res.country.state'].search([('country_id.code', '=', 'USA')])[0].id, 'Alabama'],
|
||||
'zip': '12345',
|
||||
'city': 'A Fictional City',
|
||||
'street': 'A fictional Street',
|
||||
|
|
|
|||
|
|
@ -4,22 +4,22 @@
|
|||
<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="inherit_id" ref="website_sale.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">
|
||||
<xpath expr="//setting[@id='autocomplete_googleplaces_setting']" 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"/>
|
||||
<label class="col-4" for="website_google_places_api_key" string="API Key"/>
|
||||
<field class="col-6" name="website_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"/>
|
||||
<i class="oi oi-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"/>
|
||||
<i class="oi oi-arrow-right"/>
|
||||
Enable billing on your Google Project
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
<?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">
|
||||
|
||||
<template id="website_sale_address_with_autocomplete" inherit_id="website_sale.address_form_fields">
|
||||
<input name="street" position="attributes">
|
||||
<attribute name="t-att-data-autocomplete-enabled">
|
||||
1 if website.has_google_places_api_key() else 0
|
||||
</attribute>
|
||||
</xpath>
|
||||
</input>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue