Начальное наполнение
This commit is contained in:
parent
79988d8d56
commit
933f2f0847
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
29
__manifest__.py
Normal file
29
__manifest__.py
Normal file
@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Customer References',
|
||||
'category': 'Website/Website',
|
||||
'summary': 'Publish your customer references',
|
||||
'version': '1.0',
|
||||
'description': """
|
||||
Publish your customers as business references on your website to attract new potential prospects.
|
||||
""",
|
||||
'depends': [
|
||||
'website_crm_partner_assign',
|
||||
'website_partner',
|
||||
'website_google_map',
|
||||
],
|
||||
'demo': [
|
||||
'data/res_partner_demo.xml',
|
||||
],
|
||||
'data': [
|
||||
'views/website_customer_templates.xml',
|
||||
'views/res_partner_views.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'security/ir_rule.xml',
|
||||
'views/snippets.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
4
controllers/__init__.py
Normal file
4
controllers/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
155
controllers/main.py
Normal file
155
controllers/main.py
Normal file
@ -0,0 +1,155 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import werkzeug.urls
|
||||
|
||||
from odoo import http
|
||||
from odoo.addons.http_routing.models.ir_http import unslug, slug
|
||||
from odoo.addons.website.models.ir_http import sitemap_qs2dom
|
||||
from odoo.tools.translate import _
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class WebsiteCustomer(http.Controller):
|
||||
_references_per_page = 20
|
||||
|
||||
def sitemap_industry(env, rule, qs):
|
||||
if not qs or qs.lower() in '/customers':
|
||||
yield {'loc': '/customers'}
|
||||
|
||||
Industry = env['res.partner.industry']
|
||||
dom = sitemap_qs2dom(qs, '/customers/industry', Industry._rec_name)
|
||||
for industry in Industry.search(dom):
|
||||
loc = '/customers/industry/%s' % slug(industry)
|
||||
if not qs or qs.lower() in loc:
|
||||
yield {'loc': loc}
|
||||
|
||||
dom = [('website_published', '=', True), ('assigned_partner_id', '!=', False), ('country_id', '!=', False)]
|
||||
dom += sitemap_qs2dom(qs, '/customers/country')
|
||||
countries = env['res.partner'].sudo()._read_group(dom, ['country_id'])
|
||||
for [country] in countries:
|
||||
loc = '/customers/country/%s' % slug(country)
|
||||
if not qs or qs.lower() in loc:
|
||||
yield {'loc': loc}
|
||||
|
||||
@http.route([
|
||||
'/customers',
|
||||
'/customers/page/<int:page>',
|
||||
'/customers/country/<model("res.country"):country>',
|
||||
'/customers/country/<model("res.country"):country>/page/<int:page>',
|
||||
'/customers/industry/<model("res.partner.industry"):industry>',
|
||||
'/customers/industry/<model("res.partner.industry"):industry>/page/<int:page>',
|
||||
'/customers/industry/<model("res.partner.industry"):industry>/country/<model("res.country"):country>',
|
||||
'/customers/industry/<model("res.partner.industry"):industry>/country/<model("res.country"):country>/page/<int:page>',
|
||||
], type='http', auth="public", website=True, sitemap=sitemap_industry)
|
||||
def customers(self, country=None, industry=None, page=0, **post):
|
||||
Tag = request.env['res.partner.tag']
|
||||
Partner = request.env['res.partner']
|
||||
search_value = post.get('search')
|
||||
|
||||
domain = [('website_published', '=', True), ('assigned_partner_id', '!=', False)]
|
||||
if search_value:
|
||||
domain += [
|
||||
'|', '|',
|
||||
('name', 'ilike', search_value),
|
||||
('website_description', 'ilike', search_value),
|
||||
('industry_id.name', 'ilike', search_value),
|
||||
]
|
||||
|
||||
tag_id = post.get('tag_id')
|
||||
if tag_id:
|
||||
tag_id = unslug(tag_id)[1] or 0
|
||||
domain += [('website_tag_ids', 'in', tag_id)]
|
||||
|
||||
# group by industry, based on customers found with the search(domain)
|
||||
industries = Partner.sudo().read_group(domain, ["id", "industry_id"], groupby="industry_id", orderby="industry_id")
|
||||
partners_count = Partner.sudo().search_count(domain)
|
||||
|
||||
if industry:
|
||||
domain.append(('industry_id', '=', industry.id))
|
||||
if industry.id not in (x['industry_id'][0] for x in industries if x['industry_id']):
|
||||
if industry.exists():
|
||||
industries.append({
|
||||
'industry_id_count': 0,
|
||||
'industry_id': (industry.id, industry.name)
|
||||
})
|
||||
|
||||
industries.sort(key=lambda d: (d.get('industry_id') or (0, ''))[1])
|
||||
|
||||
industries.insert(0, {
|
||||
'industry_id_count': partners_count,
|
||||
'industry_id': (0, _("All Industries"))
|
||||
})
|
||||
|
||||
# group by country, based on customers found with the search(domain)
|
||||
countries = Partner.sudo().read_group(domain, ["id", "country_id"], groupby="country_id", orderby="country_id")
|
||||
country_count = Partner.sudo().search_count(domain)
|
||||
|
||||
if country:
|
||||
domain += [('country_id', '=', country.id)]
|
||||
if country.id not in (x['country_id'][0] for x in countries if x['country_id']):
|
||||
if country.exists():
|
||||
countries.append({
|
||||
'country_id_count': 0,
|
||||
'country_id': (country.id, country.name)
|
||||
})
|
||||
countries.sort(key=lambda d: (d['country_id'] or (0, ""))[1])
|
||||
|
||||
countries.insert(0, {
|
||||
'country_id_count': country_count,
|
||||
'country_id': (0, _("All Countries"))
|
||||
})
|
||||
|
||||
# search customers to display
|
||||
partner_count = Partner.sudo().search_count(domain)
|
||||
|
||||
# pager
|
||||
url = '/customers'
|
||||
if industry:
|
||||
url += '/industry/%s' % industry.id
|
||||
if country:
|
||||
url += '/country/%s' % country.id
|
||||
pager = request.website.pager(
|
||||
url=url, total=partner_count, page=page, step=self._references_per_page,
|
||||
scope=7, url_args=post
|
||||
)
|
||||
|
||||
partners = Partner.sudo().search(domain, offset=pager['offset'], limit=self._references_per_page)
|
||||
google_map_partner_ids = ','.join(str(it) for it in partners.ids)
|
||||
google_maps_api_key = request.website.google_maps_api_key
|
||||
|
||||
tags = Tag.search([('website_published', '=', True), ('partner_ids', 'in', partners.ids)], order='classname, name ASC')
|
||||
tag = tag_id and Tag.browse(tag_id) or False
|
||||
|
||||
values = {
|
||||
'countries': countries,
|
||||
'current_country_id': country.id if country else 0,
|
||||
'current_country': country or False,
|
||||
'industries': industries,
|
||||
'current_industry_id': industry.id if industry else 0,
|
||||
'current_industry': industry or False,
|
||||
'partners': partners,
|
||||
'google_map_partner_ids': google_map_partner_ids,
|
||||
'pager': pager,
|
||||
'post': post,
|
||||
'search_path': "?%s" % werkzeug.urls.url_encode(post),
|
||||
'tag': tag,
|
||||
'tags': tags,
|
||||
'google_maps_api_key': google_maps_api_key,
|
||||
}
|
||||
return request.render("website_customer.index", values)
|
||||
|
||||
# Do not use semantic controller due to SUPERUSER_ID
|
||||
@http.route(['/customers/<partner_id>'], type='http', auth="public", website=True)
|
||||
def partners_detail(self, partner_id, **post):
|
||||
current_slug = partner_id
|
||||
_, partner_id = unslug(partner_id)
|
||||
if partner_id:
|
||||
partner = request.env['res.partner'].sudo().browse(partner_id)
|
||||
if partner.exists() and partner.website_published:
|
||||
if slug(partner) != current_slug:
|
||||
return request.redirect('/customers/%s' % slug(partner))
|
||||
values = {}
|
||||
values['main_object'] = values['partner'] = partner
|
||||
return request.render("website_customer.details", values)
|
||||
raise request.not_found()
|
122
data/res_partner_demo.xml
Normal file
122
data/res_partner_demo.xml
Normal file
@ -0,0 +1,122 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record id="base.res_partner_2" model="res.partner">
|
||||
<field name="is_published" eval="True"/>
|
||||
<field name="website_short_description">Deco Addict designs, develops, integrates and supports HR and Supply Chain processes in order to make our customers more productive, responsive and profitable.</field>
|
||||
<field name="website_description" type="html">
|
||||
<p>
|
||||
Deco Addict designs, develops, integrates and supports HR and Supply
|
||||
Chain processes in order to make our customers more productive,
|
||||
responsive and profitable.
|
||||
</p><p>
|
||||
Our experts invent, imagine and develop solutions which meet
|
||||
your business requirements. They build a new technical
|
||||
environment for your company, but they always take the already
|
||||
installed IT software into account. That is why Idealis
|
||||
Consulting delivers excellence in HR and SC Management.
|
||||
</p><p>
|
||||
Deco Addict integrates ERP for Global Companies and supports PME
|
||||
with Open Sources software to manage their businesses. Our
|
||||
consultants are experts in the following areas:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Sales and Distribution</li>
|
||||
<li>Materials Management</li>
|
||||
<li>Inventory and Warehouse management</li>
|
||||
<li>Customer Relationship Management</li>
|
||||
<li>Personnel Administration</li>
|
||||
<li>Talent Management</li>
|
||||
<li>Reporting</li>
|
||||
</ul>
|
||||
</field>
|
||||
</record>
|
||||
<record id="base.res_partner_3" model="res.partner">
|
||||
<field name="is_published" eval="True"/>
|
||||
<field name="website_short_description">A non-profit international educational and scientific organisation, hosting three departments (aeronautics and aerospace, environmental and applied fluid dynamics, and turbomachinery and propulsion).</field>
|
||||
<field name="website_description" type="html">
|
||||
<p>
|
||||
A non-profit international educational and scientific
|
||||
organisation, hosting three departments (aeronautics and
|
||||
aerospace, environmental and applied fluid dynamics, and
|
||||
turbomachinery and propulsion).
|
||||
</p><p>
|
||||
It provides post-graduate education in fluid dynamics
|
||||
(research master in fluid dynamics, former "Diploma
|
||||
Course", doctoral program, stagiaire program and lecture
|
||||
series) and encourages "training in research through
|
||||
research".
|
||||
</p><p>
|
||||
It undertakes and promotes research in the field of fluid
|
||||
dynamics. It possesses about fifty different wind tunnels,
|
||||
turbomachinery and other specialized test facilities, some
|
||||
of which are unique or the largest in the world. Extensive
|
||||
research on experimental, computational and theoretical
|
||||
aspects of gas and liquid flows is carried out under the
|
||||
direction of the faculty and research engineers, sponsored
|
||||
mainly by governmental and international agencies as well
|
||||
as industries.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
<record id="base.res_partner_4" model="res.partner">
|
||||
<field name="is_published" eval="True"/>
|
||||
<field name="website_short_description">Deco Addict designs, develops, integrates and supports HR and Supply Chain processes in order to make our customers more productive, responsive and profitable.</field>
|
||||
<field name="website_description" type="html">
|
||||
<p>
|
||||
Deco Addict designs, develops, integrates and supports HR and Supply
|
||||
Chain processes in order to make our customers more productive,
|
||||
responsive and profitable.
|
||||
</p><p>
|
||||
Our experts invent, imagine and develop solutions which meet
|
||||
your business requirements. They build a new technical
|
||||
environment for your company, but they always take the already
|
||||
installed IT software into account. That is why Idealis
|
||||
Consulting delivers excellence in HR and SC Management.
|
||||
</p><p>
|
||||
Deco Addict integrates ERP for Global Companies and supports PME
|
||||
with Open Sources software to manage their businesses. Our
|
||||
consultants are experts in the following areas:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Sales and Distribution</li>
|
||||
<li>Materials Management</li>
|
||||
<li>Inventory and Warehouse management</li>
|
||||
<li>Customer Relationship Management</li>
|
||||
<li>Personnel Administration</li>
|
||||
<li>Talent Management</li>
|
||||
<li>Reporting</li>
|
||||
</ul>
|
||||
</field>
|
||||
</record>
|
||||
<record id="base.res_partner_3" model="res.partner">
|
||||
<field name="is_published" eval="True"/>
|
||||
<field name="website_short_description">A non-profit international educational and scientific organisation, hosting three departments (aeronautics and aerospace, environmental and applied fluid dynamics, and turbomachinery and propulsion).</field>
|
||||
<field name="website_description" type="html">
|
||||
<p>
|
||||
A non-profit international educational and scientific
|
||||
organisation, hosting three departments (aeronautics and
|
||||
aerospace, environmental and applied fluid dynamics, and
|
||||
turbomachinery and propulsion).
|
||||
</p><p>
|
||||
It provides post-graduate education in fluid dynamics
|
||||
(research master in fluid dynamics, former "Diploma
|
||||
Course", doctoral program, stagiaire program and lecture
|
||||
series) and encourages "training in research through
|
||||
research".
|
||||
</p><p>
|
||||
It undertakes and promotes research in the field of fluid
|
||||
dynamics. It possesses about fifty different wind tunnels,
|
||||
turbomachinery and other specialized test facilities, some
|
||||
of which are unique or the largest in the world. Extensive
|
||||
research on experimental, computational and theoretical
|
||||
aspects of gas and liquid flows is carried out under the
|
||||
direction of the faculty and research engineers, sponsored
|
||||
mainly by governmental and international agencies as well
|
||||
as industries.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
269
i18n/af.po
Normal file
269
i18n/af.po
Normal file
@ -0,0 +1,269 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktief"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alle Lande"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Vennoot Merker"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Venote"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Verwysings"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Soek"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webtuiste"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Wêreldkaart"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
265
i18n/am.po
Normal file
265
i18n/am.po
Normal file
@ -0,0 +1,265 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "ጥቅም ላይ ማዋል"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "ተባባሪ"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "ማመሳከሪያ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
321
i18n/ar.po
Normal file
321
i18n/ar.po
Normal file
@ -0,0 +1,321 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2024\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>العودة إلى المراجع "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"فتح الخريطة \"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> الكل "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">تم التنفيذ بواسطة</span> "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "نشط"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "كافة الدول"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "كافة المجالات "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "مؤرشف"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "العودة إلى قائمة المراجع "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "تصنيف Bootstrap لتخصيص اللون "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "بإمكانه النشر "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "اسم الفئة"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "التصنيف "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "إغلاق"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "جهة الاتصال"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "عامل تصفية الدول "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "إنشاء علامة تصنيف جهة اتصال جديدة "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "أدخِل وصفاً قصيراً "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "الفلترة حسب الدولة "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "التصفية حسب مجال العمل "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "التصفية حسب علامات التصنيف "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "عوامل التصفية "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "الذهاب إلى العميل "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "عامل تصفية المجال "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "تم نشره "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"قم بإدارة علامات تصنيف جهات الاتصال لتتمكن من تصنيفها بشكل أفضل لأغراض "
|
||||
"التتبع والتحليل. "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "لم يتم العثور على نتائج لـ\" "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "فتح القائمة المنسدلة للدول "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "فتح القائمة المنسدلة لمجالات العمل "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "مراجعنا "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "علامة تصنيف الشريك "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"علامات تصنيف الشريك - يمكن استخدام علامات التصنيف هذه في الموقع الإلكتروني "
|
||||
"لإيجاد العملاء حسب القسم، أو ... "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "الشركاء"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "المراجع "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "صفحة المراجع "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "بحث"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "البحث عن علامة تصنيف الشريك "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "ألقِ نظرة على كافة العملاء "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "ألقِ نظرة على عوامل تصفية الدول "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "ألقِ نظرة على عوامل تصفية مجالات العمل "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "إظهار الخريطة "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "عامل تصفية علامات التصنيف "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "رابطURL الكامل للوصول إلى المستند من خلال الموقع الإلكتروني. "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "مرئي في الموقع الإلكتروني الحالي "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "الموقع الإلكتروني"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr " علامات تصنيف الموقع الالكتروني "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "رابط URL للموقع الإلكتروني "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr " علامات تصنيف الموقع الالكتروني "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "خريطة العالم"
|
270
i18n/az.po
Normal file
270
i18n/az.po
Normal file
@ -0,0 +1,270 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Bütün Ölkələr"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arxivləndi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Dərc Oluna Bilər"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kateqoriyanın adı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Bağlayın"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Paylaşılıb"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Tərəfdaşlar "
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Axtarın"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Veb sayt vasitəsilə sənədə daxil olmaq üçün tam URL."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Mövcud veb saytda görünür"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Veb sayt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Veb sayt URL-u"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
318
i18n/bg.po
Normal file
318
i18n/bg.po
Normal file
@ -0,0 +1,318 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Kaloyan Naumov <kaloyan@lumnus.net>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Всички"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Всички държави"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Архивирано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Клас Bootstrap за персонализиране на цвета"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Име на категория"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Клас"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Филтър по държави"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Филтри"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Маркер на контрагент"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Контрагенти"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Референции"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Потърсете"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Пълен URL адрес за достъп до документа през уебсайта."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Етикети на уебсайта"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL адрес на уебсайт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Етикети на уебсайта"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Карта на света"
|
270
i18n/bs.po
Normal file
270
i18n/bs.po
Normal file
@ -0,0 +1,270 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Sve zemlje"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Naziv kategorije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Nisu pronađeni rezultati"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Naše reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneri"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Pretraži"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Kompletan URL za pristup dokumentu putem website-a."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Website URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Svjetska mapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
328
i18n/ca.po
Normal file
328
i18n/ca.po
Normal file
@ -0,0 +1,328 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Sandra Franch <sandra.franch@upc.edu>, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# jabiri7, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# marcescu, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: RGB Consulting <odoo@rgbconsulting.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tot"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Tots els països"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Totes les indústries"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arxivat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Classe de Bootstrap per personalitzar el color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Pot publicar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nom de categoria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Classe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Tancar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtre de països"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Crear una nova etiqueta de contacte"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrar per país"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtra per etiquetes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtres"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtre de la indústria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Està publicat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Gestiona etiquetes de contacte per classificar-los millor amb el propòsit de"
|
||||
" fer seguiments i anàlisis,"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "No s'han trobat resultats per \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta d'empresa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Etiquetes d'empresa - Es poden utilitzar al lloc web per localitzar clients "
|
||||
"per sector, ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empreses"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referències"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Pàgina de referències"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Cercar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Etiqueta de l'empresa de cerca"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Mostra el mapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtre d'etiquetes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "L'URL completa per accedir al document a través del lloc web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visible al lloc web actual"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Lloc web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetes del lloc web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "L'URL del lloc web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetes del lloc web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa del món"
|
322
i18n/cs.po
Normal file
322
i18n/cs.po
Normal file
@ -0,0 +1,322 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Jiří Podhorecký, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2024
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Vše"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Všechny země"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Všechna průmyslová odvětví"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivováno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class pro přizpůsobení barvy"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Může publikovat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Název kategorie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Třída"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Vytvořit nový tag kontaktů"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno uživatelem"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno dne"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrovat podle země"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtrovat dle odvětví"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtry"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtr odvětví"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Je publikováno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno uživatelem"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upraveno dne"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Spravovat kontaktní značky, abyste je mohli lépe klasifikovat pro účely "
|
||||
"sledování a analýzy."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Nebyly nalezeny žádné výsledky pro „"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Značka Partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnerské štítky - tyto štítky lze použít na webu pro vyhledávání zákazník "
|
||||
"dle sektoru. nebo dalších parametrů"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneři"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Odkazy"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Vyhledávání"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Hledat značku partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtr štítků"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Celá adresa URL pro přístup k dokumentu prostřednictvím webstránky."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Viditelné na aktuální webstránce"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webová stránka"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Webové štítky"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL webové stránky"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Tagy webstránky"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa světa"
|
319
i18n/da.po
Normal file
319
i18n/da.po
Normal file
@ -0,0 +1,319 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Alle"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alle lande"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Alle Brancher"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arkiveret"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class til at tilpasse farven"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Kan udgives "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorinavn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Class"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Landefilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Opret et nyt kontakt tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrer efter land"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtre"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Er udgivet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Håndter kontakt tags for bedre at klassificere dem til registrerings- og "
|
||||
"analyseformål."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Ingen resultater fundet for \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partner Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partner tags - Disse tags kan bruges på hjemmesiden til at finde kunder "
|
||||
"efter sektor, eller ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partnere"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Søg"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Søg partner tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Den fulde URL for at få adgang til dokumentet via hjemmesiden."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Synlig på denne hjemmeside"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Hjemmeside"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Website tags"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Hjemmeside URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Website tags"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Verdenskort"
|
321
i18n/de.po
Normal file
321
i18n/de.po
Normal file
@ -0,0 +1,321 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Zurück zu Referenzen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Alle"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implementiert durch</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alle Länder"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Alle Branchen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Zurück zur Referenzliste"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap-Klasse zur Farbauswahl"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Kann veröffentlichen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorienname"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasse"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Länderfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Ein neues Kontakt-Stichwort"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Eine kurze Beschreibung eingeben"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Nach Land filtern"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Nach Branche filtern"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Nach Stichwörtern filtern"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Zum Kunden"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Branchenfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Ist veröffentlicht"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Verwalten Sie Kontakt-Stichwörter, um sie für Verfolgungs- und Analysezwecke"
|
||||
" besser zu klassifizieren."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Kein Treffer gefunden für „"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Drop-down für Länder öffnen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Drop-down für Branchen öffnen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Unsere Referenzen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partner-Stichwort"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partner-Stichwörter - Diese Stichwörter können auf der Website verwendet "
|
||||
"werden, um Kunden nach Branche zu finden, oder ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referenzen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Referenzenseite"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Partner-Stichwort suchen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Alle Kunden ansehen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Länderfilter ansehen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Branchenfilter ansehen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Karte anzeigen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Stichwortfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
"Die vollständige URL, um über die Website auf das Dokument zuzugreifen."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Auf der aktuellen Website sichtbar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Website-Stichwörter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Website-URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Website-Stichwörter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Weltkarte"
|
270
i18n/el.po
Normal file
270
i18n/el.po
Normal file
@ -0,0 +1,270 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# Giota Dandidou <giotadandidou@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Giota Dandidou <giotadandidou@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/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"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Όλα"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Σε Ισχύ"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Όλες οι χώρες"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Κλάση Bootstrap για να προσαρμόσετε το χρώμα"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Όνομα Κατηγορίας"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Κλάση"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Κλείσιμο"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Επαφή"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Υλοποιήθηκε από"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Δεν βρέθηκε αποτέλεσμα"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Οι αναφορές μας"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Ετικέτα Συνεργάτη"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Συνεργάτες"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Παραπομπές"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Αναφορές ανά Χώρα"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Αναφορές ανά Ετικέτα"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Αναζήτηση"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Η πλήρης διεύθυνση (URL) για την πρόσβαση στο έγγραφο μέσω του ιστοτόπου."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Το εμπιστεύονται εκατομμύρια σε όλο τον κόσμο"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Ετικέτες Ιστότοπου"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Διεύθυνση URL Ιστότοπου"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Ετικέτες ιστότοπου"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Παγκόσμιος Χάρτης"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "Αναφορά(ες)"
|
267
i18n/en_AU.po
Normal file
267
i18n/en_AU.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
268
i18n/en_GB.po
Normal file
268
i18n/en_GB.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# James Dove <james@oceancave.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-16 16:24+0000\n"
|
||||
"Last-Translator: James Dove <james@oceancave.com>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/odoo-9/language/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "All Countries"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class to customise the colour"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Category Name"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partners"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "World Map"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
321
i18n/es.po
Normal file
321
i18n/es.po
Normal file
@ -0,0 +1,321 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Volver a las referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Todo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implementado por</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos los países"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Todos los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Volver a la lista de referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Clase de Bootstrap para personalizar el color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Puede publicar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Clase"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtro de países"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Crear etiqueta de contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Insertar una descripción corta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtro por país"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtrar por sector"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtros por tags"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Ir al cliente"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtro de industria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Está publicado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Administre las etiquetas de contacto para clasificarlas mejor con fines de "
|
||||
"seguimiento y análisis."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "No se encontraron resultados de \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Abrir lista desplegable de países "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Abrir la lista desplegable de los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Nuestras referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta del Contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Etiquetas del contacto: estas etiquetas se pueden usar en el sitio web para "
|
||||
"encontrar clientes por sector o ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Contactos"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Página de referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Buscar etiqueta del contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Ver todos los clientes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Ver filtros de países "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Ver filtros de los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Mostrar mapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtro de etiquetas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "La URL completa para acceder al documento a través del sitio web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visible en el sitio web actual"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetas Web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL del sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetas web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa mundial"
|
320
i18n/es_419.po
Normal file
320
i18n/es_419.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Volver a las referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Abrir mapa\" "
|
||||
"title=\"Abrir mapa\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Todo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implementado por</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos los países"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Todos los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Volver a la lista de referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Clase de Bootstrap para personalizar el color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Puede publicar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Clase"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtro de países"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Crear etiqueta de contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Agregue una descripción corta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrar por país"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtrar por sector"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtrar por etiquetas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Vaya a clientes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtro del sector"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Está publicado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Gestione las etiquetas de los contactos para clasificarlos de mejor manera "
|
||||
"con el fin de realizar un seguimiento y análisis."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "No se encontraron resultados para \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Abrir lista desplegable de países "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Abrir la lista desplegable de los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Nuestras referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta del contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Etiquetas del contacto: estas etiquetas se pueden usar en el sitio web para "
|
||||
"encontrar clientes por sector o..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Contactos"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Página de referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Buscar etiqueta del contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Ver todos los clientes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Ver filtros de países "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Ver filtros de los sectores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Mostrar mapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtro de etiquetas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "La URL completa para acceder al documento a través del sitio web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visible desde este sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetas del sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL del sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetas del sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa mundial"
|
267
i18n/es_BO.po
Normal file
267
i18n/es_BO.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-24 20:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/language/es_BO/)\n"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/es_CL.po
Normal file
267
i18n/es_CL.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-10-06 08:56+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/language/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
269
i18n/es_CO.po
Normal file
269
i18n/es_CO.po
Normal file
@ -0,0 +1,269 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
# Mateo Tibaquirá <nestormateo@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-02-12 14:01+0000\n"
|
||||
"Last-Translator: ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/language/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Todos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo(a)"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos los Países"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class para personalizar el color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de la Categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Clase"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Implementado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "No se encontraron resultados"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Nuestras Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta Asociado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Asociado"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Referencias por País"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Referencias por Etiquetas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Comprobado por millones alrededor del mundo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetas del Sitio Web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetas del sitio web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa Mundial"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "referencia(s))"
|
267
i18n/es_CR.po
Normal file
267
i18n/es_CR.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:11+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/language/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/es_DO.po
Normal file
267
i18n/es_DO.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-05-19 06:01+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/odoo-9/language/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos los países"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "No se encuentro resultado."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Nuestras Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta de empresa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencia"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa Mundi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
268
i18n/es_EC.po
Normal file
268
i18n/es_EC.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-12-07 04:03+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/language/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Todos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos los países"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class para personalizar el color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Clase"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Implemetado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Sin resultados"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Nuestras referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta de Empresa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Referencias por País"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Referencias por Etiquetas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Comprobado por millones alrededor del mundo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetas del Sitio Web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetas de Sitio Web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa mundial"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "referencia(s))"
|
267
i18n/es_PA.po
Normal file
267
i18n/es_PA.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:11+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/language/es_PA/)\n"
|
||||
"Language: es_PA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
268
i18n/es_PE.po
Normal file
268
i18n/es_PE.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-06-16 20:05+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos lo Países"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nombre de la Categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "No se encontraron resultados"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partners"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa Mundial"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/es_PY.po
Normal file
267
i18n/es_PY.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:11+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/language/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/es_VE.po
Normal file
267
i18n/es_VE.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-05-15 18:50+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/language/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
330
i18n/et.po
Normal file
330
i18n/et.po
Normal file
@ -0,0 +1,330 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Patrick-Jordan Kiudorv, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# Algo Kärp <algokarp@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Tagasi viidete juurde"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Kõik"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Juurutaja</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivne"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Kõik riigid"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Kõik valdkonnad"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhiveeritud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Tagasi viidete listi juurde"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class to customize the color"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Võib avaldada"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategooria nimi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klass"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Sulge"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Riikide filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Looge uus kontakti silt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loodud (kelle poolt?)"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuvatav nimi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Sisesta lühikirjeldus"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "FIltreeri riiki"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtreeri valdkonna järgi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtreeritud siltide järgi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtrid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Vaata klienti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Valdkonna filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "On avaldatud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Hallake kontaktide silte, et neid paremini klassifitseerida jälgimise ja "
|
||||
"analüüsi eesmärgil"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Päringule tulemusi ei leitud"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Ava riikide rippmenüü"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Ava valdkonnade rippmenüü"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Meie viited"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partneri silt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnerite sildid - Neid silte saab kasutada veebilehel, et leida kliente "
|
||||
"sektori kaupa või ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partnerid"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Viited"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Viidete leht"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Otsi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Otsi partneri silti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Vaata kõiki kliente"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Vaata riikide filtreid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Vaata valdkonna filtreid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Kuva kaart"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Siltide filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Dokumendile veebisaidi kaudu juurdepääsuks täielik URL."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Nähtav praegusel veebilehel"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Veebileht"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Veebilehe sildid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Veebilehe URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Veebilehe sildid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Maailma kaart"
|
267
i18n/eu.po
Normal file
267
i18n/eu.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-02-08 18:25+0000\n"
|
||||
"Last-Translator: Oihane Crucelaegui <oihanecruce@gmail.com>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Gaituta"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Kidea"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
322
i18n/fa.po
Normal file
322
i18n/fa.po
Normal file
@ -0,0 +1,322 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Hamid Darabi, 2023
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> همه"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "فعال"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "تمام کشورها"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "بایگانی شده"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "کلاس Bootstrap برای سفارشی سازی رنگ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "می تواند منتشر کند"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "نام دسته بندی"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "کلاس"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "بستن"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "مخاطب"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "یک برچسب مخاطب جدید ایجاد کنید"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایش داده شده"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "فیلترها"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "منتشر شده است"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین بروز رسانی توسط"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"برچسبهای مخاطبان برای تقسیم بندی و رهگیری بهتر آنها و به منظور تحلیل بهتر "
|
||||
"مدیریت کنید."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "هیچ نتیجه ای یافت نشد برای \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "برچسب های همکار"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"برچسب های همکار - این برچسب ها میتوانید در وبسایت برای یافتن مشتریان با بخش"
|
||||
" استفاده شود، یا ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "طرف حساب"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "مراجع"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "جستجو"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "جستجوی برچسب همکار"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "آدرس URL کامل برای دسترسی سند در وبسایت."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "قابل دید در وبسایت حاضر"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "تارنما"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "برچسبهای وبسایت"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL وبسایت"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "برچسب های وبسایت"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "نقشه جهان"
|
328
i18n/fi.po
Normal file
328
i18n/fi.po
Normal file
@ -0,0 +1,328 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Mikko Salmela <salmemik@gmail.com>, 2023
|
||||
# Jussi Lehto <jussi@gulfeo.com>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Avaa kartta\" "
|
||||
"title=\"Avaa kartta\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Kaikki"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Kaikki maat"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Kaikki toimialat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arkistoitu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap-luokka värin mukauttamiseksi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Voi julkaista"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Tuoteryhmän nimi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Luokka"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Maiden suodatin"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Luo uusi tunniste yhteystiedolle"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Suodata maittain"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Suodata tunnisteiden mukaan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Suotimet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Toimialojen suodatin"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "On julkaistu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Hallitse yhteystietojen tunnisteita luokitellaksesi niitä paremmin seuranta-"
|
||||
" ja analyysitarkoituksiin."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Ei hakutuloksia hakusanalla \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Avaa avattavat maat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Kumppanin tunniste"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Kumppanien tunnisteet - Näitä voidaan käyttää verkkosivuilla löytämään "
|
||||
"asiakasryhmiä jne."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Kumppanit"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Viitteet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Asiakasreferenssien sivu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Hae"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Hae kumppanin tunniste"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Katso maasuodattimet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Näytä kartta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Tunnisteiden suodatin"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Dokumentin URL-osoite verkkosivustolla."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Näkyy nykysellä verkkosivulla"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Verkkosivu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Verkkosivun tunnisteet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Verkkosivuston osoite"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Verkkosivun tunnisteet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Maailman kartta"
|
267
i18n/fo.po
Normal file
267
i18n/fo.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-12-22 23:50+0000\n"
|
||||
"Last-Translator: Jarnhold Nattestad <nattestads@gmail.com>\n"
|
||||
"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
320
i18n/fr.po
Normal file
320
i18n/fr.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Retour aux références"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Ouvrir la carte\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tous"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implémenté par</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Tous les pays"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Tous les secteurs d'activité"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivé"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Retour à la liste des références"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Classe Bootstrap pour personnaliser les couleurs"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Peut publier"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nom de la catégorie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Classe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtre des pays"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Créer une nouvelle étiquette de contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Écrire une brève description"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrer par pays"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtrer par secteur d'activité"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtrer par étiquettes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtres"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Aller au client"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtre secteur d'activité"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Est publié"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Gérez les étiquettes de contact pour mieux les classer à des fins de suivi "
|
||||
"et d'analyse."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Aucun résultat trouvé pour \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Ouvrir le menu déroulant des pays"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Ouvrir le menu déroulant des secteurs d'activité"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Nos références"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Étiquette de partenaire"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Étiquettes de partenaires - Ces étiquettes peuvent être utilisées sur le "
|
||||
"site web pour trouver des clients par secteur ou ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partenaires"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Références"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Page de références"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Rechercher une étiquette de partenaire"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Voir tous les clients"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Voir les filtres de pays"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Voir les filtres des secteurs d'activité"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Afficher le plan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtre étiquettes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "L'URL complète pour accéder au document à travers le site web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visible sur le site web actuel"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Site Web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Étiquettes du site web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL de site web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Étiquettes du site web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Carte du monde"
|
267
i18n/fr_BE.po
Normal file
267
i18n/fr_BE.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/fr_CA.po
Normal file
267
i18n/fr_CA.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-10-09 05:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/language/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partenaires"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/gl.po
Normal file
267
i18n/gl.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nome da Categoría"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencias"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
269
i18n/gu.po
Normal file
269
i18n/gu.po
Normal file
@ -0,0 +1,269 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "બધા દેશો"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archived"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partners"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "સંદર્ભ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "શોધ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "વિશ્વ નકશો"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
322
i18n/he.po
Normal file
322
i18n/he.po
Normal file
@ -0,0 +1,322 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# david danilov, 2023
|
||||
# NoaFarkash, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> הכל"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "פעיל"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "כל הארצות"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "כל התעשיות"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "בארכיון"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "יכול לפרסם"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "שם קטגוריה"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "מחלקה"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "סגור"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "איש קשר"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "צור תגית איש קשר חדשה"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "סנן לפי ארץ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "מסננים"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "מפורסם"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr "נהל תגיות אנשי קשר כדי לסווג אותם טוב יותר למטרות מעקב וניתוח."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "לא נמצאו תוצאות עבור \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "תג שותף"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"תגיות שותפים - ניתן להשתמש בתגים אלה באתר לאיתור לקוחות לפי מגזר, או ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "לקוחות"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "מזהים"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "חיפוש"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "חיפוש תגית שותף"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "כתובת האתר המלאה לגישה למסמך דרך אתר האינטרנט."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "גלוי באתר האינטרנט הנוכחי"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "אתר אינטרנט"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "תגיות אתר אינטרנט"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "כתובת אתר אינטרנט"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "תגיות אתר אינטרנט"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "מפת העולם"
|
267
i18n/hi.po
Normal file
267
i18n/hi.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-06-03 04:50+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-9/language/hi/)\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "सक्रिय"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "श्रेणी नाम"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "बंद"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "साथी"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "संदर्भ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
277
i18n/hr.po
Normal file
277
i18n/hr.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Mario Jureša <mario.juresa@uvid.hr>, 2022
|
||||
# Miro Sertić, 2022
|
||||
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
|
||||
# Hrvoje Sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Matej Mijoč, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Matej Mijoč, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Sve"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Sve države"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap klasa za prilagodbu boje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Naziv kategorije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Kreiraj novu oznaku za kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Implementirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "je objavljeno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Nema pronađenog rezultata"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Naše reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Oznaka partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneri"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Reference po zemljama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Referenca po oznaci"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Traži"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Puni URL za pristup dokumentu putem web stranice."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Milijuni diljem svijeta se pouzdaju"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Vidljivo na trenutnoj web stranicama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Tagovi web stranica"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL web stranice"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Tagovi web stranica"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Karta svijeta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "referenca(e))"
|
322
i18n/hu.po
Normal file
322
i18n/hu.po
Normal file
@ -0,0 +1,322 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Gergő Kertész <gergo.kertesz@maxflow.hu>, 2023
|
||||
# Tamás Dombos, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Szabolcs Rádi, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Összes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Összes ország"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivált"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Rendszerbetöltő osztály a színek testreszabásához"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Publikálhat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategórianév"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Osztály"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Új kapcsolat címke létrehozása"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Ország szerinti szűrés"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Szűrők"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Közzétett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Nincs eredmény a következőre: \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Ügyfél címke"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partnerek"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Hivatkozások"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
"A teljes elérési út/URL a dokumentum weboldalon keresztüli eléréséhez."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Látható ezen a weboldalon"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Weboldal címkék"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Honlap címe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Weboldal címkék"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Világtérkép"
|
320
i18n/id.po
Normal file
320
i18n/id.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Kembali ke referensi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Buka peta\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Semua"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Diimplementasikan oleh</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Semua Negara"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Semua Industri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Diarsipkan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Kembali ke daftar referensi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Kelas bootstrap untuk mengkustomisasi warna"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Dapat Dipublikasikan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nama Kategori"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Class"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filter Negara"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Buat tag kontak baru"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Masukkan keterangan singkat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filter berdasarkan Negara"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filter berdasarkan Industri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filter berdasarkan Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Penyaring"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Pergi ke pelanggan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filter Industri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Dipublikasikan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir Diperbarui oleh"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir Diperbarui pada"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Kelola tag kontak untuk lebih baik mengklasifikasikan mereka untuk tujuan "
|
||||
"pelacakan dan analisis."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Tidak ada hasil yang ditemukan untuk \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Buka dropdown negara-negara"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Buka dropdown industri-industri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Referensi-referensi kami"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Tag Mitra"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Tag Mitra - Tag ini dapat digunakan di website untuk mencari pelanggan "
|
||||
"berdasarkan sektor, atau ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Rekanan"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referensi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Halaman Referensi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Pencarian"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Cari Tag Mitra"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Lihat semua pelanggan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Lihat filter-filter negara"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Lihat filter-filter industri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Tunjukkan Peta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filter Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL lengkap untuk mengakses dokumen melalui website."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Terlihat pada website saat ini"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Tag Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL Websi8te"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Tag website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Peta Dunia"
|
265
i18n/is.po
Normal file
265
i18n/is.po
Normal file
@ -0,0 +1,265 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Virkur"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nafn flokks"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Loka"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Tengiliður"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Stofnað þann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Síðast breytt þann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Viðskiptaaðilar"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Tilvísun"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Leita"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "The full URL to access the document through the website."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Vefsíða Url"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
320
i18n/it.po
Normal file
320
i18n/it.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Torna alle referenze"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tutte"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implementato da</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Tutte le nazioni"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Tutti i settori"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "In archivio"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Torna alla lista di referenze"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Classe Bootstrap per personalizzare il colore"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Può pubblicare"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nome categoria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Classe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtro nazioni"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Crea una nuova etichetta contatto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Inserisci una breve descrizione"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtro per nazione"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtra per azienda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "FIltra per tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Vai al cliente"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtro industria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "È pubblicata"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Gestisci le etichette di contatto per una migliore classificazione ai fini "
|
||||
"di monitoraggio e analisi."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Nessun risultato trovato per \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Apri menu a discesa nazioni"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Apri menu a discesa aziende"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Le nostre referenze"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etichetta partner"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Etichette partner - Queste etichette possono essere usate nel sito web per "
|
||||
"trovare clienti per settore, o ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referenze"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Pagina referenze"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Ricerca"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Ricerca etichetta partner"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Vedi tutti i clienti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Vedi filtri nazioni"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Vedi filtri aziende"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Mostra mappa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtro tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL completo per accedere al documento dal sito web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visibile nel sito web corrente"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Sito web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etichette sito web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL sito web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etichette sito web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mappa del mondo"
|
317
i18n/ja.po
Normal file
317
i18n/ja.po
Normal file
@ -0,0 +1,317 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>参照へ戻る"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> すべて"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">実装者</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "有効化"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "すべての国"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "全ての業界"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "アーカイブ済"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "参照リストへ戻る"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "色をカスタマイズするためのブートストラップクラス"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "公開可"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "カテゴリ名"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "クラス"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "連絡先"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "国フィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "取引先タグを新規作成"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "簡単な説明を入力"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "国ごとのフィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "業界ごとのフィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "タグごとのフィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "フィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "顧客へ移動"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "業界フィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "公開済"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr "追跡と分析のために連絡先タグを管理しより適切に分類します。"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "の結果は見つかりませんでした"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "国のドロップダウンを開く"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "業界ドロップダウンを開く"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "参照"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "取引先タグ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr "パートナータグ - これらのタグは、ウェブサイト上で業種別に顧客を検索するために使用できます。あるいは"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "取引先"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "参照"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "参照ページ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "検索"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "パートナータグを検索"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "全ての顧客を見る"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "全ての国フィルタを見る"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "全ての業界フィルタを見る"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "地図を表示"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "タグフィルタ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "サイト経由して、文書にアクセスする完全なURL。"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "現在のサイトに表示"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "ウェブサイト"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "ウェブサイトのタグ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "サイトURL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "ウェブサイトのタグ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "世界地図"
|
267
i18n/ka.po
Normal file
267
i18n/ka.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-07-19 11:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "აქტიური"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "კატეგორიის სახელი"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "შედეგი ვერ მოიძებნა"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "პარტნიორები"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "ძიება"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "მსოფლიო რუკა"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
267
i18n/kab.po
Normal file
267
i18n/kab.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:10+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Urmid"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Timura imaṛṛa"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Isem n teggayt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Ulac agmuḍ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Timsisɣal-neɣ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Tabzimt n Umendid"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Imendiden"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Timsisɣal"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Timsisɣal s tmurt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Nadi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Takarḍa n umaḍal"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "Tamsisɣelt(Timsisɣal))"
|
267
i18n/kk.po
Normal file
267
i18n/kk.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:11+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Белсенді"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Сілтеме"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Іздеу"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
268
i18n/km.po
Normal file
268
i18n/km.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "សកម្ម"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "បិទ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ទំនាក់ទំនង"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
314
i18n/ko.po
Normal file
314
i18n/ko.po
Normal file
@ -0,0 +1,314 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>참조로 돌아가기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr "<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"지도 열기\" title=\"지도 열기\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/>전체"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">구현 담당자</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "활성화"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "모든 국가"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "모든 산업 분야"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "보관됨"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "참조 목록으로 돌아가기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "색상을 사용자 정의하기 위한 부트스트랩 클래스"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "게시 가능"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "범주명"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "클래스"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "연락처"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "국가 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "새 연락처 태그 만들기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "간단한 설명을 입력하세요."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "국가별 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "산업별 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "태그별 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "고객으로 이동"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "산업별 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "게시 여부"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr "연락처 태그를 추적 및 분석 목적으로 더 잘 분류하도록 관리합니다."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "다음에 대한 결과가 없습니다 \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "국가 드롭다운 열기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "산업 드롭다운 열기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "참조"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "협력사 태그"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr "협력사 태그 - 이 태그는 섹터별로 고객을 찾기 위해 웹 사이트에서 사용할 수 있습니다 ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "협력사"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "참조"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "참조 페이지"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "검색"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "협력사 태그 검색"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "모든 고객 보기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "국가 필터 보기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "산업별 필터 보기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "지도 보기"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "태그 필터"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "웹사이트를 통해 문서에 접근 하는 전체 URL입니다."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "현재 웹 사이트에 공개"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "웹사이트"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "웹사이트 태그"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "웹 사이트 URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "웹사이트 태그"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "세계 지도"
|
265
i18n/lb.po
Normal file
265
i18n/lb.po
Normal file
@ -0,0 +1,265 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:15+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
326
i18n/lt.po
Normal file
326
i18n/lt.po
Normal file
@ -0,0 +1,326 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Arminas Grigonis <arminas@versada.lt>, 2023
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2023
|
||||
# Arunas V. <arunas@devoro.com>, 2023
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2023
|
||||
# Antanas Muliuolis <an.muliuolis@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Anatolij, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anatolij, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Visi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Visos šalys"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Visi verslo sektoriai"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archyvuotas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap klasė spalvos keitimui"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Gali publikuoti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorijos pavadinimas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasė"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Uždaryti"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Sukurkite naują kontakto žymą"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtruoti pagal šalį"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtrai"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Paskelbta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Valdykite kontakto žymas geresniam jų klasifikavimui analizės ir sekimo "
|
||||
"tikslais."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Nerasta rezultatų \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partnerio žyma"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnerių žymos - šios žymos gali būti naudojamos svetainėje ieškant klientų"
|
||||
" pagal sektorių arba ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneriai"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Rekomendacijos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Paieška"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Ieškoti pagal partnerio žymą"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Pilna nuoroda dokumento pasiekimui per svetainę."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Matomas dabartinėje svetainėje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Svetainė"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Svetainės žymos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Svetainės nuoroda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Svetainės žymos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Pasaulio žemėlapis"
|
319
i18n/lv.po
Normal file
319
i18n/lv.po
Normal file
@ -0,0 +1,319 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Anzelika Adejanova, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# JanisJanis <jbojars@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: JanisJanis <jbojars@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktīvs"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivēts"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorijas Nosaukums"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Aizvērt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktpersona"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Attēlotais nosaukums"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunināja"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunināts"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Kontaktpersonas"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Atsauces"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Meklēt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "The full URL to access the document through the website."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Mājas lapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Website URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
271
i18n/mk.po
Normal file
271
i18n/mk.po
Normal file
@ -0,0 +1,271 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2015-10-16 13:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Сите земји"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Име на категорија"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Имплементирано од"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Не се пронајдени резултати"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Наши препораки"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Партнери"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Референци"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Препораки според земја"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Барај"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Доверба од милиони низ цел свет"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Мапа на светот"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "препорака(и))"
|
267
i18n/ml_IN.po
Normal file
267
i18n/ml_IN.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-04-22 12:13+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "നിർമിച്ച ദിവസം"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
274
i18n/mn.po
Normal file
274
i18n/mn.po
Normal file
@ -0,0 +1,274 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# hish, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: hish, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Бүгд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Идэвхтэй"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Бүх улсууд"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Архивласан"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Өнгийг өөрчлөх Bootstrap класс"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Нийтлэж болно"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Ангиллын нэр"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Класс"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Хаах"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Харилцах хаяг"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Шинэ холбогдох пайз үүсгэх"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Хэрэгжүүлсэн"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Нийтлэгдсэн эсэх"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Илэрц олдсонгүй"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Манай сурвалжууд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Харилцагчийн пайз"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Харилцагч"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Өмнөх түүх"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Код Улсаар"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Код Пайзаар"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Хайх"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Харилцагчийн пайз хайх"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Вебсайтаар дамжин баримт руу хандах бүтэн URL."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Дэлхий даяар сая сая хүний итгэлийг олсон"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Одоогийн вебсайт дээр харагдах"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Вэбсайт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Вэбсайт Пайзууд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Вебсайт URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Вэбсайт пайзууд"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Дэлхийн газрын зураг"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "код(ууд))"
|
272
i18n/nb.po
Normal file
272
i18n/nb.po
Normal file
@ -0,0 +1,272 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Henning Fyllingsnes, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "Alle"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alle land"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Alle Bransjer"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arkivert"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class for å tilpasse fargen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Kan publisere"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorinavn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasse"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Opprett en ny kontaktetikett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Implementert av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Er publisert"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr "Administrer kontaktetiketter for å bedre klassifisere dem for sporing og analytiske behov."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Ingen treff"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Våre referanser"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partneretikett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr "Partneretiketter - Disse etikettene kan brukes på nettsteder for å finne kunder etter sektor, eller ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partnere"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referanser"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Referanser etter land"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Referanser etter etikett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Søk etter partneretikett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Fullstendig link for å nå dokumentet via nettstedet."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "Stoles på av millioner verden over"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Synlig på nåværende nettsted"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Nettsted"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Nettstedetiketter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Nettsted-URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Nettstedetiketter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Verdenskart"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "referanse(r))"
|
322
i18n/nl.po
Normal file
322
i18n/nl.po
Normal file
@ -0,0 +1,322 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Terug naar de referenties"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Kaart openen\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Alle"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Geïmplementeerd door</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alle landen"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Alle bedrijfstakken"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Gearchiveerd"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Terug naar de referenties"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class om de kleur te personaliseren"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Kan publiceren"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Categorienaam"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Class"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Landen filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Maak een nieuw contactlabel aan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Geef een korte omschrijving"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filter op land"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filter op sector"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filteren op labels"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filters"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Ga naar de klant"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Sectorfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Is gepubliceerd"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Beheer contactlabels om contacten beter te beheren voor opvolging en "
|
||||
"analyses."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Geen resultaten gevonden voor \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Dropdown landen openen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Dropdown bedrijfstakken openen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Onze referenties"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partnerlabel"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnerlabels - Deze labels kunnen gebruikt worden op de website om klanten "
|
||||
"te vinden op sector, of ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Relaties"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referenties"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Referenties pagina"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Zoek partnerlabel"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Alle klanten weergeven"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Zie landenfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Zie sectorfilters"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Toon kaart"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Labelfilter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
"De volledige URL om toegang tot het document te krijgen via de website."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Zichtbaar op huidige website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Websitelabels"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Website URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Websitelabels"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Wereldkaart"
|
318
i18n/pl.po
Normal file
318
i18n/pl.po
Normal file
@ -0,0 +1,318 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Wszystko"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Wszystkie kraje"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Wszystkie gałęzie przemysłu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Zarchiwizowane"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Klasa bootstrap dla dostosowania koloru"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Można publikować"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nazwa kategorii"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtr krajów"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Utwórz nowy znacznik kontaktu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtruj wg krajów"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtruj według tagów"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtry"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtr gałęzi przemysłu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Opublikowane"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Zarządzaj tagami kontaktów aby lepiej je sklasyfikować w celu śledzenia i "
|
||||
"późniejszych analiz."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Tag partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Tagi Partnerów - mogą być użyte na stronie internetowej w celu znalezienia "
|
||||
"klientów ze względu na sektor lub ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Kontrahenci"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Strona referencji"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Szukaj"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Wyszukaj tag partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Pokaż mapę"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtruj tagi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Pełny adres URL dostępu do dokumentu przez stronę."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Widoczne na obecnej stronie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Strona internetowa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Tagi strony"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Adres strony internetowej"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Tagi strony"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa świata"
|
317
i18n/pt.po
Normal file
317
i18n/pt.po
Normal file
@ -0,0 +1,317 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Vasco Rodrigues, 2024
|
||||
# Rita Bastos, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rita Bastos, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tudo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos os Países"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arquivados"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Pode publicar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nome da Categoria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Classe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Criar uma nova etiqueta de contacto"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrar por País"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Está publicado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etiqueta do Parceiro"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Parceiros"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtro de Etapas"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "O URL completo para aceder ao documento através do Website."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visível no website atual"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etiquetas de Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL do Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etiquetas de Website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa Mundo"
|
320
i18n/pt_BR.po
Normal file
320
i18n/pt_BR.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Voltar às referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tudo"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Implementado por</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Todos os países"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Todos os segmentos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arquivado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Voltar à lista de referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Classe de Bootstrap para personalizar a cor"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Pode publicar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nome da categoria"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Classe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtro de países"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Criar um novo marcador de contato"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Insira uma descrição curta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrar por país"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Filtrar por segmento"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filtrar por marcadores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Ir ao cliente"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filtro de segmentos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Está publicado"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Gerencie marcadores de contatos para uma melhor classificação, para fins de "
|
||||
"análise e rastreamento."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Sem resultados encontrados para \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Abrir menu de opções de países"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Abrir menu de opções de segmentos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Nossas referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Marcador de usuário"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Marcadores de usuário - Estes marcadores podem ser utilizados no site para "
|
||||
"encontrar clientes por setor ou..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Parceiros"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Página de referências"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Pesquisar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Pesquisar marcador de usuário"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Ver todos os clientes"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Ver filtros de países"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Ver filtros de segmentos"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Mostrar mapa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtro de marcadores"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "A URL completa para acessar o documento através do site."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Visível neste site"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Marcadores do site"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL do site"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Marcadores do site"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa Mundi"
|
273
i18n/ro.po
Normal file
273
i18n/ro.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Cozmin Candea <office@terrabit.ro>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tot"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Toate țările"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Toate industriile"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Clasa Bootstrap pentru a personaliza culoarea"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Poate Publica"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Nume categorie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Clasă"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Închide"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filtru țări"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Creați o nouă etichetă contact"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr "Implementat de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Este Publicat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr "Gestionați etichetele de contact pentru a le clasifica mai bine în scopuri de urmărire și analiză."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "Niciun rezultat găsit"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "Referințele noastre"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Etichete Partener"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr "Etichete Partener - Aceste etichete pot fi utilizate pe site-ul web pentru a găsi clienți după sector, sau ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Parteneri"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referințe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Pagina de referințe"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "Referințe după țară"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr "Referințe de către industrii"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "Referințe după etichetă"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Caută"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Căutați etichetă partener"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Afișați harta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filtru după etichete"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL-ul complet pentru accesarea documentului prin intermediul site-ului web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr "De încredere pentru milioane de oameni în întreaga lume"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Vizibil pe site-ul curent"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Pagină web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Etichete site web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Etichete site web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Harta lumii"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "referință(e))"
|
326
i18n/ru.po
Normal file
326
i18n/ru.po
Normal file
@ -0,0 +1,326 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# Collex100, 2023
|
||||
# Alena Vlasova, 2023
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2023
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>Назад к ссылкам"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Все"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">Выполнено</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Активный"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Все страны"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Все отрасли промышленности"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Архивировано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "Вернуться к списку литературы"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap класс для настройки цвета"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Можно опубликовать"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Название категории"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Класс"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакты"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Страны Фильтр"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Создать новый тег контакта"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "Введите краткое описание"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Фильтр по стране"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "Фильтр по отраслям"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Фильтр по тегам"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Фильтры"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "Перейти к клиенту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Промышленный фильтр"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Опубликовано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Управляйте тегами контактов, чтобы лучше классифицировать их для целей "
|
||||
"отслеживания и анализа."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Не найдено результатов для \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "Открыть выпадающий список стран"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "Открыть выпадающий список отраслей"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "Наши рекомендации"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Тэг Партнера"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Теги партнеров - Эти теги можно использовать на сайте для поиска клиентов по"
|
||||
" секторам или ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Партнеры"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Ссылки"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Страница ссылок"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Поиск по тегу \"партнер"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "Посмотреть всех клиентов"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "Посмотреть фильтры стран"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "Смотрите фильтры для промышленности"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Показать карту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Фильтр Тегов"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Полный URL-адрес для доступа к документу через веб-сайт."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Видимый на текущем веб-сайте"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Сайт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Веб сайт теги"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Адрес сайта"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Теги сайта"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Карта мира"
|
318
i18n/sk.po
Normal file
318
i18n/sk.po
Normal file
@ -0,0 +1,318 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Všetky"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktívne"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Všetky krajiny"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Archivovaný"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap trieda na prispôsobenie farby"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Môžete publikovať"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Meno kategórie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Trieda"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Vytvoriť nový tag kontaktu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrovať podľa krajiny"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtre"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Publikované"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Spravujte tagy kontaktu pre lepšiu klasifikáciu pri sledovaní a analýze. "
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Tag partnera "
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnerské tagy - tieto tagy možno použiť na webstránkach na nájdenie "
|
||||
"zákazníkov podľa odvetví alebo ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneri"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referencie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Vyhľadávanie"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Vyhľadať tag partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Úplná URL na prístup k dokumentu cez webové stránky."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Viditeľné na aktuálnej webstránke"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webstránka"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Tagy webstránky"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL Webstránok"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Tagy webstránkok"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa sveta"
|
320
i18n/sl.po
Normal file
320
i18n/sl.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# laznikd <laznik@mentis.si>, 2023
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Grega Vavtar <grega@hbs.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Vse"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Vse države"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Vse industrije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Lahko objavite"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Naziv kategorije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zaključi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Stik"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Ustvari novo oznako stika"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtriranje po državi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Je objavljen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Ni rezultatov za \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Oznaka partnerja"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partnerji"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Sklici"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Iskanje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Polna URL povezava za dostop do dokumenta preko spletne strani."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Vidno na trenutni spletni strani"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Spletna stran"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL spletne strani"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Zemljevid sveta"
|
267
i18n/sq.po
Normal file
267
i18n/sq.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-03-31 13:21+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-9/language/sq/)\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Krijuar nga"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Krijuar me"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Emri i paraqitur"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modifikimi i fundit në"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifikuar per here te fundit nga"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifikuar per here te fundit me"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referenca"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
323
i18n/sr.po
Normal file
323
i18n/sr.po
Normal file
@ -0,0 +1,323 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Sve"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivno"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Sve zemlje"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Sve industrije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap klasa za prolagođavanje boje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Može da objavljuje"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Ime kategorije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klasa"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filter po zemljama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Kreiraj novu oznaku kontakta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filter po zemljama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Filter by Tags"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filteri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filter industrija"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Je objavljeno"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednji put ažurirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednji put ažurirano"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Upravaljajte oznakama kontakata kako biste ih bolje klasifikovali radi "
|
||||
"praćenja i analize."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Oznaka partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Oznake partnera - ove oznake se mogu koristiti na website-u da pronađete "
|
||||
"klijenta po delatnosti, ili ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneri"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Stranica partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Pronađi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Pronađi oznaku partnera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Prikaži Mapu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Filter oznaka"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Kompletna URL adresa za pristup dokumentima putem website-a."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Vidljivo na trenutnom website-u"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Website oznake"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Website URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Website oznake"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Mapa sveta"
|
270
i18n/sr@latin.po
Normal file
270
i18n/sr@latin.po
Normal file
@ -0,0 +1,270 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Ime kategorije"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partneri"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Reference"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Pronađi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr ""
|
326
i18n/sv.po
Normal file
326
i18n/sv.po
Normal file
@ -0,0 +1,326 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2023
|
||||
# Lasse L, 2023
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Alla"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Alla länder"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Alla Brancher"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arkiverad"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap -klass för att anpassa färgen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Kan publicera"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategorinamn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Klass"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Filter för länder"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Skapa ny kontaktetikett"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Filtrera efter land"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Filter för industrin"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Är publicerad"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad den"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Hantera kontakttaggar för att bättre klassificera dem för spårnings- och "
|
||||
"analysändamål."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partner Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partnertaggar - Dessa taggar kan användas på webbplatsen för att hitta "
|
||||
"kunder efter sektor, eller ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Partners"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referenser"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Referenser Sida"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Sök Partner Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Visa karta"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Etiketter Filter"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Fullständig URL för åtkomst av dokument via webbplatsen."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Synlig på vald webbplats"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Webbplats"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Webbplats Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Webbplatsens URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Webbplats tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Världskarta"
|
268
i18n/ta.po
Normal file
268
i18n/ta.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||
"PO-Revision-Date: 2016-02-05 10:06+0000\n"
|
||||
"Last-Translator: Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> முழுவதும்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "<span class=\"fa fa-external-link\" role=\"img\" aria-label=\"External link\" title=\"External link\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "அனைத்து நாடுகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "வகை பெயர்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "வகுப்பு"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "உருவாக்கியவர்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "உருவாக்கப்பட்ட தேதி"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "Implemented By"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "கடைசியாக திருத்திய"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Manage contact tags to better classify them for tracking and analysis purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No result found"
|
||||
msgstr "பலன் இல்லை"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our References"
|
||||
msgstr "எங்கள் குறிப்புகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "கூட்டாளி மேற்கோள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid "Partner Tags - These tags can be used on website to find customers by sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "கூட்டாளிகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "குறிப்புகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "References by Country"
|
||||
msgstr "நாடு மூலம் குறிப்புகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "References by Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "References by Tag"
|
||||
msgstr "மேற்கோள் மூலம் குறிப்புகள்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "தேடு"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Trusted by millions worldwide"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "இணையத்தளம் குறிச்சொற்களை"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "இணையத்தளம் குறிச்சொற்களை"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "உலக வரைபடம்"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "reference(s))"
|
||||
msgstr "குறிப்பு(கள்))"
|
320
i18n/th.po
Normal file
320
i18n/th.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>กลับไปที่ข้อมูลอ้างอิง"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> ทั้งหมด"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">ดำเนินการโดย</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "ประเทศทั้งหมด"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "อุตสาหกรรมทั้งหมด"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "เก็บถาวรแล้ว"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "กลับไปยังรายการอ้างอิง"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap class เพื่อปรับแต่งสี"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "สามารถเผยแพร่"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "ชื่อหมวดหมู่"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "คลาส"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "ปิด"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "ติดต่อ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "ตัวกรองประเทศ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "สร้างแท็กผู้ติดต่อใหม่"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "ป้อนคำอธิบายสั้นๆ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "กรองตามประเทศ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "กรองตามอุตสาหกรรม"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "กรองตามแท็ก"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "ตัวกรอง"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "ไปที่ลูกค้า"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "ตัวกรองอุตสาหกรรม"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "เผยแพร่"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"จัดการแท็กผู้ติดต่อเพื่อจัดประเภทได้ดียิ่งขึ้นสำหรับการติดตามและการวิเคราะห์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "ไม่พบผลลัพธ์สำหรับ \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "เปิดเมนูแบบเลื่อนลงของประเทศต่างๆ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "เปิดเมนูแบบเลื่อนลงของอุตสาหกรรม"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "ข้อมูลอ้างอิงของเรา"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "แท็กพาร์ทเนอร์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"แท็กพาร์ทเนอร์ - "
|
||||
"แท็กเหล่านี้สามารถใช้บนเว็บไซต์เพื่อค้นหาลูกค้าตามภาคส่วนหรือ ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "พาร์ทเนอร์"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "อ้างอิง"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "หน้าอ้างอิง"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "ค้นหา"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "ค้าหาแท็กพาร์ทเนอร์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "พบลูกค้าทุกคน"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "ดูตัวกรองประเทศ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "ดูตัวกรองอุตสาหกรรม"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "แสดงแผนที่"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "ตัวกรองแท็ก"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL แบบเต็มเพื่อเข้าถึงเอกสารผ่านเว็บไซต์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "ปรากฏบนเว็บไซต์ปัจจุบัน"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "เว็บไซต์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "แท็กเว็บไซต์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "เว็บไซต์ URL"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "แท็กเว็บไซต์"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "แผนที่โลก"
|
327
i18n/tr.po
Normal file
327
i18n/tr.po
Normal file
@ -0,0 +1,327 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
# Halil, 2023
|
||||
# Buket Şeker <buket_skr@hotmail.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tüm"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Tüm Ülkeler"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Tüm Sanayiler"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Arşivlendi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Rengi özelleştirmek için önyükleme sınıfı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Yayınlanabilir"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Kategori Adı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Sınıf"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Ülkeler Filtresi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Yeni bir kontak etiketi oluşturun"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Ülkelere Göre Filtrele"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Etiketlere Göre Filtrele"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Filtreler"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Endüstri Filtresi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Yayınlandı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"İzleme ve analiz amacıyla bunları daha iyi sınıflandırmak için kontak "
|
||||
"etiketleri ile yönetin."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "\" için sonuç bulunamadı"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "İş Ortağı Etiketi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"İş Ortağı Etiketleri - Bu etiketler, sektöre göre müşteri bulmak için web "
|
||||
"sitesinde kullanılabilir veya ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "İş Ortakları"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Referanslar"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Referanslar Sayfası"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Arama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "İş Ortağı Etiketi Arama"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Haritayı Göster"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Etiketler Filtresi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "Web sitesi aracılığıyla belgeye erişmek için tam URL."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Mevcut web sitesinde görülebilir"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Websitesi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Websitesi Etiketleri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "Web Sitesi URL Adresi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Websitesi etiketleri"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Dünya Haritası"
|
320
i18n/uk.po
Normal file
320
i18n/uk.po
Normal file
@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Всі"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Всі країни"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Усі сфери"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Заархівовано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Вставте клас, щоб налаштувати колір"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Можна опублікувати"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Назва категорії"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Клас"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "Фільтр країн"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Створити новий тег для контактів"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Фільтрувати за країною"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "Фільтрувати за тегом"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Фільтри"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "Фільтр напрямків діяльності"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Опубліковано"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Керуйте тегами контактів, щоби краще класифікувати їх для цілей відстеження "
|
||||
"та аналізу."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Не знайдено результатів для \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Мітка партнера"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Теги партнера - ці теги можна використовувати на веб-сайті, щоб знайти "
|
||||
"клієнтів по секторах або ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Партнери"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Референси"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "Сторінка референсів"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Пошук тега партнера"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "Показати карту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Фільтр тегів"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL-адреса повністю, для доступу до документації через сайт."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Видимий на поточному веб-сайті"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Веб-сайт"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Мітки сайту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL сайту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Мітки сайту"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Мапа світу"
|
318
i18n/vi.po
Normal file
318
i18n/vi.po
Normal file
@ -0,0 +1,318 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> Tất cả"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "Tất cả quốc gia"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "Tất cả ngành"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "Đã lưu trữ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Lớp bootstrap để tuỳ chỉnh màu sắc"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "Có thể đăng"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "Tên danh mục"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "Lớp"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "Đóng"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Liên hệ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "Tạo từ khóa liên hệ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "Lọc theo Quốc gia"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "Bộ lọc"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "Được đăng"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
"Quản lý các từ khóa liên lạc để phân biệt tốt hơn các liên lạc cho mục đích "
|
||||
"theo dõi và phân tích."
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "Không tìm thấy kết quả cho \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "Partner Tag"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
"Partner Tags - Các thẻ này có thể sử dụng trên website để tìm kiếm khách "
|
||||
"hàng dễ dàng hơn bằng các phân loại, khu vực, ..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "Đối tác"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "Các tham chiếu"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "Tìm kiếm"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "Tìm kiếm thẻ đối tác"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "Bộ lọc thẻ"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "URL đầy đủ để truy cập tài liệu thông qua trang web."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "Hiển thị trên trang web hiện tại"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "Trang web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "Các thẻ website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "URL trang web"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "Các thẻ website"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "Bản đồ thế giới"
|
310
i18n/website_customer.pot
Normal file
310
i18n/website_customer.pot
Normal file
@ -0,0 +1,310 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr ""
|
317
i18n/zh_CN.po
Normal file
317
i18n/zh_CN.po
Normal file
@ -0,0 +1,317 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/>返回成功案例"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> 全部"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">安装及推行伙伴:</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "已启用"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "所有国家"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "所有行业"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "已存档"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "返回成功案例列表"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "引导类自订颜色"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "可以发布"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "类别名称"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "类"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "联系人"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "国家筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "创建一个新的联系人标签"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "输入简短描述"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "按国家筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "按行业筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "按标签筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "前往客户"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "行业筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "已发布"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr "管理联系标签,以更好地分类管理,以作跟进和分析。"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "找不到结果 \""
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "打开国家/地区下拉菜单"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "打开行业下拉菜单"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "客户成功案例"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "业务伙伴标签"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr "合作伙伴标签 - 这些标签可用于在网站按部门找客户,还是......"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "合作伙伴"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "参考"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "参考网页"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "搜索业务伙伴标签"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "查看所有客户"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "查看国家/地区筛选器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "查看行业筛选器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "显示地图"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "标签筛选"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "通过网站访问文档的完整网址。"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "在当前网站显示"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "网站"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "网站标签"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "网站网址"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "站点标签"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "地界地图"
|
314
i18n/zh_TW.po
Normal file
314
i18n/zh_TW.po
Normal file
@ -0,0 +1,314 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_customer
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "<i class=\"fa fa-chevron-left me-2\"/>Back to references"
|
||||
msgstr "<i class=\"fa fa-chevron-left me-2\"/> 返回成功案例"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid ""
|
||||
"<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"Open map\" "
|
||||
"title=\"Open map\"/>"
|
||||
msgstr "<i class=\"fa fa-map-marker\" role=\"img\" aria-label=\"開啟地圖\" title=\"開啟地圖\"/>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_tag_list
|
||||
msgid "<span class=\"fa fa-1x fa-tags\"/> All"
|
||||
msgstr "<span class=\"fa fa-1x fa-tags\"/> 全部"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.implemented_by_block
|
||||
msgid "<span class=\"small text-muted\">Implemented by</span>"
|
||||
msgstr "<span class=\"small text-muted\">安裝及推行夥伴:</span>"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__active
|
||||
msgid "Active"
|
||||
msgstr "啟用"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Countries"
|
||||
msgstr "所有國家"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "All Industries"
|
||||
msgstr "所有行業"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Archived"
|
||||
msgstr "已封存"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.details
|
||||
msgid "Back to references list"
|
||||
msgstr "返回成功案例列表"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__classname
|
||||
msgid "Bootstrap class to customize the color"
|
||||
msgstr "Bootstrap 自訂顏色"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__can_publish
|
||||
msgid "Can Publish"
|
||||
msgstr "可以發佈"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__name
|
||||
msgid "Category Name"
|
||||
msgstr "類別名稱"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__classname
|
||||
msgid "Class"
|
||||
msgstr "類"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "Close"
|
||||
msgstr "關閉"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "聯絡人"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Countries Filter"
|
||||
msgstr "國家/地區篩選器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid "Create a new contact tag"
|
||||
msgstr "建立一個新聯絡人標籤"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "建立人員"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Enter a short description"
|
||||
msgstr "輸入簡短描述"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Country"
|
||||
msgstr "按國家篩選"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Industry"
|
||||
msgstr "以行業篩選"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filter by Tags"
|
||||
msgstr "以標籤篩選"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Filters"
|
||||
msgstr "篩選"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Go to customer"
|
||||
msgstr "前往客戶"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Industry Filter"
|
||||
msgstr "行業篩選器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__is_published
|
||||
msgid "Is Published"
|
||||
msgstr "已發佈"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.actions.act_window,help:website_customer.action_partner_tag_form
|
||||
msgid ""
|
||||
"Manage contact tags to better classify them for tracking and analysis "
|
||||
"purposes."
|
||||
msgstr "管理聯繫標籤,以更好地分類他們的追蹤和分析的目的。"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "No results found for \""
|
||||
msgstr "找不到“結果”"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country_list
|
||||
msgid "Open countries dropdown"
|
||||
msgstr "打開國家/地區下拉式選單"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_industry_list
|
||||
msgid "Open industries dropdown"
|
||||
msgstr "打開行業下拉式選單"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Our references"
|
||||
msgstr "客戶成功案例"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_form
|
||||
msgid "Partner Tag"
|
||||
msgstr "合作夥伴標籤"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_res_partner_tag
|
||||
msgid ""
|
||||
"Partner Tags - These tags can be used on website to find customers by "
|
||||
"sector, or ..."
|
||||
msgstr "合作夥伴標籤 - 這些標籤可用於網站上查找按行業或..."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__partner_ids
|
||||
msgid "Partners"
|
||||
msgstr "合作夥伴"
|
||||
|
||||
#. module: website_customer
|
||||
#. odoo-python
|
||||
#: code:addons/website_customer/models/website.py:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.references_block
|
||||
#, python-format
|
||||
msgid "References"
|
||||
msgstr "客戶成功案例"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "References Page"
|
||||
msgstr "客戶推薦頁面"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "Search"
|
||||
msgstr "搜尋"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.res_partner_tag_view_search
|
||||
msgid "Search Partner Tag"
|
||||
msgstr "搜尋合作夥伴標籤"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See all customers"
|
||||
msgstr "查看所有客戶"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See countries filters"
|
||||
msgstr "查看國家/地區篩選器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.index
|
||||
msgid "See industries filters"
|
||||
msgstr "查看行業篩選器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Show Map"
|
||||
msgstr "顯示地圖"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.snippet_options
|
||||
msgid "Tags Filter"
|
||||
msgstr "標籤篩選器"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,help:website_customer.field_res_partner_tag__website_url
|
||||
msgid "The full URL to access the document through the website."
|
||||
msgstr "通過網站存取此文件的完整網址."
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_published
|
||||
msgid "Visible on current website"
|
||||
msgstr "在當前網站可見"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model,name:website_customer.model_website
|
||||
msgid "Website"
|
||||
msgstr "網站"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.actions.act_window,name:website_customer.action_partner_tag_form
|
||||
#: model:ir.ui.menu,name:website_customer.menu_partner_tag_form
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partner_tag_list
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.view_partners_form_website
|
||||
msgid "Website Tags"
|
||||
msgstr "網站標籤"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner_tag__website_url
|
||||
msgid "Website URL"
|
||||
msgstr "網站網址"
|
||||
|
||||
#. module: website_customer
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_partner__website_tag_ids
|
||||
#: model:ir.model.fields,field_description:website_customer.field_res_users__website_tag_ids
|
||||
msgid "Website tags"
|
||||
msgstr "網站標籤"
|
||||
|
||||
#. module: website_customer
|
||||
#: model_terms:ir.ui.view,arch_db:website_customer.opt_country
|
||||
msgid "World Map"
|
||||
msgstr "世界地圖"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import res_partner
|
||||
from . import website
|
34
models/res_partner.py
Normal file
34
models/res_partner.py
Normal file
@ -0,0 +1,34 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class Partner(models.Model):
|
||||
|
||||
_inherit = 'res.partner'
|
||||
|
||||
website_tag_ids = fields.Many2many('res.partner.tag', 'res_partner_res_partner_tag_rel', 'partner_id', 'tag_id', string='Website tags')
|
||||
|
||||
def get_backend_menu_id(self):
|
||||
return self.env.ref('contacts.menu_contacts').id
|
||||
|
||||
|
||||
class Tags(models.Model):
|
||||
|
||||
_name = 'res.partner.tag'
|
||||
_description = 'Partner Tags - These tags can be used on website to find customers by sector, or ...'
|
||||
_inherit = 'website.published.mixin'
|
||||
|
||||
@api.model
|
||||
def get_selection_class(self):
|
||||
classname = ['light', 'primary', 'success', 'warning', 'danger']
|
||||
return [(x, str.title(x)) for x in classname]
|
||||
|
||||
name = fields.Char('Category Name', required=True, translate=True)
|
||||
partner_ids = fields.Many2many('res.partner', 'res_partner_res_partner_tag_rel', 'tag_id', 'partner_id', string='Partners')
|
||||
classname = fields.Selection('get_selection_class', 'Class', default='light', help="Bootstrap class to customize the color", required=True)
|
||||
active = fields.Boolean('Active', default=True)
|
||||
|
||||
def _default_is_published(self):
|
||||
return True
|
14
models/website.py
Normal file
14
models/website.py
Normal file
@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, _
|
||||
from odoo.addons.http_routing.models.ir_http import url_for
|
||||
|
||||
|
||||
class Website(models.Model):
|
||||
_inherit = "website"
|
||||
|
||||
def get_suggested_controllers(self):
|
||||
suggested_controllers = super(Website, self).get_suggested_controllers()
|
||||
suggested_controllers.append((_('References'), url_for('/customers'), 'website_customer'))
|
||||
return suggested_controllers
|
7
security/ir.model.access.csv
Normal file
7
security/ir.model.access.csv
Normal file
@ -0,0 +1,7 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
res_partner_tag_sale_manager_public,res.partner.tag.sale.manager,model_res_partner_tag,base.group_public,1,0,0,0
|
||||
res_partner_tag_sale_manager_portal,res.partner.tag.sale.manager,model_res_partner_tag,base.group_portal,1,0,0,0
|
||||
res_partner_tag_sale_manager_employee,res.partner.tag.sale.manager,model_res_partner_tag,base.group_user,1,0,0,0
|
||||
res_partner_tag_sale_manager_edition,res.partner.tag.sale.manager.edition,model_res_partner_tag,sales_team.group_sale_manager,1,1,1,1
|
||||
res_partner_industry_public,res_partner_industry all,base.model_res_partner_industry,base.group_public,1,0,0,0
|
||||
res_partner_industry_portal,res_partner_industry all,base.model_res_partner_industry,base.group_portal,1,0,0,0
|
|
11
security/ir_rule.xml
Normal file
11
security/ir_rule.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record model="ir.rule" id="website_customer_res_partner_tag_public">
|
||||
<field name="name">Partner Tag: published only</field>
|
||||
<field name="model_id" ref="model_res_partner_tag"/>
|
||||
<field name="domain_force">[('website_published', '=', True)]</field>
|
||||
<field name="groups" eval="[(4, ref('base.group_public')), (4, ref('base.group_portal'))]"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M43 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z" fill="#1AD3BB"/><path d="M28 16c0 5.523-4.477 10-10 10S8 21.523 8 16 12.477 6 18 6s10 4.477 10 10Z" fill="#985184"/><path d="M16 31h26a4 4 0 0 1 4 4v5a4 4 0 0 1-4 4H16V31Z" fill="#1AD3BB"/><path d="M4 31h16c7.18 0 13 5.82 13 13H17C9.82 44 4 38.18 4 31Z" fill="#985184"/><path d="M13.95 21.331 18 18.397l4.052 2.934-1.607-4.716 4.053-2.934h-4.96L18 9l-1.537 4.68h-4.96l4.017 2.935-1.572 4.716Z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 545 B |
80
views/res_partner_views.xml
Normal file
80
views/res_partner_views.xml
Normal file
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<record id="view_partners_form_website" model="ir.ui.view">
|
||||
<field name="name">view.res.partner.form.website.tags</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="website_partner.view_partners_form_website" />
|
||||
<field name="arch" type="xml">
|
||||
<data>
|
||||
<xpath expr="//field[@name='website_id']" position="after">
|
||||
<field name="website_tag_ids" widget="many2many_tags" string="Website Tags"/>
|
||||
</xpath>
|
||||
</data>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_partner_tag_form" model="ir.ui.view">
|
||||
<field name="name">Website Tags</field>
|
||||
<field name="model">res.partner.tag</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Partner Tag">
|
||||
<sheet>
|
||||
<group col="4">
|
||||
<field name="name"/>
|
||||
<field name="classname"/>
|
||||
<field name="is_published"/>
|
||||
<field name="active" widget="boolean_toggle"/>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_partner_tag_list" model="ir.ui.view">
|
||||
<field name="name">Website Tags</field>
|
||||
<field name="model">res.partner.tag</field>
|
||||
<field eval="6" name="priority"/>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Website Tags" editable="bottom">
|
||||
<field name="name"/>
|
||||
<field name="classname"/>
|
||||
<field name="is_published"/>
|
||||
<field name="active" column_invisible="True"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="res_partner_tag_view_search" model="ir.ui.view">
|
||||
<field name="name">res.partner.tag.view.search</field>
|
||||
<field name="model">res.partner.tag</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Partner Tag">
|
||||
<field name="name"/>
|
||||
<separator/>
|
||||
<filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_partner_tag_form" model="ir.actions.act_window">
|
||||
<field name="name">Website Tags</field>
|
||||
<field name="res_model">res.partner.tag</field>
|
||||
<field name="search_view_id" ref="res_partner_tag_view_search"/>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
Create a new contact tag
|
||||
</p><p>
|
||||
Manage contact tags to better classify them for tracking and analysis purposes.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
action="action_partner_tag_form"
|
||||
id="menu_partner_tag_form"
|
||||
name="Website Tags"
|
||||
sequence="2"
|
||||
parent="contacts.res_partner_menu_config"
|
||||
/>
|
||||
|
||||
</odoo>
|
29
views/snippets.xml
Normal file
29
views/snippets.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="snippet_options" inherit_id="website.snippet_options" name="Customer Snippet Options">
|
||||
<xpath expr="." position="inside">
|
||||
<div data-selector=".o_wcrm_filters_top" data-page-options="true" groups="website.group_website_designer" data-no-check="true" string="References Page">
|
||||
<we-checkbox string="Countries Filter"
|
||||
data-customize-website-views="website_customer.opt_country_list"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
<we-checkbox string="Industry Filter"
|
||||
data-customize-website-views="website_customer.opt_industry_list"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
<we-checkbox string="Tags Filter"
|
||||
data-customize-website-views="website_customer.opt_tag_list"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
<t t-if="google_maps_api_key">
|
||||
<we-checkbox string="Show Map"
|
||||
data-customize-website-views="website_customer.opt_country"
|
||||
data-no-preview="true"
|
||||
data-reload="/"/>
|
||||
</t>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
342
views/website_customer_templates.xml
Normal file
342
views/website_customer_templates.xml
Normal file
@ -0,0 +1,342 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="index" name="Our References">
|
||||
<t t-call="website.layout">
|
||||
<div id="wrap">
|
||||
<div class="container my-4">
|
||||
<div class="o_wcrm_filters_top d-flex d-print-none align-items-center justify-content-end flex-wrap gap-2 w-100">
|
||||
<h4 class="my-0 me-auto pe-sm-4">Our references</h4>
|
||||
<div class="o_wcrm_search d-flex w-100 w-lg-auto">
|
||||
<form action="" method="get" class="flex-grow-1">
|
||||
<div class="input-group" role="search">
|
||||
<input type="text" name="search" class="search-query form-control border-0 bg-light" placeholder="Search" t-att-value="post.get('search', '')"/>
|
||||
<button type="submit" aria-label="Search" title="Search" class="oe_search_button btn btn-light">
|
||||
<i class="oi oi-search"/>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
<button class="btn btn-light position-relative ms-2 d-lg-none"
|
||||
data-bs-toggle="offcanvas"
|
||||
data-bs-target="#o_wc_offcanvas">
|
||||
<i class="fa fa-sliders"/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Off canvas filters on mobile-->
|
||||
<div id="o_wc_offcanvas" class="o_website_offcanvas offcanvas offcanvas-end d-lg-none p-0 overflow-visible">
|
||||
<div class="offcanvas-header">
|
||||
<h5 class="offcanvas-title">Filters</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"/>
|
||||
</div>
|
||||
<div class="offcanvas-body p-0">
|
||||
<div class="accordion accordion-flush">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button border-top collapsed"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target=".o_wc_offcanvas_industry"
|
||||
aria-expanded="false"
|
||||
aria-controls="wc_offcanvas_industry">
|
||||
Filter by Industry
|
||||
</button>
|
||||
</h2>
|
||||
<div class="o_wc_offcanvas_industry accordion-collapse collapse">
|
||||
<div class="accordion-body pt-0">
|
||||
<ul class="list-group list-group-flush">
|
||||
<t t-foreach="industries" t-as="industry_dict">
|
||||
<t t-if="industry_dict['industry_id']">
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center ps-0 pb-0 border-0">
|
||||
<a t-attf-href="/customers/#{ industry_dict['industry_id'][0] and 'industry/%s/' % slug(industry_dict['industry_id']) or '' }#{ current_country_id and 'country/%s' % current_country_id or '' }#{ search_path }"
|
||||
class="text-reset" aria-label="See industries filters">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" t-attf-name="#{industry_dict['industry_id'][1]}" t-att-checked="industry_dict['industry_id'][0] == current_industry_id and true or false"/>
|
||||
<label class="form-check-label" t-attf-for="#{industry_dict['industry_id'][1]}" t-out="industry_dict['industry_id'][1]"/>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</t>
|
||||
</t>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button border-top collapsed"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target=".o_wc_offcanvas_country"
|
||||
aria-expanded="false"
|
||||
aria-controls="offcanvas_country">
|
||||
Filter by Country
|
||||
</button>
|
||||
</h2>
|
||||
<div class="o_wc_offcanvas_country accordion-collapse collapse">
|
||||
<div class="accordion-body pt-0">
|
||||
<ul class="list-group list-group-flush ">
|
||||
<t t-foreach="countries" t-as="country_dict">
|
||||
<t t-if="country_dict['country_id']">
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center ps-0 pb-0 border-0">
|
||||
<a t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ country_dict['country_id'][0] and 'country/%s' % slug(country_dict['country_id']) or '' }#{ search_path }"
|
||||
class="text-reset" aria-label="See countries filters">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" t-attf-name="{country_dict['country_id'][1]}" t-att-checked="country_dict['country_id'][0] == current_country_id and true or false"/>
|
||||
<label class="form-check-label" t-attf-for="{country_dict['country_id'][1]}" t-out="country_dict['country_id'][1]"/>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</t>
|
||||
</t>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="accordion-item" t-if="len(tags)">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button border-top collapsed"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target=".o_wc_offcanvas_tags"
|
||||
aria-expanded="false"
|
||||
aria-controls="o_wc_offcanvas_tags">
|
||||
Filter by Tags
|
||||
</button>
|
||||
</h2>
|
||||
<div class="o_wc_offcanvas_tags accordion-collapse collapse">
|
||||
<div class="accordion-body">
|
||||
<div class="d-flex flex-wrap align-items-center gap-1 mb-4" t-if="len(tags)">
|
||||
<a class="me-2" t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ current_country_id and 'country/%s' % slug(current_country) or '' }">
|
||||
<span class="fa fa-1x fa-tags"/> All </a>
|
||||
<t t-foreach="tags" t-as="o_tag">
|
||||
<a t-attf-class="bg-#{o_tag.classname} badge" t-out="o_tag.name" t-att-style="tag and tag.id==o_tag.id and 'text-decoration: underline'"
|
||||
t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ current_country_id and 'country/%s' % slug(current_country) or '' }?tag_id=#{slug(o_tag)}"/>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-4">
|
||||
<div class="my-5 py-5 text-center" t-if="not partners">
|
||||
<h5>No results found for "<span t-out="post.get('search', '')"/>"</h5>
|
||||
<a href="/customers">See all customers</a>
|
||||
</div>
|
||||
<t t-foreach="partners" t-as="partner">
|
||||
<div class="col-md-4 col-xl-3 col-12 mb-4">
|
||||
<div class="card h-100 text-decoration-none">
|
||||
<a class="text-decoration-none" t-attf-href="/customers/#{slug(partner)}" aria-label="Go to customer">
|
||||
<div t-field="partner.avatar_1920"
|
||||
class="card-img-top border-bottom"
|
||||
t-options='{"widget": "image", "qweb_img_responsive": False, "class": "img img-fluid h-100 w-100 mw-100 object-fit-cover", "style": "max-height: 208px; object-fit: cover"}'
|
||||
/>
|
||||
<div class="card-body">
|
||||
<h5 class="card-title" t-field="partner.display_name"/>
|
||||
<small class="o_wcrm_short_description text-muted overflow-hidden" t-field="partner.website_short_description"/>
|
||||
<small t-if="not partner.website_short_description" class="css_editable_mode_hidden text-muted fst-italic" groups="website.group_website_restricted_editor">
|
||||
Enter a short description
|
||||
</small>
|
||||
<t t-if="partner.industry_id">
|
||||
<a class="badge mt-3 text-bg-secondary" t-attf-href="/customers/#{ 'industry/%s/' % slug(partner.industry_id) }#{ current_country_id and 'country/%s' % slug(current_country) or '' }" t-out="partner.industry_id.name"/>
|
||||
</t>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
<div class="navbar">
|
||||
<t t-call="website.pager">
|
||||
<t t-set="classname" t-value="'mx-auto'"/>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<!-- Option: top filters: World Map -->
|
||||
<template id="opt_country" inherit_id="website_customer.index" name="Show Map">
|
||||
<xpath expr="//div[hasclass('o_wcrm_search')]" position="inside">
|
||||
<t t-if="google_maps_api_key">
|
||||
<!-- modal for large map -->
|
||||
<div role="dialog" class="modal fade customer_map_modal" tabindex="-1">
|
||||
<div class="modal-dialog modal-lg">
|
||||
<div class="modal-content">
|
||||
<header class="modal-header">
|
||||
<h4 class="modal-title">World Map</h4>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"/>
|
||||
</header>
|
||||
<iframe t-attf-src="/google_map/?width=898&height=485&partner_ids=#{ google_map_partner_ids }&partner_url=/customers/"
|
||||
style="height:485px;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- modal end -->
|
||||
<div class="btn-group ms-2">
|
||||
<button class="btn btn-light border-primary active">
|
||||
<i class="fa fa-th-large"/>
|
||||
</button>
|
||||
<button class="btn btn-light" data-bs-toggle="modal" data-bs-target=".customer_map_modal">
|
||||
<i class="fa fa-map-marker" role="img" aria-label="Open map" title="Open map"/>
|
||||
</button>
|
||||
</div>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="opt_industry_list" inherit_id="website_customer.index" name="Filter on Industry" priority="20">
|
||||
<xpath expr="//div[hasclass('o_wcrm_search')]" position="before">
|
||||
<div class="dropdown d-none d-lg-block">
|
||||
<a role="button" href="#" data-bs-toggle="dropdown" t-attf-class="dropdown-toggle btn btn-light" aria-expanded="true" aria-label="Open industries dropdown">
|
||||
<t t-foreach="industries" t-as="industry_dict">
|
||||
<label class="cursor-pointer" t-if="industry_dict['industry_id'] and industry_dict['industry_id'][0] == current_industry_id and true or false" t-out="industry_dict['industry_id'][1]"/>
|
||||
</t>
|
||||
</a>
|
||||
<div class="dropdown-menu">
|
||||
<t t-foreach="industries" t-as="industry_dict">
|
||||
<t t-if="industry_dict['industry_id']">
|
||||
<a t-attf-href="/customers/#{ industry_dict['industry_id'][0] and 'industry/%s/' % slug(industry_dict['industry_id']) or '' }#{ current_country_id and 'country/%s' % current_country_id or '' }#{ search_path }"
|
||||
class="dropdown-item" t-out="industry_dict['industry_id'][1]"/>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="opt_country_list" inherit_id="website_customer.index" name="Filter on Countries" priority="30">
|
||||
<xpath expr="//div[hasclass('o_wcrm_search')]" position="before">
|
||||
<div class="dropdown d-none d-lg-block">
|
||||
<a role="button" href="#" data-bs-toggle="dropdown" t-attf-class="dropdown-toggle btn btn-light" aria-expanded="true" aria-label="Open countries dropdown">
|
||||
<t t-foreach="countries" t-as="country_dict">
|
||||
<label class="cursor-pointer" t-if="country_dict['country_id'] and current_country_id == country_dict['country_id'][0]">
|
||||
<t t-out="country_dict['country_id'][1]"/>
|
||||
</label>
|
||||
</t>
|
||||
</a>
|
||||
<div class="dropdown-menu">
|
||||
<t t-foreach="countries" t-as="country_dict">
|
||||
<t t-if="country_dict['country_id']">
|
||||
<a t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ country_dict['country_id'][0] and 'country/%s' % slug(country_dict['country_id']) or '' }#{ search_path }"
|
||||
class="dropdown-item" t-out="country_dict['country_id'][1]"/>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
|
||||
<template id="opt_tag_list" inherit_id="website_customer.index" name="Filter on Tags" priority="40">
|
||||
<xpath expr="//div[hasclass('o_wcrm_filters_top')]" position="after">
|
||||
<div class="d-flex align-items-center gap-2 my-4" t-if="len(tags)">
|
||||
<a class="badge text-bg-light" t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ current_country_id and 'country/%s' % slug(current_country) or '' }">
|
||||
<span class="fa fa-1x fa-tags"/> All
|
||||
</a>
|
||||
<t t-foreach="tags" t-as="o_tag">
|
||||
<a t-attf-class="text-bg-#{o_tag.classname} badge" t-out="o_tag.name" t-att-style="tag and tag.id==o_tag.id and 'text-decoration: underline'"
|
||||
t-attf-href="/customers/#{ current_industry_id and 'industry/%s/' % slug(current_industry) or '' }#{ current_country_id and 'country/%s' % slug(current_country) or '' }?tag_id=#{slug(o_tag)}"/>
|
||||
</t>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="details" name="Customer Detail">
|
||||
<t t-call="website.layout">
|
||||
<div id="wrap">
|
||||
<div class="oe_structure" id="oe_structure_website_customer_details_1"/>
|
||||
<div class="container my-4">
|
||||
<div class="row">
|
||||
<div class="mb-3" t-if="not edit_page">
|
||||
<a t-attf-href="/customers" aria-label="Back to references list"><i class="fa fa-chevron-left me-2"/>Back to references</a>
|
||||
</div>
|
||||
<t t-call="website_partner.partner_detail">
|
||||
<t t-set="right_column">
|
||||
<div id="right_column"><t t-call="website_customer.references_block"/></div>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_structure" id="oe_structure_website_customer_details_2"/>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="partner_details" inherit_id="website_partner.partner_page" name="Partner Detail Columns">
|
||||
<xpath expr="//t[@t-call='website_partner.partner_detail']" position="inside">
|
||||
<t t-set="left_column"><div id="left_column"><t t-call="website_customer.implemented_by_block"/></div></t>
|
||||
<t t-set="right_column"><div id="right_column"><t t-call="website_customer.references_block"/></div></t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="partner_detail" inherit_id="website_partner.partner_detail" name="Partner Details">
|
||||
<xpath expr="//div[hasclass('o_wcrm_contact_details')]" position="inside">
|
||||
<t t-if="partner.industry_id">
|
||||
<span class="badge text-bg-secondary"><t t-out="partner.industry_id.name"/></span>
|
||||
</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="implemented_by_block" name="Partner Implemented By Block">
|
||||
<t t-if="partner.assigned_partner_id and partner.assigned_partner_id.website_published">
|
||||
<div class="d-flex align-items-center">
|
||||
<div>
|
||||
<a t-attf-href="/partners/#{slug(partner.assigned_partner_id)}"
|
||||
t-field="partner.assigned_partner_id.avatar_128"
|
||||
class="d-block me-2 p-1 border rounded-circle shadow-sm"
|
||||
style="width: 42px; height: 42px"
|
||||
t-options='{"widget": "image", "qweb_img_responsive": False, "class": "img-fluid h-100 w-100 rounded-circle"}'
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<span class="small text-muted">Implemented by</span>
|
||||
<div>
|
||||
<a t-attf-href="/partners/#{slug(partner.assigned_partner_id)}">
|
||||
<span t-field="partner.assigned_partner_id"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="references_block" name="Partner References Block">
|
||||
<t t-if="any(p.website_published for p in partner.implemented_partner_ids)">
|
||||
<h3 id="references">References</h3>
|
||||
<div t-foreach="partner.implemented_partner_ids" t-as="reference" class="card mt-3 border-0">
|
||||
<t t-if="reference.website_published">
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<span t-field="reference.avatar_128"
|
||||
class="d-flex justify-content-center justify-content-center h-100"
|
||||
t-options='{"widget": "image", "qweb_img_responsive": False, "class": "img-fluid rounded"}'/>
|
||||
</div>
|
||||
<div class="card-body col-md-10">
|
||||
<a t-attf-href="/customers/#{slug(reference)}">
|
||||
<span t-field="reference.self"/>
|
||||
</a>
|
||||
<t t-if="reference.industry_id">
|
||||
<span class="badge ms-1 text-bg-secondary"><t t-out="reference.industry_id.name"/></span>
|
||||
</t>
|
||||
<div t-field='reference.website_short_description'/>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="references_block_href" inherit_id="website_crm_partner_assign.references_block" name="Partner References Block">
|
||||
<xpath expr="//div/span" position="replace">
|
||||
<a t-attf-href="/customers/#{slug(reference)}">$0</a>
|
||||
</xpath>
|
||||
<xpath expr="//div[hasclass('card-body')]/span" position="replace">
|
||||
<a t-attf-href="/customers/#{slug(reference)}">$0</a>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user