Начальное наполнение
This commit is contained in:
parent
127fe7a941
commit
64859575e8
3
__init__.py
Normal file
3
__init__.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from . import controller
|
||||||
|
from . import models
|
34
__manifest__.py
Normal file
34
__manifest__.py
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
'name': 'Link Tracker',
|
||||||
|
'category': 'Website/Website',
|
||||||
|
'summary': 'Generate trackable & short URLs',
|
||||||
|
'description': """
|
||||||
|
Generate short links with analytics trackers (UTM) to share your pages through marketing campaigns.
|
||||||
|
Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to analyze the efficiency of those campaigns in terms of lead generation, related revenues (sales orders), recruitment, etc.
|
||||||
|
""",
|
||||||
|
'version': '1.0',
|
||||||
|
'depends': ['website', 'link_tracker'],
|
||||||
|
'data': [
|
||||||
|
'views/link_tracker_views.xml',
|
||||||
|
'views/website_links_template.xml',
|
||||||
|
'views/website_links_graphs.xml',
|
||||||
|
'security/ir.model.access.csv',
|
||||||
|
],
|
||||||
|
'auto_install': True,
|
||||||
|
'assets': {
|
||||||
|
'web.assets_frontend': [
|
||||||
|
'website_links/static/src/js/website_links.js',
|
||||||
|
'website_links/static/src/js/website_links_code_editor.js',
|
||||||
|
'website_links/static/src/js/website_links_charts.js',
|
||||||
|
'website_links/static/src/css/website_links.css',
|
||||||
|
'website_links/static/src/xml/*.xml',
|
||||||
|
],
|
||||||
|
'web.assets_tests': [
|
||||||
|
'website_links/static/tests/**/*',
|
||||||
|
],
|
||||||
|
'website.assets_editor': [
|
||||||
|
'website_links/static/src/services/website_custom_menus.js',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'license': 'LGPL-3',
|
||||||
|
}
|
2
controller/__init__.py
Normal file
2
controller/__init__.py
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from . import main
|
39
controller/main.py
Normal file
39
controller/main.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from odoo import http
|
||||||
|
from odoo.http import request
|
||||||
|
|
||||||
|
|
||||||
|
class WebsiteUrl(http.Controller):
|
||||||
|
@http.route('/website_links/new', type='json', auth='user', methods=['POST'])
|
||||||
|
def create_shorten_url(self, **post):
|
||||||
|
if 'url' not in post or post['url'] == '':
|
||||||
|
return {'error': 'empty_url'}
|
||||||
|
return request.env['link.tracker'].search_or_create(post).read()
|
||||||
|
|
||||||
|
@http.route('/r', type='http', auth='user', website=True)
|
||||||
|
def shorten_url(self, **post):
|
||||||
|
return request.render("website_links.page_shorten_url", post)
|
||||||
|
|
||||||
|
@http.route('/website_links/add_code', type='json', auth='user')
|
||||||
|
def add_code(self, **post):
|
||||||
|
link_id = request.env['link.tracker.code'].search([('code', '=', post['init_code'])], limit=1).link_id.id
|
||||||
|
new_code = request.env['link.tracker.code'].search_count([('code', '=', post['new_code']), ('link_id', '=', link_id)])
|
||||||
|
if new_code > 0:
|
||||||
|
return new_code.read()
|
||||||
|
else:
|
||||||
|
return request.env['link.tracker.code'].create({'code': post['new_code'], 'link_id': link_id})[0].read()
|
||||||
|
|
||||||
|
@http.route('/website_links/recent_links', type='json', auth='user')
|
||||||
|
def recent_links(self, **post):
|
||||||
|
return request.env['link.tracker'].recent_links(post['filter'], post['limit'])
|
||||||
|
|
||||||
|
@http.route('/r/<string:code>+', type='http', auth="user", website=True)
|
||||||
|
def statistics_shorten_url(self, code, **post):
|
||||||
|
code = request.env['link.tracker.code'].search([('code', '=', code)], limit=1)
|
||||||
|
|
||||||
|
if code:
|
||||||
|
return request.render("website_links.graphs", code.link_id.read()[0])
|
||||||
|
else:
|
||||||
|
return request.redirect('/', code=301)
|
314
i18n/af.po
Normal file
314
i18n/af.po
Normal file
@ -0,0 +1,314 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
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: Afrikaans (https://www.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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Laas Maand"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Verlede Week"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Skakel Spoorsnyer"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "of"
|
352
i18n/ar.po
Normal file
352
i18n/ar.po
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "نقرات"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "الدول"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "عدد النقرات "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>حملة</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>متوسط </strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>الرابط الأصلي</strong> "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>الرابط المعاد توجيهه</strong> "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>المصدر</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>الرابط المتتبع</strong> "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "كل الوقت"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"حملة <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"يحدد سياق"
|
||||||
|
" رابطك. قد يكون فعالية ترغب في الترويج لها أو عرضاً خاصاً. \"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "تم النسخ "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "نسخ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "تحرير الكود "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "إنشاء رابط ... "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "احصل على رابط متتبع "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "الأيقونة"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "الشهر الماضي"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "الأسبوع الماضي"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "متتبع الرابط"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"الوسط <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"يحدد "
|
||||||
|
"الوسط المستخدم لمشاركة رابطك. قد يكون بريداً إلكترونياً أو إعلاناً على "
|
||||||
|
"Facebook على سبيل المثال. \"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "الأكثر نقرا"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "الأحدث"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "لا توجد بيانات"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "تم استخدامه حديثاً "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"شارك هذه الصفحة باستخدام <strong>رابط مختصر</strong> والذي يحتوي "
|
||||||
|
"على<strong>أدوات التتبع التحليلية</strong>. "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"المصدر <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"يحدد مصدر"
|
||||||
|
" الزيارات، من Facebook أو Twitter على سبيل المثال. \"/> "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "الإحصائيات"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "الإحصائيات"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "لا يمكن ترك الكود فارغاً"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "لا توجد بيانات لعرضها"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "هذا الكود مُستخدَم بالفعل"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"يمكن استخدام أدوات التتبع هذه في Google Analytics لتتبع النقرات والزوار، أو "
|
||||||
|
"في تقارير أودو لتتبع الفرص والإيرادات ذات الصلة."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "رابط URL "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "تعذر الحصول على الروابط الحديثة "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "غير محدد"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "مشاهدة إحصائيات صفحة الويب"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "ليس لديك أي روابط حديثة. "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "روابطك المتتبعة "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "النقرات "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "نسخ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "مثال: البريد الإلكتروني، الإعلانات، الوسائل الاجتماعية، ... "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "مثال: تخفيضات يونيو، العرض الترويجي في باريس، ... "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "مثال: LinkedIn، Facebook، العملاء المهتمون، ... "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "على سبيل المثال https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "حسناً"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "أو"
|
319
i18n/az.po
Normal file
319
i18n/az.po
Normal file
@ -0,0 +1,319 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " kliklər"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " ölkələr"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# kliklərin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampaniya</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Reklam Vasitəsi</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Orijinal URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Başqa ünvana göndərilən URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Mənbə</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong> İzlənilən Link keçidləri </strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Həmişə"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopyalandı"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Surət"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Kodu redaktə edin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Yaradılna link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "İzlənən linki əldə edin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Simvol"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Son Ay"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Son Həftə"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Bağlantı İzləyicisi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Ən çox kliklənənlər"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Ən son"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Yeni Istifadə Edilmiş"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Tərkibində<strong>analitik izləyicilər olan</strong>bu səhifəni<strong>qısa keçid ilə paylaşın</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Kod boş buraxıla bilməz"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Göstəriləcək heç bir məlumat yoxdur"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Bu kod artıq götürülüb"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "Bu izləyicilər Google Analytics-də klikləri və ziyarətçiləri izləmək üçün, yaxud Odoo hesabatlarında imkanları və müvafiq gəlirləri izləmək üçün istifadə oluna bilər."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Son keçidləri əldə etmək olmur"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Təyin olunmayan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Vebsəhifə Statistikalarını Ziyarət edin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Sizin yaxın keçmişə aid hər hansı linkiniz yoxdur."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "İzlədiyiniz əlaqələr"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "Ləğv edin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "kliklər"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "Surət"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "məs. Bülleten, Sosial Şəbəkə, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "məs. İyun Təqdimatı, Qış Bülleteni, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "məs. Axtarış Sistemi, Veb səhifə, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "və yaxud"
|
347
i18n/bg.po
Normal file
347
i18n/bg.po
Normal file
@ -0,0 +1,347 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# aleksandar ivanov, 2023
|
||||||
|
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||||
|
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Maria Boyadjieva <marabo2000@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: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
|
||||||
|
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: bg\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "натискания"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "държави"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# на натискания"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Кампания</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Средно</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Оригинален URL адрес</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Пренасочен URL адрес</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Източник</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Проследен линк</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Непрестанен"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Копирано"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Копирайте"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Създаване на линк..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Получете проследен линк"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Икона"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Последен месец"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Миналата седмица"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Link Tracker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "С най-много натискания на бутони"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Най-новите"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Използвани напоследък"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Споделете тази страница с <strong>кратък линк</strong>, който включва "
|
||||||
|
"<strong>аналитични тракери</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Няма данни за показване"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Тези тракери могат да се използват в Google Analytics, за да проследяват "
|
||||||
|
"натисканията на бутоните и посетителите или пък да проследяват възможностите"
|
||||||
|
" и свързаните приходи в отчетите на Odoo."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL адрес"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Невъзможно е да получите скорошни линкове"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Неопределен"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Нямате никакви наскорошни линкове."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Вашите проследени линкове"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "отменете"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "натискания"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "копирайте"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ок"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "или"
|
318
i18n/bs.po
Normal file
318
i18n/bs.po
Normal file
@ -0,0 +1,318 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux, 2018
|
||||||
|
# Boško Stojaković <bluesoft83@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-18 09:49+0000\n"
|
||||||
|
"Last-Translator: Boško Stojaković <bluesoft83@gmail.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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Izvor</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Znak"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Zadnji mjesec"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Zadnja sedmica"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Pratioc veza"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnoviji"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinisano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ili"
|
364
i18n/ca.po
Normal file
364
i18n/ca.po
Normal file
@ -0,0 +1,364 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||||
|
# M Palau <mpalau@tda.ad>, 2023
|
||||||
|
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||||
|
# Josep Anton Belchi, 2023
|
||||||
|
# marcescu, 2023
|
||||||
|
# Quim - eccit <quim@eccit.com>, 2023
|
||||||
|
# Ivan Espinola, 2023
|
||||||
|
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||||
|
# Arnau Ros, 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: Arnau Ros, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "Clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "països"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# de clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campanya</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Mijtà</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>L'URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Redirigeix L'URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origen</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Enllaç seguit</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Tot el temps"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defina el"
|
||||||
|
" context del vostre enllaç. Pot ser un esdeveniment que vulguis promoure o "
|
||||||
|
"una promoció especial.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Còpia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Modificar codi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generant enllaç..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtingués l'enllaç seguit"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Últim mes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Darrera setmana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastrejador d'enllaços"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Mèdium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defina el"
|
||||||
|
" mitjà utilitzat per compartir el vostre enllaç. Podria ser un correu "
|
||||||
|
"electrònic o un anunci de Facebook per exemple.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Més clicat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "El més nou"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Sense dades"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Utilitzat recentment"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Comparteix aquesta pàgina amb un <strong>enllaç curt </strong> que inclogui "
|
||||||
|
"<strong>seguiments analítics </strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Font <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadístiques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadístiques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "El codi no es pot deixar buit"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "No hi ha dades a mostrar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Aquest codi ja està agafat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Aquests rastrejadors poden ser utilitzats per Google Analytics per seguir "
|
||||||
|
"clics i visitants, o a informes d'Odoo per seguir oportunitats i ingressos "
|
||||||
|
"relacionats"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "L'URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "No es poden obtenir enllaços recents"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Indefinit"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Visiteu les estadístiques de la pàgina web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "No tens cap enllaç recent."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Els teus enllaços seguits"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancel·lar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "Clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "Còpia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "p.e. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
344
i18n/cs.po
Normal file
344
i18n/cs.po
Normal file
@ -0,0 +1,344 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Ivana Bartonkova, 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "kliknutí"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "země"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "počet kliknutí"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampaň</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Médium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Původní URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Přesměrované URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Zdroj</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Sledovaný odkaz</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Stále"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopírováno"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopírovat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Upravit kód"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generování odkazu ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Získat sledovací odkaz"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Minulý měsíc"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Minulý týden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Sledovač odkazů"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Nejvíce klikané"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Nejnovější"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Žádná data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Nedávno použito"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Sdílet tuto stranu pomocí <strong>krátkého odkazu</strong>, který zahrnuje "
|
||||||
|
"<strong>analytické sledovače</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistiky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistiky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Kód nemůže zůstat prázdný"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Pro zobrazení nejsou žádná data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Tento kód je již přijat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Tyto sledovače mohou být použity ve službě Google Analytics ke sledování "
|
||||||
|
"kliknutí a návštěvníků nebo v přehledech Odoo ke sledování příležitostí a "
|
||||||
|
"souvisejících příjmů."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Nelze získat poslední odkazy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinováno"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Navštívit statistiku webových stránek"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nemáte žádné nedávné odkazy."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Vaše sledované odkazy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "zrušit"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "kliknutí"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopírovat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "např. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "nebo"
|
342
i18n/da.po
Normal file
342
i18n/da.po
Normal file
@ -0,0 +1,342 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "lande"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# Klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampagne</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Oprindelig URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Omdirigeret URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Kilde</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Sporede links</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Hele tiden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopieret"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopiér"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Skift kode"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Genererer link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Hent sporede links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Sidste måned"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Sidste uge"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Sporing af link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Klikket mest på"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Nyeste"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Ingen data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Brugt fornyligt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Del denne side med et <strong>kort link</strong> som inkluderer "
|
||||||
|
"<strong>analytiske sproringer</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistikker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Koden kan ikke være tom"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Der er ingen data at vise"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Denne kode er allerede i brug"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Disse sporinger kan bruges i Google Analytics til at spore klik og besøgende"
|
||||||
|
" eller i Odoo rapporter til at spore muligheder og relaterede indtægter."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Kunne ikke hente de seneste links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Udefineret"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Besøg hjemmeside statistikker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Du har ingen nylige links."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Dine sporede links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "annullér"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "f.eks. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "eller"
|
355
i18n/de.po
Normal file
355
i18n/de.po
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " Klicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " Länder"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# Klicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampagne</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Original-URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Umgeleitete URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Quelle</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Verfolgter Link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Immer"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampagne <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopiert"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopieren"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Code bearbeiten"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Link wird erstellt …"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Verfolgten Link abrufen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Letzter Monat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Letzte Woche"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Link-Tracker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Meistgeklickt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Neueste"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Keine Daten"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Zuletzt verwendet"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Teilen Sie diese Seite mit einem <strong>kurzen Link</strong>, der einen "
|
||||||
|
"<strong>Analytics-Tracker</strong> enthält."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Quelle <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Der Code kann nicht leer gelassen werden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Keine Daten vorhanden."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Dieser Code ist schon vergeben"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Diese Tracker können bei Google Analytics verwendet werden, um Klicks und "
|
||||||
|
"Besucher zu verfolgen, oder bei Odoo-Berichten, um Verkaufschancen und damit"
|
||||||
|
" verbundene Umsätze zu verfolgen."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Zuletzt geöffnete Links können nicht abgerufen werden."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Undefiniert"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Website-Statistiken ansehen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Keine zuletzt geöffneten Links vorhanden."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Ihre verfolgten Links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "abbrechen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "Klicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopieren"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "z. B. InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "z. B. Juni-Sale, Paris Roadshow, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "z. B. LinkedIn, Facebook, Leads, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "z. B. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "Ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "oder"
|
319
i18n/el.po
Normal file
319
i18n/el.po
Normal file
@ -0,0 +1,319 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux, 2018
|
||||||
|
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||||
|
# George Tarasidis <george_tarasidis@yahoo.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-18 09:49+0000\n"
|
||||||
|
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||||
|
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||||
|
"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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " κλικς"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " χώρες"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# των κλικς"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Εκστρατεία</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Μεσαίο</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Αρχική Διεύθυνση URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Διεύθυνση URL Ανακατεύθυνσης</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Προέλευση</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "URL Ιχνηλάτησης"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Όλα"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Αντιγραφή"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Δημιουργία συνδέσμου..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Απόκτηση URL Ιχνηλάτησης"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Εικονίδιο"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Τελευταίος Μήνας"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Προηγ. Εβδομάδα"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Ιχνηλάτης URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Τα περισσότερα κλικ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Νεότερα"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Πρόσφατα Χρησιμοποιημένα"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Μοιραστείτε αυτήν τη σελίδα με έναν <strong>σύντομο σύνδεσμο</strong> που περιλαμβάνει <strong>ιχνηλάτες ανάλυσης</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Στατιστικά"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Στατιστικά"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Δεν υπάρχουν δεδομένα για προβολή"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "Αυτοί οι ιχνηλάτες μπορούν να χρησιμοποιηθούν στο Google Analytics για την ιχνηλάτηση των κλικ και των επισκεπτών ή στις αναφορές του Odoo για την ιχνηλάτηση των ευκαιριών και των σχετικών εσόδων."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Δεν είναι δυνατή η λήψη πρόσφατων συνδέσμων"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Μη ορισμένο"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Δεν έχετε πρόσφατους συνδέσμους."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Οι σύνδεσμοι που έχετε παρακολουθήσει"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "άκυρο"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "κλικς"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr " αντίγραφο"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "π.χ. Newsletter, Κοινωνικά Δίκτυα, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "π.χ. Προώθηση Ιουνίου, Χειμερινό Newsletter, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "π.χ. Μηχανή Αναζήτησης, Σελίδα ιστότοπου, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ΟΚ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ή"
|
356
i18n/es.po
Normal file
356
i18n/es.po
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Wil Odoo, 2023
|
||||||
|
# Larissa Manderfeld, 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: Larissa Manderfeld, 2024\n"
|
||||||
|
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "Países"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "Nº de clicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaña</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medio</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redirigida</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origen</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Enlace Rastreado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo el tiempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campaña <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Editar código"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generando enlace..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Recibir enlace rastreado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icono"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Mes anterior"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Semana anterior"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastreador de enlaces"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medio <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Más Clickeadas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Más reciente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Sin datos"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recientemente usadas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Comparta esta página con un <strong>enlace corto</strong> que incluya "
|
||||||
|
"<strong>rastreadores analíticos</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Origen <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "El código no puede dejarse vacío"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "No hay datos para mostrar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Este código ya ha sido apropiado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Es posible usar tales rastreadores en Google Analytics para realizar un "
|
||||||
|
"seguimiento de clics y visitas, así como también en informes de Odoo con el "
|
||||||
|
"fin de supervisar oportunidades e ingresos relacionados."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "No es posible recibir enlaces recientes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Indefinido"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Visite las estadísticas de la página web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "No tienes enlaces recientes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Sus enlaces rastreados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "Por ejemplo, InMail de LinkedIn, anuncios..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "Por ejemplo, venta de junio, roadshow de París "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "Por ejemplo, LinkedIn, Facebook, leads..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "por ejemplo https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
356
i18n/es_419.po
Normal file
356
i18n/es_419.po
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Wil Odoo, 2023
|
||||||
|
# Fernanda Alvarez, 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: Fernanda Alvarez, 2024\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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "países"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "Número de clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaña</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medio</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL redirigida</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origen</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Enlace rastreado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo el tiempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campaña <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Información sobre la "
|
||||||
|
"herramienta\" title=\"Define el contexto de su enlace. Puede ser un evento "
|
||||||
|
"que quiera promocionar o una promoción especial.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Editar código"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generando enlace..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtenga el enlace rastreado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icono"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Mes pasado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Semana pasada"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastreador de enlaces"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medio <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Información sobre la "
|
||||||
|
"herramienta\" title=\"Define el medio a usar para compartir su enlace. Puede"
|
||||||
|
" ser por correo electrónico o los anuncios de Facebook, por ejemplo.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Con más clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Más reciente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Sin datos"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recientemente usadas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Comparta esta página con un <strong>enlace corto</strong> que incluya "
|
||||||
|
"<strong>rastreadores analíticos</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Origen <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Información sobre la "
|
||||||
|
"herramienta\" title=\"Define el origen de donde provendrá su tráfico, "
|
||||||
|
"Facebook o Twitter por ejemplo.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "No puede dejar el código vacío"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "No hay datos para mostrar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Ya se utilizó este código"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Se pueden utilizar estos rastreadores en Google Analytics para rastrear los "
|
||||||
|
"clics y visitantes, o en los reportes de Odoo para rastrear oportunidades e "
|
||||||
|
"ingresos relacionados."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "No es posible recibir enlaces recientes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Sin definir"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Estadísticas de las visitas al sitio web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "No cuenta con enlaces recientes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Sus enlaces rastreados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "Por ejemplo, InMail de LinkedIn, anuncios..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "Por ejemplo, venta de junio, roadshow de París "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "Por ejemplo, LinkedIn, Facebook, leads..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "Por ejemplo, https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "de acuerdo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
318
i18n/es_CO.po
Normal file
318
i18n/es_CO.po
Normal file
@ -0,0 +1,318 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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:27+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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaña</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Media</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redireccionada</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Fuente</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Vínculo Rastreado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo el Tiempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generando enlace..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtener Vínculo Rastreado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Último Mes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Última Semana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastreador de Enlaces"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Más Cliqueado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Reciente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Usado Recientemente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Comparte esta página con un <strong>vínculo corto</strong> que incluye <strong> análisis de rastreo </strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Imposible obtener los vínculos recientes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Usted no tiene vínculos recientes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Sus vínculos rastreados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "ej. Boletín Informativo, Red Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "ej. Promoción de Junio, Boletín de Invierno, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "ej. Motor de Búsqueda, Página del sitio web, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "aceptar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
316
i18n/es_DO.po
Normal file
316
i18n/es_DO.po
Normal file
@ -0,0 +1,316 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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-22 15:23+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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Fuente</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Último Mes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastreador de Enlaces"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
317
i18n/es_EC.po
Normal file
317
i18n/es_EC.po
Normal file
@ -0,0 +1,317 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2015-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-16 06:55+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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaña</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medio</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redirigida</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origen</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Vínculo rastreado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo el tiempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generando vínculo..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtener vínculo rastreado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Último Mes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Última Semana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Campañas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Más cliqueado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Nuevo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recientemente usado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Comparte esta página con un <strong>vínculo corto</strong> que incluye <strong> análisis de rastreo </strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Imposible obtener los vínculos recientes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Usted no tiene vínculos recientes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Sus vínculos rastreados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "ejemplo: Revista, Red Social,..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "ejemplo: Promoción de junio, Revista de Invierno, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "e.g. Motor de búsqueda, página de sitio web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "Aceptar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
317
i18n/es_PE.po
Normal file
317
i18n/es_PE.po
Normal file
@ -0,0 +1,317 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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-13 17:56+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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaña</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medio</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redireccionado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Fuente</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Enlace de Seguimiento</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo el Tiempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generando enlace..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtener enlace de seguimiento"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Último Mes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Última Semana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Seguidor de Enlace"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Más Cliqueado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Más Reciente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recientemente Usado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Compartir esta página con un <strong>enlace corto</strong> que incluye <strong>analíticas de seguimiento</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estadísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Imposible obtener enlaces recientes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Usted no tiene ningún enlace reciente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Sus enlaces de seguimiento"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "ejem. Hoja Informativa, Red Social, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "ejem. Promoción de Junio, Hoja Informativa de Invierno, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "ejem. Motor de Búsqueda, Página de Sitio Web, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "o"
|
367
i18n/et.po
Normal file
367
i18n/et.po
Normal file
@ -0,0 +1,367 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# JanaAvalah, 2023
|
||||||
|
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||||
|
# Ants Peetsalu <ants@avalah.ee>, 2023
|
||||||
|
# Egon Raamat <egon@avalah.ee>, 2023
|
||||||
|
# Helen Sulaoja <helen@avalah.ee>, 2023
|
||||||
|
# Piia Paurson <piia@avalah.ee>, 2023
|
||||||
|
# Aveli Kannel <aveli@avalah.ee>, 2023
|
||||||
|
# Triine Aavik <triine@avalah.ee>, 2023
|
||||||
|
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||||
|
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||||
|
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klikke"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "riigid"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klikkide arv"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampaania</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Keskmine</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Algne URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Ümbersuunatud URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Allikas</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Jälgitav link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Kogu periood"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampaania <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopeeritud"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopeeri"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Redigeeri koodi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Lingi loomine..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Hankige jälgitav link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "sümbolit."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Eelmine kuu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Eelmine nädal"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Lingi jälgija"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Keskmine <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Enim klikke"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Uusim"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Andmed puuduvad"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Hiljuti kasutatud"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Jagage lehte <strong>lühikese lingiga</strong> mis on "
|
||||||
|
"<strong>jälgitav</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Allikas <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Koodi ei saa tühjaks jätta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Pole andmeid näitamiseks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "See kood on juba võetud"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Neid jälgijaid saab kasutada Google Analyticsis klikkide ja külastajate "
|
||||||
|
"jälgimiseks või võimaluste ja nendega seotud tulude jälgimiseks Odoo "
|
||||||
|
"aruannetes. "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Viimaseid linke ei ole võimalik hankida. "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Määramata"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Vaata veebilehe statistikat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Sul ei ole hiljutisi linke."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Teie jälgitavad lingid"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "tühista"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopeeri"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "nt. Sotsiaalmeedia konto"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "nt. Juuni müügikampaania"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "nt. LinkedIn, Facebook.."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "nt. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "okei"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "või"
|
341
i18n/fa.po
Normal file
341
i18n/fa.po
Normal file
@ -0,0 +1,341 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||||
|
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||||
|
# Hanna Kheradroosta, 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "کپی شده"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "کپی"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "شمایل"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "ماه گذشته"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "هفته قبل"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "پیگیری لینک"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "جدیدترین"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "بدون داده"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "آمار"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "تعریف نشده"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "لغو"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "یا"
|
361
i18n/fi.po
Normal file
361
i18n/fi.po
Normal file
@ -0,0 +1,361 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||||
|
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||||
|
# Svante Suominen <svante.suominen@web-veistamo.fi>, 2023
|
||||||
|
# Miku Laitinen <miku.laitinen@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||||
|
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||||
|
# Tuomo Aura <tuomo.aura@web-veistamo.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: Tuomo Aura <tuomo.aura@web-veistamo.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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klikkausta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "maat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klikkausta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanja</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Media</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Alkuperäinen URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Uudelleenohjattu URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Lähde</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Seurattu linkki</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Kaikkien aikojen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampanja <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Määrittää"
|
||||||
|
" linkkisi kontekstin. Se voi olla vaikkapa tapahtuma, jota haluat mainostaa "
|
||||||
|
"tai erikoistarjous.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopioitu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopioi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Muokkaa koodia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Linkin luominen..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Hanki jäljitetty linkki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Kuvake"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Edellinen kuukausi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Viime viikko"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Klikkiseuranta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Media <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Määrittää"
|
||||||
|
" median, jota kautta linkkiäsi jaetaan. Se voi olla esimerkiksi "
|
||||||
|
"sähköpostiviest tai Facebook-mainos.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Eniten klikatut"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Uusimmat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Ei tietoja"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Hiljattain käytetty"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Jaa tätä sivua <strong>lyhyellä linkillä</strong>, joka sisältää "
|
||||||
|
"<strong>analytiikkaseurannan</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Lähde <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Määrittää"
|
||||||
|
" lähteen, josta liikenne saapuu. Esimerkiksi Facebook tai Twitter.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Tilastot"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Tilastot"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Koodia ei voi jättää tyhjäksi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Ei näytettäviä tietoja"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Tämä koodi on jo varattu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Näitä seurantalaitteita voidaan käyttää Google Analyticsissa klikkausten ja "
|
||||||
|
"kävijöiden seuraamiseen tai Odoo-raporteissa mahdollisuuksien ja niihin "
|
||||||
|
"liittyvien tulojen seuraamiseen."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Viimeaikaisia linkkejä ei saada"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Ei määritelty"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Käy verkkosivun tilastoissa"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Sinulla ei ole yhtään viimeaikaista linkkiä."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Jäljitetyt linkit"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "peruuta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikkausta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopioi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "esim. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "tai"
|
354
i18n/fr.po
Normal file
354
i18n/fr.po
Normal file
@ -0,0 +1,354 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "pays"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# de clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campagne</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL d'origine</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL redirigée</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Source</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Lien trackés</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Tout le temps"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campagne <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Définit "
|
||||||
|
"le contexte de votre lien. Il peut s'agir d'un événement que vous souhaitez "
|
||||||
|
"promouvoir ou d'une promotion spéciale.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copié"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copier"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Modifier le code"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Génération du lien en cours..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obtenir un lien tracké"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icône"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Le mois dernier"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Semaine dernière"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Tracker de liens"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Définit "
|
||||||
|
"le support utilisé pour partager votre lien. Il peut s'agir d'un email ou "
|
||||||
|
"d'une publicité Facebook par exemple.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Le plus cliqué"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Le plus récent"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Pas de données"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Utilisé récemment"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Partagez cette page avec un <strong>lien court</strong> qui inclut "
|
||||||
|
"<strong>des trackers analytiques</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Définit "
|
||||||
|
"la source d'où viendra votre trafic, Facebook ou Twitter par exemple.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistiques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Stats"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Le code ne peut pas être laissé vide"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Aucun donnée à afficher"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Ce code est déjà pris"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Ces trackers peuvent être utilisés dans Google Analytics afin de surveiller "
|
||||||
|
"les clics et les visiteurs, ou dans les rapports Odoo afin de surveiller les"
|
||||||
|
" opportunités et revenus liés."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Impossible d'obtenir des liens récents"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Indéfini"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Statistiques de visite de page web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Vous n'avez pas de liens récents."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Vos liens trackés"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "annuler"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copie"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "par ex. InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "par ex. June Sale, Paris Roadshow, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "par ex. LinkedIn, Facebook, Pistes, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "par ex. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ou"
|
318
i18n/gu.po
Normal file
318
i18n/gu.po
Normal file
@ -0,0 +1,318 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux, 2018
|
||||||
|
# Spellbound Soft Solutions <jeel.spellbound@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-18 09:49+0000\n"
|
||||||
|
"Last-Translator: Spellbound Soft Solutions <jeel.spellbound@gmail.com>, 2018\n"
|
||||||
|
"Language-Team: Gujarati (https://www.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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Last Month"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "અવ્યાખ્યાયિત"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "અથવા"
|
345
i18n/he.po
Normal file
345
i18n/he.po
Normal file
@ -0,0 +1,345 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||||
|
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||||
|
# Lilach Gilliam <lilach.gilliam@gmail.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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "לחיצות"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "ארצות"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "מס' לחיצות"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>קמפיין</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>אופן התקשורת</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>כתובת אתר מקורית</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>מקור</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>קישור מעקב</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "כל הזמן"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "הועתק"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "העתק"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "ערוך קוד"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "יוצר קישור..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "קבל קישור מעקב"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "סמל"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "חודש אחרון"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "שבוע אחרון"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "מעקב קישורים"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "נלחץ הכי הרבה"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "החדש ביותר"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "אין נתונים"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "היה בשימוש לאחרונה"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"שתף דף זה עם <strong>קישור קצר</strong> שכולל <strong>עוקבים "
|
||||||
|
"אנליטיים</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "סטטיסטיקה"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "נתונים סטטיסטיים"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "לא ניתן להשאיר את הקוד ריק"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "אין נתונים שניתן להציג"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "קוד זה כבר בשימוש"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"ניתן להשתמש באותם עוקבים ב- Google Analytics כדי לעקוב אחר לחיצות ומבקרים, "
|
||||||
|
"או בדוחות Odoo למעקב אחר הזדמנויות והכנסות קשורות."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "לא ניתן לקבל קישורים אחרונים"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "לא מוגדר"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "סטטיסטיקת ביקורים בדף האינטרנט"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "אין לך קישורים אחרונים."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "קישורי המעקב שלך"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "בטל"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "לחיצות"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "העתק"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "או"
|
325
i18n/hr.po
Normal file
325
i18n/hr.po
Normal file
@ -0,0 +1,325 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
|
||||||
|
# Filip Cuk <filipcuk2@gmail.com>, 2022
|
||||||
|
# 0ba0ac30481a756f36528ba6f9a4317e_6443a87 <52eefe24349934c364624ef40611b7a3_1010754>, 2022
|
||||||
|
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||||
|
# Tina Milas, 2022
|
||||||
|
# Bole <bole@dajmi5.com>, 2022
|
||||||
|
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||||
|
# 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: 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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanja</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Srednja</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Originalan URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Preusmjereni URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Izvor</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Praćena poveznica</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Cijelo vrijeme"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopirano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopija"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generiram link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Prošli mjesec"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Prošli tjedan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Praćenje linkova"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Najviše klikova"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnoviji"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Nema podataka"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Nedavno korišten"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistike"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefiniran"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nemate nedavnih linkova."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Vaše praćene poveznice"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "odustani"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikova"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopija"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "npr. Newsletter, Social Network, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "npr. Promotion of June, Winter Newsletter, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "npr. Search Engine, Website page, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ili"
|
342
i18n/hu.po
Normal file
342
i18n/hu.po
Normal file
@ -0,0 +1,342 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# gezza <geza.nagy@oregional.hu>, 2023
|
||||||
|
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||||
|
# Ákos Nagy <akos.nagy@oregional.hu>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampány</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Közepes</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Eredeti URL elérési út</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Átirányított URL elérési út</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Forrás</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Követett Link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Összes idő"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Másolt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Másolás"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Elérési link generálás..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Nyomon követett elérési link megkapása"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Előző hónap"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Előző hét"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Hivatkozás követő"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Legtöbbször rákattintott"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Legújabb"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Nincs adat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Nemrég használt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statisztika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statisztikák"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "Webcím"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nem meghatározott"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nincsenek régebbi linkjei."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Nyomon követett linkek"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "mégsem"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "kattintások"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "másolás"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "vagy"
|
355
i18n/id.po
Normal file
355
i18n/id.po
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "negara"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanye</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL yang Dialihkan</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Sumber</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Link yang Dilacak</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Sepanjang Masa"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampanye <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" "
|
||||||
|
"title=\"Definisikan konteks link Anda. Ini mungkin merupakan acara yang Anda"
|
||||||
|
" ingin promosikan atau promosi spesial.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Tersalin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Edit kod"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Membuat link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Dapatkan link yang dilacak"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Bulan Lalu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Minggu Lalu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Pelacak Link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" "
|
||||||
|
"title=\"Definisikan medium yang digunakan untuk membagikan link Anda. "
|
||||||
|
"Contohnya ini bisa merupakan email, atau Iklan Facebook.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Paling Banyak Di-klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Terbaru"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Data tidak ada"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Baru Saja Digunakan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Bagikan halaman ini dengan <strong>link pendek</strong> yang memiliki "
|
||||||
|
"<strong>pelacak analitik</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Sumber <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" "
|
||||||
|
"title=\"Definisikan sumber dari mana traffic Anda akan datang, contohnya "
|
||||||
|
"dari Facebook atau Twitter.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Kode tidak boleh kosong"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Tidak ada data untuk ditunjukkan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Kode ini sudah digunakan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Pelacak tersebut dapat digunakan di Google Analytic untuk melacak klik dan "
|
||||||
|
"pengunjung, atau di laporan Odoo untuk melacak kesempatan dan pendapatan "
|
||||||
|
"terkait."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Tidak dapat mengambil link-link terkini"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Undefined"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Kunjungi Statistik Halaman Website"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Anda tidak memiliki link-link terkini."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Link-link Anda yang dilacak"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "batal"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "salin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "contoh InMails, Iklan, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "contoh Sale Juni, Paris Roadshow, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "contoh LinkedIn, Facebook, Leads, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "contoh https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "atau"
|
314
i18n/is.po
Normal file
314
i18n/is.po
Normal file
@ -0,0 +1,314 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Síðasti mánuður"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Virkni fjölpósts"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "eða"
|
355
i18n/it.po
Normal file
355
i18n/it.po
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " clic"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " nazioni"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "n. di clic"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campagna</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Mezzo</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL originale</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL reindirizzato</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origine</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Link monitorato</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "In assoluto"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campagna <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiato"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Modifica codice"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generazione link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Ottieni link monitorato"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Ultimo mese"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Ultima settimana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Monitoraggio link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Mezzo <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Con più clic"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Più recenti"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Nessun dato"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Usati di recente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Condividi questa pagina con un <strong>link corto</strong> che include "
|
||||||
|
"<strong>tracciatori analitici</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Origine <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistiche"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistiche"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Il codice non può essere lasciato vuoto"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Nessun dato da visualizzare"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Questo codice è già occupato"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Questi link possono esser usati in Google Analytics per tracciare clic e "
|
||||||
|
"visitatori, o nei resoconti Odoo per tracciare opportunità e relativi "
|
||||||
|
"ricavi."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Impossibile ottenere link recenti"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Non definita"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Vedi statistiche pagina web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nessun link recente."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Link monitorati"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "annulla"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clic"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "ad es. InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "ad es. Saldi di giugno, Roadshow Parigi..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "ad es. LinkedIn, Facebook, Leads..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "es. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "oppure"
|
352
i18n/ja.po
Normal file
352
i18n/ja.po
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "クリック"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "国"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "クリック数"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>キャンペーン</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>中</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>オリジナル URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>リダイレクト URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>参照元</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>追跡リンク</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "常時"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"キャンペーン<i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "複製対象"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "コピー"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "コードを編集"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "リンクを生成中..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "追跡されたリンクを取得"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "アイコン"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "先月"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "先週"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "リンクトラッカー"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"媒体 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "最多クリックされている"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "最新"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "データなし"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "最近利用された"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr "<strong>分析用トラッカー</strong>付きの<strong>短いリンク</strong>でページを共有します。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"ソース <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "統計"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "統計"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "コードを空欄にはできません"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "表示するデータなし"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "このコードは既に使用されています"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"これらのトラッカーは、Google "
|
||||||
|
"Analyticsでクリックや訪問者を追跡するため、又はOdooのレポートで機会や関連収益を追跡するために使用できます。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "最近のリンクを取得できません"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "未定義"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "ウェブサイト分析を見る"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "最近のリンクはありません。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "追跡されたリンク"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "取消"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "クリック"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "コピー"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "例: InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "例: 6月セール、パリロードショー..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "例: LinkedIn, Facebook, リード ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "例: https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "又は"
|
316
i18n/kab.po
Normal file
316
i18n/kab.po
Normal file
@ -0,0 +1,316 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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:32+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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Tiddadanin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "sefsax"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "neɣ"
|
318
i18n/km.po
Normal file
318
i18n/km.po
Normal file
@ -0,0 +1,318 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||||
|
# Chan Nath <channath@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-18 09:49+0000\n"
|
||||||
|
"Last-Translator: Chan Nath <channath@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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "ថ្មីបំផុត"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "តំណភ្ជាប់ដែលតាមដាន"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ឬ"
|
350
i18n/ko.po
Normal file
350
i18n/ko.po
Normal file
@ -0,0 +1,350 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "클릭"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "국가"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "클릭 수"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>캠페인</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>매체</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>원래 URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>재전달된 URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>소스</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>추적된 링크</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "총 시간"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"캠페인 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "복사됨"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "사본"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "코드 편집"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "링크 생성중..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "추적된 링크 얻기"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "아이콘"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "전 월"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "지난 주"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "링크 추적기"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"중급 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"도구 설명 정보\" title=\"링크를 공유하는 데 "
|
||||||
|
"사용되는 매체를 정의합니다. 이메일이나 페이스북 광고 등을 예로 들 수 있습니다.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "가장 많이 클릭"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "최신"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "데이터 없음"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "최근에 사용"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr "<strong>분석 추적기</strong>가 포함된 <strong>짧은 링크</strong>로 이 페이지를 공유합니다."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"출처 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"도구 설명 정보\" title=\"페이스북이나 트위터와 "
|
||||||
|
"같이 트래픽이 유입되는 출처를 정의합니다.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "통계"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "통계"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "코드는 비워 둘 수 없습니다"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "표시할 데이터가 없습니다"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "이 코드는 이미 사용되었습니다"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"이러한 추적기는 Google 웹 로그 분석에서 클릭 및 방문자를 추적하거나 Odoo 보고서에서 기회 및 관련 수익을 추적하는 데 사용할 "
|
||||||
|
"수 있습니다."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "최근 링크를 얻을 수 없습니다"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "미지정"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "웹페이지 방문 통계"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "최근 링크가 없습니다."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "추적된 링크"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "취소"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "클릭"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "복사"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "예. 인메일, 광고, 소셜 등."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "예. 6월 세일, 파리 로드쇼 등. "
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "예. 링크드인, 페이스북, 잠재 고객 등."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "예: https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "확인"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "또는"
|
314
i18n/lb.po
Normal file
314
i18n/lb.po
Normal file
@ -0,0 +1,314 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr ""
|
348
i18n/lt.po
Normal file
348
i18n/lt.po
Normal file
@ -0,0 +1,348 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Silvija Butko <silvija.butko@gmail.com>, 2023
|
||||||
|
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2023
|
||||||
|
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||||
|
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||||
|
# Jonas Zinkevicius <jozi@odoo.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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " paspaudimai"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " valstybės"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "paspaudimų skaičius"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanija</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Kanalas</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Pirminis URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Nukreiptas URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Šaltinis</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Sekama nuoroda</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Visas laikas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Nukopijuota"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopijuoti"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Redaguoti kodą"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Kuriama nuoroda..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Gauti sekamą nuorodą"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Piktograma"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Paskutinis mėnuo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Paskutinė savaitė"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Nuorodų sekimas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Dažniausiai spaudžiama"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Naujausia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Neseniai naudota"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Pasidalinkite šiuo puslapiu <strong>trumpąja nuoroda</strong>, kuri turi "
|
||||||
|
"<strong>analitinį sekimą</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Nėra rodomų duomenų"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Šis sekimas gali būti panaudojamas \"Google Analytics\", taip sekant "
|
||||||
|
"paspaudimus ir lankytojus, arba \"Odoo\" ataskaitose, taip sekant galimybes "
|
||||||
|
"ir susijusias pajamas."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Nepavyko gauti paskutinių nuorodų"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Neapibrėžta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Jūs neturite paskutinių nuorodų."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Jūsų sekamos nuorodos"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "atšaukti"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "paspaudimai"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopijuoti"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "Gerai"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "arba"
|
342
i18n/lv.po
Normal file
342
i18n/lv.po
Normal file
@ -0,0 +1,342 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Anzelika Adejanova, 2023
|
||||||
|
# JanisJanis <jbojars@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||||
|
# Arnis Putniņš <arnis@allegro.lv>, 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: Arnis Putniņš <arnis@allegro.lv>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Nokopēts"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopēt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Pēdējais mēnesis"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Saišu izsekošana"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Jaunākais"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Nav datu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nav definēts"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "atcelt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "vai"
|
321
i18n/mk.po
Normal file
321
i18n/mk.po
Normal file
@ -0,0 +1,321 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016
|
||||||
|
#, 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: 2016-07-12 10:49+0000\n"
|
||||||
|
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Генерирање на линк/веб-адреса..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Последен месец"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Последна недела"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Следач на врска"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Најмногу кликнати"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Најново"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Користени скоро"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Статистики"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Вашите проследени врски"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "откажи"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "кликања"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "копирај"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "или"
|
322
i18n/mn.po
Normal file
322
i18n/mn.po
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Bayarkhuu Bataa, 2022
|
||||||
|
# hish, 2022
|
||||||
|
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||||
|
# Otgonbayar.A <gobi.mn@gmail.com>, 2022
|
||||||
|
# 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: 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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "даралтууд"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "улсууд"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "дарсан тоо"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Аян</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Дундаж</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Оригиналь URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Дамжуулсан URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Эх</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Хөтлөсөн Холбоос</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Нийт хугацаа"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Хуулсан"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Хуулах"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Код засах"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Холбоосыг үүсгэж байна..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Хөтлөгдсөн холбоосыг авах"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Дүрс"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Сүүлийн Сар"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Өнгөрсөн долоо хоног"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Холбоос хөтлөгч"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Хамгийн их дарагдсан"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Хамгийн шинэ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Сүүлд хэрэглэгдсэн"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Энэ хуудсыг <strong>богино холбоосоор</strong> хуваалцана <strong>шинжилгээний хөтлөгчийг</strong> агуулна."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Статистик"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Статистик"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Харуулах өгөгдөл алга"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "Энэ хөтлөгчид нь Google Analytics-г ашиглан дарал болон зочлогчдыг хөтлөдөг. Эсвэл Odoo дотор боломж болон холбогдох орлогыг хөтлөж тайлагнадаг."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Сүүлийн холбоосыг авах боломжгүй байна"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Тодорхойлогдоогүй"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Вебсайт зочлолтын статистик"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Танд ямар ч сүүлийн холбоосууд байхгүй байна"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Таны хөтлөсөн холбоосууд"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "цуцлах"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "даралтууд"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "хуулах"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "ж. Сонин, Нийгмийн Сүлжээ, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "ж. 6-р сарын урамшуулал, Өвлийн сонин, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "ж. Хайлтын систем, Веб хуудас, .."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "эсвэл"
|
320
i18n/nb.po
Normal file
320
i18n/nb.po
Normal file
@ -0,0 +1,320 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||||
|
# Jorunn D. Newth, 2022
|
||||||
|
# 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: 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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klikk"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "land"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klikk"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanje</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Original URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Omdirigert URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Kilde</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Sporet link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Noensinne"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopiert"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopier"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Genererer link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Få sporet link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Forrige måned"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Forrige uke"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Link-sporer"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Mest klikket på"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Nyeste"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Nylig brukt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr "Del denne siden med en <strong>kortlink</strong> som inneholder <strong>sporing</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistikk"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistikk"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Det er ingen data å vise"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "Sporingen kan brukes i Google Analytics for å følge klikk og besøkende, eller i Odoo-rapporter for å spore salgsmuligheter og tilknyttet omsetning."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Fikk ikke hentet nylige linker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Udefinert"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Du har ingen nylige linker."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Dine sporede linker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "avbryt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikk"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr "for eksempel nyhetsbrev, sosialt nettverk ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr "for eksempel junitilbud, vinternyhetsbrev ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr "for eksempel søkemotor, side på nettsted ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "eller"
|
355
i18n/nl.po
Normal file
355
i18n/nl.po
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klikken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "landen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klikken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campagne</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Kanaal</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Originele URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Verwijzende URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Bron</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Getraceerde link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Alle tijden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campagne <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Gekopieerd"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopieer"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Code bewerken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Link genereren..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Krijg getraceerde link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Icoon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Vorige maand"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Vorige week"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Link Tracker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kanaal <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Meest geklikt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Nieuwste"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Geen data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recentelijk gebruikt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Deel deze pagina met een <strong>verkorte link</strong> die "
|
||||||
|
"<strong>analytische trackers</strong> bevat."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Bron <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistieken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistieken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "De code kan niet leeg gelaten worden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Er zijn geen gegevens om te tonen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Deze code is al in gebruik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Deze trackers kunnen worden gebruikt in Google Analytics om klikken en "
|
||||||
|
"bezoekers te volgen, of in Odoo rapportages om verkoopkansen en omzet te "
|
||||||
|
"volgen."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Onmogelijk om recente links op te halen"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Niet gedefinieerd"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Website statistieken weergeven"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Je hebt geen recente links."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Je getraceerde links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "annuleren"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopiëren"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "bijv. InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "bijv. June Sale, Paris Roadshow, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "bijv. LinkedIn, Facebook, Leads, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "Bijv. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "of"
|
355
i18n/pl.po
Normal file
355
i18n/pl.po
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "kliknięć"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "kraje"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# kliknięć"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampania</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Średni</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Oryginalny URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>przekierowano URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Źródło</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Śledzony link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Cały czas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampania <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Skopiowano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Edytuj kod"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generowanie linku..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Uzyskaj śledzony link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Ostatni miesiąc"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Ostatni tydzień"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Śledzenie źródeł"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Średni <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Najczęściej klikane"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnowsze"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Brak danych"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Ostatnio używane"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Udostępnij tę stronę <strong>krótkim linkiem</strong> zawierającym "
|
||||||
|
"<strong>moduły do śledzenia statystyk</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Źródło <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statystyki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statystyki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Kod nie może pozostać pusty"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Brak danych do pokazania"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Kod jest już zajęty"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Te narzędzia śledzące mogą być używane w Google Analytics do śledzenia "
|
||||||
|
"kliknięć i odwiedzających lub w raportach Odoo w celu śledzenia okazji i "
|
||||||
|
"powiązanych przychodów."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "niemożliwe aby dostać niedawne linki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Niezdefiniowane"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Zobacz statystyki witryny"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nie masz żadnych najnowszych linków."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Twoje śledzone linki"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "anuluj"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "kliknięcia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "np. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "lub"
|
338
i18n/pt.po
Normal file
338
i18n/pt.po
Normal file
@ -0,0 +1,338 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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 (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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "cliques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "países"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campanha</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redirecionado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origem</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "A gerar a hiperligação..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ícone"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Mês Passado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Semana Passada"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastrear Ligações"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Mais Recente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Utilizado Recentemente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estatísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estatísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Indefinido"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "Cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ou"
|
356
i18n/pt_BR.po
Normal file
356
i18n/pt_BR.po
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Wil Odoo, 2023
|
||||||
|
# Layna Nascimento, 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: Layna Nascimento, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "cliques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "países"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "Nº de cliques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campanha</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Meio</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL redirecionado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Origem</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Link rastreado</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Todo o tempo"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campanha <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Editar código"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Gerando link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Obter link rastreado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ícone"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Último mês"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Semana passada"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Rastreio de Links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Meio <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Mais clicado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Mais recente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Sem dados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Usado recentemente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Compartilhe essa página com um <strong>link curto</strong> que inclui "
|
||||||
|
"<strong>rastreadores analíticos</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Origem <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Estatísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Estatísticas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "O código não pode ficar em branco"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Não há dados para exibir"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Este código já foi usado"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Esses rastreadores podem ser utilizados no Google Analytics para rastrear "
|
||||||
|
"cliques e visitantes, ou no Odoo em relatórios para rastrear oportunidades e"
|
||||||
|
" suas receitas correspondentes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Não é possível obter os links recentes"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Indefinido"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Estatísticas de visitas à página da web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Você não tem links recentes."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Seus links rastreados"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "cancelar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "cliques"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copiar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "ex., InMails, Ads, Social..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "ex., June Sale, Paris Roadshow..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "ex., LinkedIn, Facebook, Leads..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "ex: https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ou"
|
322
i18n/ro.po
Normal file
322
i18n/ro.po
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||||
|
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||||
|
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||||
|
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||||
|
# Martin Trigaux, 2022
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 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: 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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "clicuri"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "țări"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campanie</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Mediu</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL Original</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL Redirecționat</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Sursă:</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copie"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Editează codul"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Pictogramă"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Ultima lună"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Ultima săptămână"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Urmărire Link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Cele mai multe clicuri"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Cele mai noi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Nu există date"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Folosit Recent"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistica"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Status"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Codul nu poate fi lăsat gol"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Aici nu sunt date de afișat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Codul este deja luat"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Imposibil de obținut linkuri recente"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinit(ă)"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "anulare"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clicuri"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "copie"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "sau"
|
359
i18n/ru.po
Normal file
359
i18n/ru.po
Normal file
@ -0,0 +1,359 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Sergey Vilizhanin, 2023
|
||||||
|
# Максим Дронь <dronmax@gmail.com>, 2023
|
||||||
|
# Сергей Шебанин <sergey@shebanin.ru>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " клики"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " страны"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# кликов"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Кампания</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Средний</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Оригинальный URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Перенаправленный URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Источник</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Отслеживаемая ссылка</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "За все время"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Кампания <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Скопировано"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Копировать"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Редактировать код"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Генерация ссылок..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Получить отслеживаемую ссылку"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Иконка"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Последний месяц"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "На прошлой неделе"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Трекер ссылок"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Средний <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Больше всего кликов"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Новые"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Нет данных"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Недавно использованные"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Поделитесь этой страницей с помощью <strong>короткой ссылки</strong>, "
|
||||||
|
"включающей <strong>трекеры аналитики</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Источник <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Код нельзя оставлять пустым"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Нет никаких данных, свидетельствующих о том"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Этот код уже взят"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Эти трекеры можно использовать в Google Analytics для отслеживания кликов и "
|
||||||
|
"посетителей или в отчетах Odoo для отслеживания возможностей и "
|
||||||
|
"соответствующих доходов."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Невозможно получить последние ссылки"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Не определено"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Статистика посещения веб-страниц"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "У вас нет ни одной свежей ссылки."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Ваши отслеживаемые ссылки"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "отмена"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "клики"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "копировать"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "например, InMails, Ads, Social, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "например, июньская распродажа, Парижская выставка, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "например, LinkedIn, Facebook, Leads, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "например, https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ок"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "или"
|
340
i18n/sk.po
Normal file
340
i18n/sk.po
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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: 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampaň</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Médium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Originálne URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Presmerované URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Zdroj</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Sledovaný odkaz</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Všetok čas"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Skopírované"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kópia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generuje sa odkaz..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Získať trackovaný odkaz"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Minulý mesiac"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Posledný týždeň"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Sledovač linky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Najviac klikané"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnovšie"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Žiadne dáta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Nedávno použité"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Zdieľajte túto stránku s <strong>krátkym odkazom</strong> ktorý obsahuje "
|
||||||
|
"<strong>analytické trackery</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Štatistiky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Štatistiky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Nemožno získať najnovšie odkazy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinované"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Nemáte žiadne nedávne odkazy."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Vaše trackované odkazy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "zrušiť"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "kliky"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopírovať"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "alebo"
|
345
i18n/sl.po
Normal file
345
i18n/sl.po
Normal file
@ -0,0 +1,345 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Dejan Sraka <dejan.sraka@picolabs.si>, 2023
|
||||||
|
# Boris Kodelja <boris@hbs.si>, 2023
|
||||||
|
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||||
|
# matjaz k <matjaz@mentis.si>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Jasmina Macur <jasmina@hbs.si>, 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: Jasmina Macur <jasmina@hbs.si>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klikov"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klikov"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanija</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Vir:</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopirano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikona"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Prejšnji mesec"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Prejšnji teden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Sledilnik povezavam"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnovejše"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Ni podatkov"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Souporabi to stran s <strong>kratko povezavo</strong> , ki vključuje "
|
||||||
|
"<strong>analitične sledilnike</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistike"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistika"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Ni podatkov za prikaz"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedoločeno"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "preklic"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klikov"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "npr. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ali"
|
358
i18n/sr.po
Normal file
358
i18n/sr.po
Normal file
@ -0,0 +1,358 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2023
|
||||||
|
# Milan Bojovic <mbojovic@outlook.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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " clicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " countries"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# of clicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Campaign</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Medium</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Original URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Redirected URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Source</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Tracked Link</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "All Time"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopirano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copy"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Edit code"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Generating link..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Get tracked link"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikonica"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Prošli mesec"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Prošla sedmica"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Link Tracker"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Most Clicked"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Najnovije"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "No data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Recently Used"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistike"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Stats"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "The code cannot be left empty"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "There is no data to show"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "This code is already taken"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Nemoguće je dobiti linkove"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinisano"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Visit Webpage Statistics"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "You don't have any recent links."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Your tracked links"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "otkaži"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "clicks"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopiraj"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "e.g. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ili"
|
318
i18n/sr@latin.po
Normal file
318
i18n/sr@latin.po
Normal file
@ -0,0 +1,318 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux <mat@odoo.com>, 2017
|
||||||
|
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2022-09-20 09:02+0000\n"
|
||||||
|
"PO-Revision-Date: 2017-09-20 09:54+0000\n"
|
||||||
|
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||||
|
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||||
|
"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_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the context of your link. It might be an event you want to promote or a special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines the source from which your traffic will come from, Facebook or Twitter for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Nedefinisan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Newsletter, Social Network, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Promotion of June, Winter Newsletter, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. Search Engine, Website page, .."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. openerp-web
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "ili"
|
347
i18n/sv.po
Normal file
347
i18n/sv.po
Normal file
@ -0,0 +1,347 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||||
|
# Claes-Johan Dahlin, 2023
|
||||||
|
# Simon S, 2023
|
||||||
|
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||||
|
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Kim Asplund <kim.asplund@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: Kim Asplund <kim.asplund@gmail.com>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "klick"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "länder"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# klick"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanj</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Källa</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopierad"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopiera"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Ikon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Förra månaden"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Förra veckan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Länkspårning"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Senaste"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Ingen data"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Dessa spårare kan användas i Google Analytics för att spåra klick och "
|
||||||
|
"besökare, eller i Odoo-rapporter för att spåra möjligheter och relaterade "
|
||||||
|
"intäkter."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Det går inte att få de senaste länkarna"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Odefinierad"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Besök webbsidans statistik"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "avbryt"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "klick"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopiera"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "t.ex. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "eller"
|
357
i18n/th.po
Normal file
357
i18n/th.po
Normal file
@ -0,0 +1,357 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "คลิก"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "ประเทศ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# ของคลิก"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>แคมเปญ</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>วิธีที่เข้ามา</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>URL เดิม</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>เปลี่ยนเส้นทาง URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>แหล่งที่มา</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>ติดตามลิงก์</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "เวลาทั้งหมด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"แคมเปญ <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"บน\" role=\"รูปภาพ\" aria-label=\"ข้อมูลเคล็ดลับเครื่องมือ\" "
|
||||||
|
"title=\"กำหนดบริบทของลิงก์ของคุณ "
|
||||||
|
"อาจจะเป็นงานที่คุณต้องการโปรโมทหรือโปรโมชันพิเศษ\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "ทำสำเนาแล้ว"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "คัดลอก"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "แก้ไขโค้ด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "กำลังสร้างลิงก์..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "รับลิงก์ติดตาม"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "ไอคอน"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "เดือนที่แล้ว"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "สัปดาห์ที่แล้ว"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "ตัวติดตามลิงก์"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"วิธีที่เข้ามา <i class=\"fa fa-info-circle\" data-bs-"
|
||||||
|
"toggle=\"เคล็ดลับเครื่องมือ\" data-bs-placement=\"บน\" role=\"รูปภาพ\" aria-"
|
||||||
|
"label=\"ข้อมูลเคล็ดลับเครื่องมือ\" "
|
||||||
|
"title=\"กำหนดสื่อที่ใช้ในการแชร์ลิงก์ของคุณ อาจเป็นอีเมลหรือโฆษณา Facebook "
|
||||||
|
"เป็นต้น\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "คลิกมากที่สุด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "ใหม่ล่าสุด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "ไม่มีข้อมูล"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "ใช้ล่าสุด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"แชร์หน้านี้ด้วย<strong>ลิงก์สั้น</strong> ที่รวมตัว "
|
||||||
|
"<strong>ติดตามการวิเคราะห์</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"แหล่งที่มา <i class=\"fa fa-info-circle\" data-bs-"
|
||||||
|
"toggle=\"เคล็ดลับเครื่องมือ\" data-bs-placement=\"บน\" role=\"รูปภาพ\" aria-"
|
||||||
|
"label=\"ข้อมูลเคล็ดลับเครื่องมือ\" title=\"กำหนดแหล่งที่มาของการเข้าชมของคุณ"
|
||||||
|
" เช่น Facebook หรือ Twitter\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "สถิติ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "สแตท"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "ไม่สามารถเว้นโค้ดว่างได้"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "ไม่มีข้อมูลที่จะแสดง"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "โค้ดนี้ถูกใช้ไปแล้ว"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"เครื่องมือติดตามเหล่านั้นสามารถใช้ใน Google Analytics "
|
||||||
|
"เพื่อติดตามการคลิกและผู้เยี่ยมชม หรือใช้ในรายงาน Odoo "
|
||||||
|
"เพื่อติดตามโอกาสและรายได้ที่เกี่ยวข้อง"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "ไม่สามารถรับลิงก์ล่าสุดได้"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "ยังไม่กำหนด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "เยี่ยมชมสถิติหน้าเว็บ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "คุณไม่มีลิงก์ล่าสุด"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "คุณติดตามลิงก์"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "ยกเลิก"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "คลิก"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "ทำสำเนา"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "เช่น InMails, โฆษณา, โซเชียล, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "เช่น ลดราคาเดือนมิถุนายน โรดโชว์ปารีส ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "เช่น LinkedIn, Facebook, ลูกค้าเป้าหมาย, ..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "เช่น https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "โอเค"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "หรือ"
|
366
i18n/tr.po
Normal file
366
i18n/tr.po
Normal file
@ -0,0 +1,366 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2023
|
||||||
|
# Güven YILMAZ <guvenyilmaz@outlook.com.tr>, 2023
|
||||||
|
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2023
|
||||||
|
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||||
|
# abc Def <hdogan1974@gmail.com>, 2023
|
||||||
|
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||||
|
# Halil, 2023
|
||||||
|
# Saban Yildiz <sabany@projetgrup.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||||
|
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||||
|
# Umur Akın <umura@projetgrup.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: Umur Akın <umura@projetgrup.com>, 2023\n"
|
||||||
|
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: tr\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr " tıklamalar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr " ülkeler"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# Tıklanma sayısı"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Kampanya</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Orta</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Orijinal URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Yönlendirilmiş URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Kaynak</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong> Takip Edilen Bağlantı</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Tüm Zamanlar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kampanya <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Kopyalanan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopyala"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Kodu düzenle"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Bağlantı oluşturuluyor..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "İzlenen bağlantıyı al"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "İkon"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Geçen Ay"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Geçen Hafta"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Bağlantı İzleyici"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Orta <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "En Fazla Tıklanan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "En Yeni"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Veri yok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Şuanda Kullanılan"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Bu sayfayı <strong>analitik izleyicileri </strong> içeren <strong>kısa bir "
|
||||||
|
"bağlantıyla paylaşın</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Kaynak <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "İstatistikler"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "İstatistikler"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Kod boş bırakılamaz"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Gösterilecek veri yok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Bu kod zaten alınmış"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Bu izleyiciler, tıklamaları ve ziyaretçileri izlemek için Google "
|
||||||
|
"Analytics'te veya fırsatları ve ilgili gelirleri izlemek için Odoo "
|
||||||
|
"raporlarında kullanılabilir."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Mevcut linkler alınamadı"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Tanımlanmamış"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Web Sayfası İstatistiklerini Ziyaret Edin"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Yakın zamanda hiç bağlantınız yok."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "İzlenen bağlantılarınız"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "iptal"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "tıklamalar"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "kopya"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "örn. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "tamam"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "veya"
|
356
i18n/uk.po
Normal file
356
i18n/uk.po
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "натискання"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "країни"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "к-сть натискань"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Кампанія</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Канал</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Початкова URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>Вторинна URL</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Джерело</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Відстеження посилання</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Увесь час"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Кампанія <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Скопійовано"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Копія"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Редагувати код"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Створення посилання..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Отримати відстежене посилання"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Значок"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Останній місяць"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Останній тиждень"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Відстеження посилань"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Медіа <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Найпопулярніші"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Найновіші"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Немає даних"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Недавно використані"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Поділіться цією сторінкою з <strong>коротким посиланням</strong>, яке "
|
||||||
|
"включає <strong>відстеженя аналітики</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"Джерело <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Статистика"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Не можна залишити код пустим"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Немає даних для показу"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Цей код вже використано"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Ці відстеження можна використовувати в Google Analytics для відстеження "
|
||||||
|
"кліків і відвідувачів, а також у звітах Odoo, щоб відстежувати можливості та"
|
||||||
|
" пов'язані з ними доходи."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Не вдається отримати останні посилання"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Невизначений"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Статистика відвідування веб-сторінок"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "У вас немає останніх посилань."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Ваші відстежені посилання"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "закрити"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "посилання"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "скопіювати"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "напр., https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "ok"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "або"
|
343
i18n/vi.po
Normal file
343
i18n/vi.po
Normal file
@ -0,0 +1,343 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "bấm chuột"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "quốc gia"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "Số lần bấm chuột"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>Chiến dịch</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>Trung bình</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>Liên kết ban đầu</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>URL được chuyển hướng</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>Nguồn</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>Liên kết theo dõi</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "Tất cả thời gian"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Đã sao chép"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Sao chép"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "Sửa mã"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "Tạo liên kết..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "Lấy liên kết theo dõi"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "Biểu tượng"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "Tháng trước"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "Tuần trước"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "Trình theo dõi Liên kết"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "Được bấm chuột nhiều nhất"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "Mới nhất"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "Không có dữ liệu"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "Được sử dụng gần đây"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
"Chia sẽ trang này với một <strong>liên kết rút gọn</strong> bao gồm "
|
||||||
|
"<strong>trình theo dõi phân tích</strong>."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "Thống kê"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "Thống kê"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "Mã không thể bỏ trống"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "Ở đây không có dữ liệu để hiển thị"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "Mã này đã được sử dụng"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
"Những trình theo dõi đó có thể được sử dụng trong Google Analytics để theo "
|
||||||
|
"dõi số nhấp chuột và khách truy cập hoặc trong báo cáo của Hệ thống để theo "
|
||||||
|
"dõi các cơ hội và doanh thu có liên quan."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "Không thể tải các liên kết gần đây"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "Không xác định"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "Đến thống kê trang web"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "Bạn không có bất kỳ liên kết nào gần đây."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "Liên kêt theo dõi của bạn"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "hủy bỏ"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "bấm chuột"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "sao chép"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "Ví dụ: https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "đồng ý"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "hay"
|
334
i18n/website_links.pot
Normal file
334
i18n/website_links.pot
Normal file
@ -0,0 +1,334 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr ""
|
352
i18n/zh_CN.po
Normal file
352
i18n/zh_CN.po
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Wil Odoo, 2023
|
||||||
|
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||||
|
# 湘子 南 <1360857908@qq.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: 湘子 南 <1360857908@qq.com>, 2024\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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "点击"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "国家"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "# 点击"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>活动</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>中等</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>原始网址</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>重新定向网址</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>来源</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>跟踪链</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "一直"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"营销<i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "已复制"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "复制"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "编辑代码"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "生成链接..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "获取跟踪链"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "图标"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "上个月"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "上周"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "跟踪链"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"媒介<i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "点击最多"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "最新"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "无数据"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "最近使用"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr "使用包含<strong>分析跟踪器</strong>的<strong>短链接</strong> 来分享这个网页。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"来源<i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "统计信息"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "统计数据"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "密码不能为空"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "没有数据显示"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "该密码已被使用"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "这些跟踪器可以被谷歌分析去跟踪点击和访问,或者在ERP 的报表里跟踪机会和相关收益."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "网址"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "无法获取最近链接"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "未定义的"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "访问网页统计"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "您没有任何最近的链接。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "您跟踪的链接"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "取消"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "点击"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "复制"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "例如,InMails、广告、社交......"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "例如,六月特卖会、巴黎路演......"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "例如 LinkedIn、Facebook、Leads..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "e.g. https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "确定"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "或"
|
347
i18n/zh_TW.po
Normal file
347
i18n/zh_TW.po
Normal file
@ -0,0 +1,347 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_links
|
||||||
|
#
|
||||||
|
# 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_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " clicks"
|
||||||
|
msgstr "點擊次數"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid " countries"
|
||||||
|
msgstr "國家/地區"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "# of clicks"
|
||||||
|
msgstr "點擊次數"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Campaign</strong>"
|
||||||
|
msgstr "<strong>宣傳活動</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Medium</strong>"
|
||||||
|
msgstr "<strong>媒介</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Original URL</strong>"
|
||||||
|
msgstr "<strong>原始網址</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Redirected URL</strong>"
|
||||||
|
msgstr "<strong>重新定向網址</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Source</strong>"
|
||||||
|
msgstr "<strong>來源</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "<strong>Tracked Link</strong>"
|
||||||
|
msgstr "<strong>追蹤連結</strong>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "All Time"
|
||||||
|
msgstr "持續"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Campaign <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the context of your link. It might be an event you want to promote or a "
|
||||||
|
"special promotion.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"宣傳活動 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"工具提示資訊\" "
|
||||||
|
"title=\"界定連結的背景資料。可以是你想宣傳的某個活動,或特別的促銷 / 推廣計劃。\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "複製"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "複製"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "Edit code"
|
||||||
|
msgstr "編輯代碼"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Generating link..."
|
||||||
|
msgstr "產生連結中..."
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Get tracked link"
|
||||||
|
msgstr "獲取追蹤連結"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "圖示"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Month"
|
||||||
|
msgstr "上月"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Last Week"
|
||||||
|
msgstr "上周"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model:ir.model,name:website_links.model_link_tracker
|
||||||
|
#: model:ir.ui.menu,name:website_links.menu_link_tracker
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "Link Tracker"
|
||||||
|
msgstr "連結追蹤"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Medium <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the medium used to share your link. It might be an email, or a Facebook Ads "
|
||||||
|
"for instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"媒介 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"工具提示資訊\" "
|
||||||
|
"title=\"界定用作分享連結的媒介。例如,可以是一封電郵,或 Facebook 廣告。\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Most Clicked"
|
||||||
|
msgstr "點選最多"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "最新"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "No data"
|
||||||
|
msgstr "沒有資料"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Recently Used"
|
||||||
|
msgstr "最近使用"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Share this page with a <strong>short link</strong> that includes "
|
||||||
|
"<strong>analytics trackers</strong>."
|
||||||
|
msgstr "使用包含<strong>分析追蹤器</strong>的<strong>短網址</strong> 來分享這個頁面。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Source <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"Tooltip info\" title=\"Defines "
|
||||||
|
"the source from which your traffic will come from, Facebook or Twitter for "
|
||||||
|
"instance.\"/>"
|
||||||
|
msgstr ""
|
||||||
|
"來源 <i class=\"fa fa-info-circle\" data-bs-toggle=\"tooltip\" data-bs-"
|
||||||
|
"placement=\"top\" role=\"img\" aria-label=\"工具提示資訊\" title=\"界定瀏覽流量的來源,例如 "
|
||||||
|
"Facebook 或 Twitter。\"/>"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.link_tracker_view_tree
|
||||||
|
msgid "Statistics"
|
||||||
|
msgstr "統計資訊"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr "統計資料"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "The code cannot be left empty"
|
||||||
|
msgstr "代碼不可空白"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "There is no data to show"
|
||||||
|
msgstr "沒有顯示的資料"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_code_editor.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "This code is already taken"
|
||||||
|
msgstr "此代碼已被使用"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid ""
|
||||||
|
"Those trackers can be used in Google Analytics to track clicks and visitors,"
|
||||||
|
" or in Odoo reports to track opportunities and related revenues."
|
||||||
|
msgstr "這些追蹤器可以被Google分析去追蹤點選和訪問,或者在odoo的報表裡追蹤機會和相關收益。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "URL"
|
||||||
|
msgstr "網址"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Unable to get recent links"
|
||||||
|
msgstr "無法獲取最近連結"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links_charts.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Undefined"
|
||||||
|
msgstr "未定義的"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-python
|
||||||
|
#: code:addons/website_links/models/link_tracker.py:0
|
||||||
|
#, python-format
|
||||||
|
msgid "Visit Webpage Statistics"
|
||||||
|
msgstr "查看網頁統計資訊"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "You don't have any recent links."
|
||||||
|
msgstr "您沒有任何最近的連結。"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "Your tracked links"
|
||||||
|
msgstr "您追蹤的連結"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "cancel"
|
||||||
|
msgstr "取消"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#, python-format
|
||||||
|
msgid "clicks"
|
||||||
|
msgstr "點擊次數"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
msgid "copy"
|
||||||
|
msgstr "複製"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. InMails, Ads, Social, ..."
|
||||||
|
msgstr "例:InMail、廣告、社交網絡⋯"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. June Sale, Paris Roadshow, ..."
|
||||||
|
msgstr "例:六月大減價、巴黎路演⋯"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/js/website_links.js:0
|
||||||
|
#, python-format
|
||||||
|
msgid "e.g. LinkedIn, Facebook, Leads, ..."
|
||||||
|
msgstr "例:LinkedIn、Facebook、潛在客戶⋯"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.create_shorten_url
|
||||||
|
msgid "e.g. https://www.odoo.com/contactus"
|
||||||
|
msgstr "例:https://www.odoo.com/contactus"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "ok"
|
||||||
|
msgstr "確定"
|
||||||
|
|
||||||
|
#. module: website_links
|
||||||
|
#. odoo-javascript
|
||||||
|
#: code:addons/website_links/static/src/xml/recent_link.xml:0
|
||||||
|
#: model_terms:ir.ui.view,arch_db:website_links.graphs
|
||||||
|
#, python-format
|
||||||
|
msgid "or"
|
||||||
|
msgstr "或"
|
3
models/__init__.py
Normal file
3
models/__init__.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import link_tracker
|
23
models/link_tracker.py
Normal file
23
models/link_tracker.py
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from odoo import models, _
|
||||||
|
|
||||||
|
from werkzeug import urls
|
||||||
|
|
||||||
|
|
||||||
|
class LinkTracker(models.Model):
|
||||||
|
_inherit = ['link.tracker']
|
||||||
|
|
||||||
|
def action_visit_page_statistics(self):
|
||||||
|
return {
|
||||||
|
'name': _("Visit Webpage Statistics"),
|
||||||
|
'type': 'ir.actions.act_url',
|
||||||
|
'url': '%s+' % (self.short_url),
|
||||||
|
'target': 'new',
|
||||||
|
}
|
||||||
|
|
||||||
|
def _compute_short_url_host(self):
|
||||||
|
for tracker in self:
|
||||||
|
base_url = self.env['website'].get_current_website().get_base_url()
|
||||||
|
tracker.short_url_host = urls.url_join(base_url, '/r/')
|
4
security/ir.model.access.csv
Normal file
4
security/ir.model.access.csv
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||||
|
access_link_tracker_manager,link.tracker,link_tracker.model_link_tracker,website.group_website_designer,1,1,1,1
|
||||||
|
access_link_tracker_code_manager,link.tracker.code,link_tracker.model_link_tracker_code,website.group_website_designer,1,1,1,1
|
||||||
|
access_link_tracker_click_manager,link.tracker.click,link_tracker.model_link_tracker_click,website.group_website_designer,1,1,1,1
|
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 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="M.983 23.814a3.356 3.356 0 0 1 0-4.746L11.068 8.983a3.356 3.356 0 0 1 4.746 0l17.203 17.203a3.356 3.356 0 0 1 0 4.746L22.932 41.017a3.356 3.356 0 0 1-4.746 0L.983 23.814Z" fill="#FC868B"/><path d="M16.983 19.068a3.356 3.356 0 0 0 0 4.746l4.53 4.53 7.063-6.598 4.441 4.44a3.356 3.356 0 0 1 0 4.747L28.56 35.39l5.627 5.627a3.356 3.356 0 0 0 4.746 0l10.085-10.085a3.356 3.356 0 0 0 0-4.746L31.814 8.983a3.356 3.356 0 0 0-4.746 0L16.983 19.068Z" fill="#985184"/></svg>
|
After Width: | Height: | Size: 557 B |
BIN
static/img/default_favicon.png
Normal file
BIN
static/img/default_favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 492 B |
54
static/src/css/website_links.css
Normal file
54
static/src/css/website_links.css
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
.no-link-style {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.required-form-control {
|
||||||
|
background-color: #CECDFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filters li a,
|
||||||
|
#filters li.active a,
|
||||||
|
#filters li.active a.active,
|
||||||
|
#filters li.active a:hover,
|
||||||
|
#filters li.active a:focus,
|
||||||
|
#filters li a:hover {
|
||||||
|
padding: 0px 5px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-color: transparent;
|
||||||
|
border-right: 1px solid #999;
|
||||||
|
padding-bottom: 0;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filters li.active a {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filters li:last-child a,
|
||||||
|
#filters li:last-child a:hover,
|
||||||
|
#filters li:last-child a:focus {
|
||||||
|
border-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tabs-inline {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#o_website_links_recent_links {
|
||||||
|
min-height:30em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o_website_links_code_error {
|
||||||
|
display:none;
|
||||||
|
color:red;
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.truncate_text {
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
526
static/src/js/website_links.js
Normal file
526
static/src/js/website_links.js
Normal file
@ -0,0 +1,526 @@
|
|||||||
|
/** @odoo-module **/
|
||||||
|
|
||||||
|
import { _t } from "@web/core/l10n/translation";
|
||||||
|
import publicWidget from "@web/legacy/js/public/public_widget";
|
||||||
|
import { browser } from "@web/core/browser/browser";
|
||||||
|
|
||||||
|
var SelectBox = publicWidget.Widget.extend({
|
||||||
|
events: {
|
||||||
|
'change': '_onChange',
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @param {Object} parent
|
||||||
|
* @param {Object} obj
|
||||||
|
* @param {String} placeholder
|
||||||
|
*/
|
||||||
|
init: function (parent, obj, placeholder) {
|
||||||
|
this._super.apply(this, arguments);
|
||||||
|
this.obj = obj;
|
||||||
|
this.placeholder = placeholder;
|
||||||
|
|
||||||
|
this.orm = this.bindService("orm");
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
willStart: function () {
|
||||||
|
var self = this;
|
||||||
|
var defs = [this._super.apply(this, arguments)];
|
||||||
|
defs.push(this.orm.searchRead(this.obj, [], ["id", "name"]).then(function (result) {
|
||||||
|
self.objects = result.map((val) => {
|
||||||
|
return {id: val.id, text: val.name};
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
return Promise.all(defs);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
start: function () {
|
||||||
|
var self = this;
|
||||||
|
this.$el.select2({
|
||||||
|
placeholder: self.placeholder,
|
||||||
|
allowClear: true,
|
||||||
|
createSearchChoice: function (term) {
|
||||||
|
if (self._objectExists(term)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return { id: term, text: `Create '${term}'` };
|
||||||
|
},
|
||||||
|
createSearchChoicePosition: 'bottom',
|
||||||
|
multiple: false,
|
||||||
|
data: self.objects,
|
||||||
|
minimumInputLength: self.objects.length > 100 ? 3 : 0,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Private
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {String} query
|
||||||
|
*/
|
||||||
|
_objectExists: function (query) {
|
||||||
|
return this.objects.find(val => val.text.toLowerCase() === query.toLowerCase()) !== undefined;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {String} name
|
||||||
|
*/
|
||||||
|
_createObject: function (name) {
|
||||||
|
var self = this;
|
||||||
|
var args = {
|
||||||
|
name: name
|
||||||
|
};
|
||||||
|
if (this.obj === "utm.campaign"){
|
||||||
|
args.is_auto_campaign = true;
|
||||||
|
}
|
||||||
|
return this.orm.create(this.obj, [args]).then(function (record) {
|
||||||
|
self.$el.attr('value', record);
|
||||||
|
self.objects.push({'id': record, 'text': name});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Handlers
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Object} ev
|
||||||
|
*/
|
||||||
|
_onChange: function (ev) {
|
||||||
|
if (!ev.added || typeof ev.added.id !== "string") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._createObject(ev.added.id);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var RecentLinkBox = publicWidget.Widget.extend({
|
||||||
|
template: 'website_links.RecentLink',
|
||||||
|
events: {
|
||||||
|
'click .btn_shorten_url_clipboard': '_toggleCopyButton',
|
||||||
|
'click .o_website_links_edit_code': '_editCode',
|
||||||
|
'click .o_website_links_ok_edit': '_onLinksOkClick',
|
||||||
|
'click .o_website_links_cancel_edit': '_onLinksCancelClick',
|
||||||
|
'submit #o_website_links_edit_code_form': '_onSubmitCode',
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @param {Object} parent
|
||||||
|
* @param {Object} obj
|
||||||
|
*/
|
||||||
|
init: function (parent, obj) {
|
||||||
|
this._super.apply(this, arguments);
|
||||||
|
this.link_obj = obj;
|
||||||
|
this.animating_copy = false;
|
||||||
|
this.rpc = this.bindService("rpc");
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Private
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_toggleCopyButton: async function () {
|
||||||
|
await browser.navigator.clipboard.writeText(this.link_obj.short_url);
|
||||||
|
|
||||||
|
if (this.animating_copy) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
this.animating_copy = true;
|
||||||
|
var top = this.$('.o_website_links_short_url').position().top;
|
||||||
|
this.$('.o_website_links_short_url').clone()
|
||||||
|
.css('position', 'absolute')
|
||||||
|
.css('left', 15)
|
||||||
|
.css('top', top - 2)
|
||||||
|
.css('z-index', 2)
|
||||||
|
.removeClass('o_website_links_short_url')
|
||||||
|
.addClass('animated-link')
|
||||||
|
.insertAfter(this.$('.o_website_links_short_url'))
|
||||||
|
.animate({
|
||||||
|
opacity: 0,
|
||||||
|
top: '-=20',
|
||||||
|
}, 500, function () {
|
||||||
|
self.$('.animated-link').remove();
|
||||||
|
self.animating_copy = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {String} message
|
||||||
|
*/
|
||||||
|
_notification: function (message) {
|
||||||
|
this.$('.notification').append('<strong>' + message + '</strong>');
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_editCode: function () {
|
||||||
|
var initCode = this.$('#o_website_links_code').html();
|
||||||
|
this.$('#o_website_links_code').html('<form style="display:inline;" id="o_website_links_edit_code_form"><input type="hidden" id="init_code" value="' + initCode + '"/><input type="text" id="new_code" value="' + initCode + '"/></form>');
|
||||||
|
this.$('.o_website_links_edit_code').hide();
|
||||||
|
this.$('.copy-to-clipboard').hide();
|
||||||
|
this.$('.o_website_links_edit_tools').show();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_cancelEdit: function () {
|
||||||
|
this.$('.o_website_links_edit_code').show();
|
||||||
|
this.$('.copy-to-clipboard').show();
|
||||||
|
this.$('.o_website_links_edit_tools').hide();
|
||||||
|
this.$('.o_website_links_code_error').hide();
|
||||||
|
|
||||||
|
var oldCode = this.$('#o_website_links_edit_code_form #init_code').val();
|
||||||
|
this.$('#o_website_links_code').html(oldCode);
|
||||||
|
|
||||||
|
this.$('#code-error').remove();
|
||||||
|
this.$('#o_website_links_code form').remove();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_submitCode: function () {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
var initCode = this.$('#o_website_links_edit_code_form #init_code').val();
|
||||||
|
var newCode = this.$('#o_website_links_edit_code_form #new_code').val();
|
||||||
|
|
||||||
|
if (newCode === '') {
|
||||||
|
self.$('.o_website_links_code_error').html(_t("The code cannot be left empty"));
|
||||||
|
self.$('.o_website_links_code_error').show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function showNewCode(newCode) {
|
||||||
|
self.$('.o_website_links_code_error').html('');
|
||||||
|
self.$('.o_website_links_code_error').hide();
|
||||||
|
|
||||||
|
self.$('#o_website_links_code form').remove();
|
||||||
|
|
||||||
|
// Show new code
|
||||||
|
var host = self.$('#o_website_links_host').html();
|
||||||
|
self.$('#o_website_links_code').html(newCode);
|
||||||
|
|
||||||
|
// Update button copy to clipboard
|
||||||
|
self.$('.btn_shorten_url_clipboard').attr('data-clipboard-text', host + newCode);
|
||||||
|
|
||||||
|
// Show action again
|
||||||
|
self.$('.o_website_links_edit_code').show();
|
||||||
|
self.$('.copy-to-clipboard').show();
|
||||||
|
self.$('.o_website_links_edit_tools').hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (initCode === newCode) {
|
||||||
|
showNewCode(newCode);
|
||||||
|
} else {
|
||||||
|
this.rpc('/website_links/add_code', {
|
||||||
|
init_code: initCode,
|
||||||
|
new_code: newCode,
|
||||||
|
}).then(function (result) {
|
||||||
|
showNewCode(result[0].code);
|
||||||
|
}, function () {
|
||||||
|
self.$('.o_website_links_code_error').show();
|
||||||
|
self.$('.o_website_links_code_error').html(_t("This code is already taken"));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Handlers
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onLinksOkClick: function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
this._submitCode();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onLinksCancelClick: function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
this._cancelEdit();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onSubmitCode: function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
this._submitCode();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var RecentLinks = publicWidget.Widget.extend({
|
||||||
|
init() {
|
||||||
|
this._super(...arguments);
|
||||||
|
this.rpc = this.bindService("rpc");
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Private
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
getRecentLinks: function (filter) {
|
||||||
|
var self = this;
|
||||||
|
return this.rpc('/website_links/recent_links', {
|
||||||
|
filter: filter,
|
||||||
|
limit: 20,
|
||||||
|
}).then(function (result) {
|
||||||
|
result.reverse().forEach((link) => {
|
||||||
|
self._addLink(link);
|
||||||
|
});
|
||||||
|
self._updateNotification();
|
||||||
|
}, function () {
|
||||||
|
var message = _t("Unable to get recent links");
|
||||||
|
self.$el.append('<div class="alert alert-danger">' + message + '</div>');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_addLink: function (link) {
|
||||||
|
var nbLinks = this.getChildren().length;
|
||||||
|
var recentLinkBox = new RecentLinkBox(this, link);
|
||||||
|
recentLinkBox.prependTo(this.$el);
|
||||||
|
$('.link-tooltip').tooltip();
|
||||||
|
|
||||||
|
if (nbLinks === 0) {
|
||||||
|
this._updateNotification();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
removeLinks: function () {
|
||||||
|
this.getChildren().forEach((child) => {
|
||||||
|
child.destroy();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_updateNotification: function () {
|
||||||
|
if (this.getChildren().length === 0) {
|
||||||
|
var message = _t("You don't have any recent links.");
|
||||||
|
$('.o_website_links_recent_links_notification').html('<div class="alert alert-info">' + message + '</div>');
|
||||||
|
} else {
|
||||||
|
$('.o_website_links_recent_links_notification').empty();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
publicWidget.registry.websiteLinks = publicWidget.Widget.extend({
|
||||||
|
selector: '.o_website_links_create_tracked_url',
|
||||||
|
events: {
|
||||||
|
'click #filter-newest-links': '_onFilterNewestLinksClick',
|
||||||
|
'click #filter-most-clicked-links': '_onFilterMostClickedLinksClick',
|
||||||
|
'click #filter-recently-used-links': '_onFilterRecentlyUsedLinksClick',
|
||||||
|
'click #generated_tracked_link a': '_onGeneratedTrackedLinkClick',
|
||||||
|
'keyup #url': '_onUrlKeyUp',
|
||||||
|
'click #btn_shorten_url': '_onShortenUrlButtonClick',
|
||||||
|
'submit #o_website_links_link_tracker_form': '_onFormSubmit',
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this._super(...arguments);
|
||||||
|
this.rpc = this.bindService("rpc");
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
start: async function () {
|
||||||
|
var defs = [this._super.apply(this, arguments)];
|
||||||
|
|
||||||
|
// UTMS selects widgets
|
||||||
|
const campaignSelect = new SelectBox(this, "utm.campaign", _t("e.g. June Sale, Paris Roadshow, ..."));
|
||||||
|
defs.push(campaignSelect.attachTo($('#campaign-select')));
|
||||||
|
|
||||||
|
const mediumSelect = new SelectBox(this, "utm.medium", _t("e.g. InMails, Ads, Social, ..."));
|
||||||
|
defs.push(mediumSelect.attachTo($('#channel-select')));
|
||||||
|
|
||||||
|
const sourceSelect = new SelectBox(this, "utm.source", _t("e.g. LinkedIn, Facebook, Leads, ..."));
|
||||||
|
defs.push(sourceSelect.attachTo($('#source-select')));
|
||||||
|
|
||||||
|
// Recent Links Widgets
|
||||||
|
this.recentLinks = new RecentLinks(this);
|
||||||
|
defs.push(this.recentLinks.appendTo($('#o_website_links_recent_links')));
|
||||||
|
this.recentLinks.getRecentLinks('newest');
|
||||||
|
|
||||||
|
this.url_copy_animating = false;
|
||||||
|
|
||||||
|
$('[data-bs-toggle="tooltip"]').tooltip();
|
||||||
|
|
||||||
|
return Promise.all(defs);
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Handlers
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onFilterNewestLinksClick: function () {
|
||||||
|
this.recentLinks.removeLinks();
|
||||||
|
this.recentLinks.getRecentLinks('newest');
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onFilterMostClickedLinksClick: function () {
|
||||||
|
this.recentLinks.removeLinks();
|
||||||
|
this.recentLinks.getRecentLinks('most-clicked');
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onFilterRecentlyUsedLinksClick: function () {
|
||||||
|
this.recentLinks.removeLinks();
|
||||||
|
this.recentLinks.getRecentLinks('recently-used');
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onGeneratedTrackedLinkClick: function () {
|
||||||
|
$('#generated_tracked_link a').text(_t("Copied")).removeClass('btn-primary').addClass('btn-success');
|
||||||
|
setTimeout(function () {
|
||||||
|
$('#generated_tracked_link a').text(_t("Copy")).removeClass('btn-success').addClass('btn-primary');
|
||||||
|
}, 5000);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onUrlKeyUp: function (ev) {
|
||||||
|
if (!$('#btn_shorten_url').hasClass('btn-copy') || ev.key === "Enter") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#btn_shorten_url').removeClass('btn-success btn-copy').addClass('btn-primary').html('Get tracked link');
|
||||||
|
$('#generated_tracked_link').css('display', 'none');
|
||||||
|
$('.o_website_links_utm_forms').show();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onShortenUrlButtonClick: async function (ev) {
|
||||||
|
const textValue = ev.target.dataset["clipboard-text"];
|
||||||
|
await browser.navigator.clipboard.writeText(textValue);
|
||||||
|
|
||||||
|
if (!$('#btn_shorten_url').hasClass('btn-copy') || this.url_copy_animating) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
this.url_copy_animating = true;
|
||||||
|
$('#generated_tracked_link').clone()
|
||||||
|
.css('position', 'absolute')
|
||||||
|
.css('left', '78px')
|
||||||
|
.css('bottom', '8px')
|
||||||
|
.css('z-index', 2)
|
||||||
|
.removeClass('#generated_tracked_link')
|
||||||
|
.addClass('url-animated-link')
|
||||||
|
.appendTo($('#generated_tracked_link'))
|
||||||
|
.animate({
|
||||||
|
opacity: 0,
|
||||||
|
bottom: '+=20',
|
||||||
|
}, 500, function () {
|
||||||
|
$('.url-animated-link').remove();
|
||||||
|
self.url_copy_animating = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Add the RecentLinkBox widget and send the form when the user generate the link
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onFormSubmit: function (ev) {
|
||||||
|
var self = this;
|
||||||
|
ev.preventDefault();
|
||||||
|
|
||||||
|
if ($('#btn_shorten_url').hasClass('btn-copy')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ev.stopPropagation();
|
||||||
|
|
||||||
|
// Get URL and UTMs
|
||||||
|
var campaignID = $('#campaign-select').attr('value');
|
||||||
|
var mediumID = $('#channel-select').attr('value');
|
||||||
|
var sourceID = $('#source-select').attr('value');
|
||||||
|
|
||||||
|
var params = {};
|
||||||
|
params.url = $('#url').val();
|
||||||
|
if (campaignID !== '') {
|
||||||
|
params.campaign_id = parseInt(campaignID);
|
||||||
|
}
|
||||||
|
if (mediumID !== '') {
|
||||||
|
params.medium_id = parseInt(mediumID);
|
||||||
|
}
|
||||||
|
if (sourceID !== '') {
|
||||||
|
params.source_id = parseInt(sourceID);
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#btn_shorten_url').text(_t("Generating link..."));
|
||||||
|
|
||||||
|
this.rpc('/website_links/new', params).then(function (result) {
|
||||||
|
if ('error' in result) {
|
||||||
|
// Handle errors
|
||||||
|
if (result.error === 'empty_url') {
|
||||||
|
$('.notification').html('<div class="alert alert-danger">The URL is empty.</div>');
|
||||||
|
} else if (result.error === 'url_not_found') {
|
||||||
|
$('.notification').html('<div class="alert alert-danger">URL not found (404)</div>');
|
||||||
|
} else {
|
||||||
|
$('.notification').html('<div class="alert alert-danger">An error occur while trying to generate your link. Try again later.</div>');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Link generated, clean the form and show the link
|
||||||
|
var link = result[0];
|
||||||
|
|
||||||
|
$('#btn_shorten_url').removeClass('btn-primary').addClass('btn-success btn-copy').html('Copy');
|
||||||
|
$('#btn_shorten_url').attr('data-clipboard-text', link.short_url);
|
||||||
|
|
||||||
|
$('.notification').html('');
|
||||||
|
$('#generated_tracked_link').html(link.short_url);
|
||||||
|
$('#generated_tracked_link').css('display', 'inline');
|
||||||
|
|
||||||
|
self.recentLinks._addLink(link);
|
||||||
|
|
||||||
|
// Clean URL and UTM selects
|
||||||
|
$('#campaign-select').select2('val', '');
|
||||||
|
$('#channel-select').select2('val', '');
|
||||||
|
$('#source-select').select2('val', '');
|
||||||
|
|
||||||
|
$('.o_website_links_utm_forms').hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
SelectBox: SelectBox,
|
||||||
|
RecentLinkBox: RecentLinkBox,
|
||||||
|
RecentLinks: RecentLinks,
|
||||||
|
};
|
323
static/src/js/website_links_charts.js
Normal file
323
static/src/js/website_links_charts.js
Normal file
@ -0,0 +1,323 @@
|
|||||||
|
/** @odoo-module **/
|
||||||
|
|
||||||
|
import { loadBundle } from "@web/core/assets";
|
||||||
|
import { _t } from "@web/core/l10n/translation";
|
||||||
|
import publicWidget from "@web/legacy/js/public/public_widget";
|
||||||
|
import { browser } from "@web/core/browser/browser";
|
||||||
|
const { DateTime } = luxon;
|
||||||
|
|
||||||
|
var BarChart = publicWidget.Widget.extend({
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @param {Object} parent
|
||||||
|
* @param {Object} beginDate
|
||||||
|
* @param {Object} endDate
|
||||||
|
* @param {Object} dates
|
||||||
|
*/
|
||||||
|
init: function (parent, beginDate, endDate, dates) {
|
||||||
|
this._super.apply(this, arguments);
|
||||||
|
this.beginDate = beginDate.startOf("day");
|
||||||
|
this.endDate = endDate.startOf("day");
|
||||||
|
if (this.beginDate.toISO() === this.endDate.toISO()) {
|
||||||
|
this.endDate = this.endDate.plus({ days: 1 });
|
||||||
|
}
|
||||||
|
this.number_of_days = this.endDate.diff(this.beginDate).as("days");
|
||||||
|
this.dates = dates;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
start: function () {
|
||||||
|
// Fill data for each day (with 0 click for days without data)
|
||||||
|
var clicksArray = [];
|
||||||
|
for (var i = 0; i <= this.number_of_days; i++) {
|
||||||
|
var dateKey = this.beginDate.toFormat("yyyy-MM-dd");
|
||||||
|
clicksArray.push([dateKey, (dateKey in this.dates) ? this.dates[dateKey] : 0]);
|
||||||
|
this.beginDate = this.beginDate.plus({ days: 1 });
|
||||||
|
}
|
||||||
|
|
||||||
|
var nbClicks = 0;
|
||||||
|
var data = [];
|
||||||
|
var labels = [];
|
||||||
|
clicksArray.forEach(function (pt) {
|
||||||
|
labels.push(pt[0]);
|
||||||
|
nbClicks += pt[1];
|
||||||
|
data.push(pt[1]);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.$('.title').html(nbClicks + _t(' clicks'));
|
||||||
|
|
||||||
|
var config = {
|
||||||
|
type: 'line',
|
||||||
|
data: {
|
||||||
|
labels: labels,
|
||||||
|
datasets: [{
|
||||||
|
data: data,
|
||||||
|
fill: 'start',
|
||||||
|
label: _t('# of clicks'),
|
||||||
|
backgroundColor: '#ebf2f7',
|
||||||
|
borderColor: '#6aa1ca',
|
||||||
|
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
var canvas = this.$('canvas')[0];
|
||||||
|
var context = canvas.getContext('2d');
|
||||||
|
new Chart(context, config);
|
||||||
|
},
|
||||||
|
willStart: async function () {
|
||||||
|
await loadBundle("web.chartjs_lib");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var PieChart = publicWidget.Widget.extend({
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
* @param {Object} parent
|
||||||
|
* @param {Object} data
|
||||||
|
*/
|
||||||
|
init: function (parent, data) {
|
||||||
|
this._super.apply(this, arguments);
|
||||||
|
this.data = data;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
start: function () {
|
||||||
|
|
||||||
|
// Process country data to fit into the ChartJS scheme
|
||||||
|
var labels = [];
|
||||||
|
var data = [];
|
||||||
|
for (var i = 0; i < this.data.length; i++) {
|
||||||
|
var countryName = this.data[i]['country_id'] ? this.data[i]['country_id'][1] : _t('Undefined');
|
||||||
|
labels.push(countryName + ' (' + this.data[i]['country_id_count'] + ')');
|
||||||
|
data.push(this.data[i]['country_id_count']);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set title
|
||||||
|
this.$('.title').html(this.data.length + _t(' countries'));
|
||||||
|
|
||||||
|
var config = {
|
||||||
|
type: 'pie',
|
||||||
|
data: {
|
||||||
|
labels: labels,
|
||||||
|
datasets: [{
|
||||||
|
data: data,
|
||||||
|
label: this.data.length > 0 ? this.data[0].key : _t('No data'),
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
aspectRatio: 2,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
var canvas = this.$('canvas')[0];
|
||||||
|
var context = canvas.getContext('2d');
|
||||||
|
new Chart(context, config);
|
||||||
|
},
|
||||||
|
willStart: async function () {
|
||||||
|
await loadBundle("web.chartjs_lib");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
publicWidget.registry.websiteLinksCharts = publicWidget.Widget.extend({
|
||||||
|
selector: '.o_website_links_chart',
|
||||||
|
events: {
|
||||||
|
'click .copy-to-clipboard': '_onCopyToClipboardClick',
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this._super(...arguments);
|
||||||
|
this.orm = this.bindService("orm");
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @override
|
||||||
|
*/
|
||||||
|
start: async function () {
|
||||||
|
var self = this;
|
||||||
|
this.charts = {};
|
||||||
|
|
||||||
|
// Get the code of the link
|
||||||
|
var linkID = parseInt($('#link_id').val());
|
||||||
|
this.links_domain = ['link_id', '=', linkID];
|
||||||
|
|
||||||
|
var defs = [];
|
||||||
|
defs.push(this._totalClicks());
|
||||||
|
defs.push(this._clicksByDay());
|
||||||
|
defs.push(this._clicksByCountry());
|
||||||
|
defs.push(this._lastWeekClicksByCountry());
|
||||||
|
defs.push(this._lastMonthClicksByCountry());
|
||||||
|
defs.push(this._super.apply(this, arguments));
|
||||||
|
|
||||||
|
this.animating_copy = false;
|
||||||
|
|
||||||
|
return Promise.all(defs).then(function (results) {
|
||||||
|
var _totalClicks = results[0];
|
||||||
|
var _clicksByDay = results[1];
|
||||||
|
var _clicksByCountry = results[2];
|
||||||
|
var _lastWeekClicksByCountry = results[3];
|
||||||
|
var _lastMonthClicksByCountry = results[4];
|
||||||
|
|
||||||
|
if (!_totalClicks) {
|
||||||
|
$('#all_time_charts').prepend(_t("There is no data to show"));
|
||||||
|
$('#last_month_charts').prepend(_t("There is no data to show"));
|
||||||
|
$('#last_week_charts').prepend(_t("There is no data to show"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var formattedClicksByDay = {};
|
||||||
|
var beginDate;
|
||||||
|
for (var i = 0; i < _clicksByDay.length; i++) {
|
||||||
|
// This is a trick to get the date without the local formatting.
|
||||||
|
// We can't simply do .locale("en") because some Odoo languages
|
||||||
|
// are not supported by moment.js (eg: Arabic Syria).
|
||||||
|
// FIXME this now uses luxon, check if this is still needed? Probably can be replaced by deserializeDate
|
||||||
|
const date = DateTime.fromFormat(
|
||||||
|
_clicksByDay[i]["__domain"].find((el) => el.length && el.includes(">="))[2]
|
||||||
|
.split(" ")[0], "yyyy-MM-dd"
|
||||||
|
);
|
||||||
|
if (i === 0) {
|
||||||
|
beginDate = date;
|
||||||
|
}
|
||||||
|
formattedClicksByDay[date.setLocale("en").toFormat("yyyy-MM-dd")] =
|
||||||
|
_clicksByDay[i]["create_date_count"];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process all time line chart data
|
||||||
|
var now = DateTime.now();
|
||||||
|
self.charts.all_time_bar = new BarChart(self, beginDate, now, formattedClicksByDay);
|
||||||
|
self.charts.all_time_bar.attachTo($('#all_time_clicks_chart'));
|
||||||
|
|
||||||
|
// Process month line chart data
|
||||||
|
beginDate = DateTime.now().minus({ days: 30 });
|
||||||
|
self.charts.last_month_bar = new BarChart(self, beginDate, now, formattedClicksByDay);
|
||||||
|
self.charts.last_month_bar.attachTo($('#last_month_clicks_chart'));
|
||||||
|
|
||||||
|
// Process week line chart data
|
||||||
|
beginDate = DateTime.now().minus({ days: 7 });
|
||||||
|
self.charts.last_week_bar = new BarChart(self, beginDate, now, formattedClicksByDay);
|
||||||
|
self.charts.last_week_bar.attachTo($('#last_week_clicks_chart'));
|
||||||
|
|
||||||
|
// Process pie charts
|
||||||
|
self.charts.all_time_pie = new PieChart(self, _clicksByCountry);
|
||||||
|
self.charts.all_time_pie.attachTo($('#all_time_countries_charts'));
|
||||||
|
|
||||||
|
self.charts.last_month_pie = new PieChart(self, _lastMonthClicksByCountry);
|
||||||
|
self.charts.last_month_pie.attachTo($('#last_month_countries_charts'));
|
||||||
|
|
||||||
|
self.charts.last_week_pie = new PieChart(self, _lastWeekClicksByCountry);
|
||||||
|
self.charts.last_week_pie.attachTo($('#last_week_countries_charts'));
|
||||||
|
|
||||||
|
var rowWidth = $('#all_time_countries_charts').parent().width();
|
||||||
|
var $chartCanvas = $('#all_time_countries_charts,last_month_countries_charts,last_week_countries_charts').find('canvas');
|
||||||
|
$chartCanvas.height(Math.max(_clicksByCountry.length * (rowWidth > 750 ? 1 : 2), 20) + 'em');
|
||||||
|
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Private
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_totalClicks: function () {
|
||||||
|
return this.orm.searchCount("link.tracker.click", [this.links_domain]);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_clicksByDay: function () {
|
||||||
|
return this.orm.readGroup(
|
||||||
|
"link.tracker.click",
|
||||||
|
[this.links_domain],
|
||||||
|
["create_date"],
|
||||||
|
["create_date:day"]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_clicksByCountry: function () {
|
||||||
|
return this.orm.readGroup(
|
||||||
|
"link.tracker.click",
|
||||||
|
[this.links_domain],
|
||||||
|
["country_id"],
|
||||||
|
["country_id"]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_lastWeekClicksByCountry: function () {
|
||||||
|
// 7 days * 24 hours * 60 minutes * 60 seconds * 1000 milliseconds.
|
||||||
|
const aWeekAgoDate = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
|
||||||
|
// get the date in the format YYYY-MM-DD.
|
||||||
|
const aWeekAgoString = aWeekAgoDate.toISOString().split("T")[0];
|
||||||
|
return this.orm.readGroup(
|
||||||
|
"link.tracker.click",
|
||||||
|
[this.links_domain, ["create_date", ">", aWeekAgoString]],
|
||||||
|
["country_id"],
|
||||||
|
["country_id"]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_lastMonthClicksByCountry: function () {
|
||||||
|
// 30 days * 24 hours * 60 minutes * 60 seconds * 1000 milliseconds.
|
||||||
|
const aMonthAgoDate = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000);
|
||||||
|
// get the date in the format YYYY-MM-DD.
|
||||||
|
const aMonthAgoString = aMonthAgoDate.toISOString().split("T")[0];
|
||||||
|
return this.orm.readGroup(
|
||||||
|
"link.tracker.click",
|
||||||
|
[this.links_domain, ["create_date", ">", aMonthAgoString]],
|
||||||
|
["country_id"],
|
||||||
|
["country_id"]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Handlers
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onCopyToClipboardClick: async function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
|
||||||
|
const textValue = ev.target.dataset["clipboard-text"];
|
||||||
|
await browser.navigator.clipboard.writeText(textValue);
|
||||||
|
|
||||||
|
if (this.animating_copy) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.animating_copy = true;
|
||||||
|
|
||||||
|
$('.o_website_links_short_url').clone()
|
||||||
|
.css('position', 'absolute')
|
||||||
|
.css('left', '15px')
|
||||||
|
.css('bottom', '10px')
|
||||||
|
.css('z-index', 2)
|
||||||
|
.removeClass('.o_website_links_short_url')
|
||||||
|
.addClass('animated-link')
|
||||||
|
.appendTo($('.o_website_links_short_url'))
|
||||||
|
.animate({
|
||||||
|
opacity: 0,
|
||||||
|
bottom: '+=20',
|
||||||
|
}, 500, function () {
|
||||||
|
$('.animated-link').remove();
|
||||||
|
this.animating_copy = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default {
|
||||||
|
BarChart: BarChart,
|
||||||
|
PieChart: PieChart,
|
||||||
|
};
|
119
static/src/js/website_links_code_editor.js
Normal file
119
static/src/js/website_links_code_editor.js
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
/** @odoo-module **/
|
||||||
|
|
||||||
|
import { _t } from "@web/core/l10n/translation";
|
||||||
|
import publicWidget from "@web/legacy/js/public/public_widget";
|
||||||
|
|
||||||
|
publicWidget.registry.websiteLinksCodeEditor = publicWidget.Widget.extend({
|
||||||
|
selector: '#wrapwrap:has(.o_website_links_edit_code)',
|
||||||
|
events: {
|
||||||
|
'click .o_website_links_edit_code': '_onEditCodeClick',
|
||||||
|
'click .o_website_links_cancel_edit': '_onCancelEditClick',
|
||||||
|
'submit #edit-code-form': '_onEditCodeFormSubmit',
|
||||||
|
'click .o_website_links_ok_edit': '_onEditCodeFormSubmit',
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this._super(...arguments);
|
||||||
|
this.rpc = this.bindService("rpc");
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Private
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {String} newCode
|
||||||
|
*/
|
||||||
|
_showNewCode: function (newCode) {
|
||||||
|
$('.o_website_links_code_error').html('');
|
||||||
|
$('.o_website_links_code_error').hide();
|
||||||
|
|
||||||
|
$('#o_website_links_code form').remove();
|
||||||
|
|
||||||
|
// Show new code
|
||||||
|
var host = $('#short-url-host').html();
|
||||||
|
$('#o_website_links_code').html(newCode);
|
||||||
|
|
||||||
|
// Update button copy to clipboard
|
||||||
|
$('.copy-to-clipboard').attr('data-clipboard-text', host + newCode);
|
||||||
|
|
||||||
|
// Show action again
|
||||||
|
$('.o_website_links_edit_code').show();
|
||||||
|
$('.copy-to-clipboard').show();
|
||||||
|
$('.o_website_links_edit_tools').hide();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @returns {Promise}
|
||||||
|
*/
|
||||||
|
_submitCode: function () {
|
||||||
|
var initCode = $('#edit-code-form #init_code').val();
|
||||||
|
var newCode = $('#edit-code-form #new_code').val();
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
if (newCode === '') {
|
||||||
|
self.$('.o_website_links_code_error').html(_t("The code cannot be left empty"));
|
||||||
|
self.$('.o_website_links_code_error').show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this._showNewCode(newCode);
|
||||||
|
|
||||||
|
if (initCode === newCode) {
|
||||||
|
this._showNewCode(newCode);
|
||||||
|
} else {
|
||||||
|
return this.rpc('/website_links/add_code', {
|
||||||
|
init_code: initCode,
|
||||||
|
new_code: newCode,
|
||||||
|
}).then(function (result) {
|
||||||
|
self._showNewCode(result[0].code);
|
||||||
|
}, function () {
|
||||||
|
$('.o_website_links_code_error').show();
|
||||||
|
$('.o_website_links_code_error').html(_t("This code is already taken"));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return Promise.resolve();
|
||||||
|
},
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
// Handlers
|
||||||
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_onEditCodeClick: function () {
|
||||||
|
var initCode = $('#o_website_links_code').html();
|
||||||
|
$('#o_website_links_code').html('<form style="display:inline;" id="edit-code-form"><input type="hidden" id="init_code" value="' + initCode + '"/><input type="text" id="new_code" value="' + initCode + '"/></form>');
|
||||||
|
$('.o_website_links_edit_code').hide();
|
||||||
|
$('.copy-to-clipboard').hide();
|
||||||
|
$('.o_website_links_edit_tools').show();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onCancelEditClick: function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
$('.o_website_links_edit_code').show();
|
||||||
|
$('.copy-to-clipboard').show();
|
||||||
|
$('.o_website_links_edit_tools').hide();
|
||||||
|
$('.o_website_links_code_error').hide();
|
||||||
|
|
||||||
|
var oldCode = $('#edit-code-form #init_code').val();
|
||||||
|
$('#o_website_links_code').html(oldCode);
|
||||||
|
|
||||||
|
$('#code-error').remove();
|
||||||
|
$('#o_website_links_code form').remove();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {Event} ev
|
||||||
|
*/
|
||||||
|
_onEditCodeFormSubmit: function (ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
this._submitCode();
|
||||||
|
},
|
||||||
|
});
|
8
static/src/services/website_custom_menus.js
Normal file
8
static/src/services/website_custom_menus.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/** @odoo-module */
|
||||||
|
|
||||||
|
import { registry } from '@web/core/registry';
|
||||||
|
|
||||||
|
registry.category('website_custom_menus').add('website_links.menu_link_tracker', {
|
||||||
|
openWidget: (services) => services.website.goToWebsite({ path: `/r?u=${encodeURIComponent(services.website.contentWindow.location.href)}` }),
|
||||||
|
isDisplayed: (env) => env.services.website.currentWebsite && env.services.website.contentWindow,
|
||||||
|
});
|
41
static/src/xml/recent_link.xml
Normal file
41
static/src/xml/recent_link.xml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<templates id="template" xml:space="preserve">
|
||||||
|
<t t-name="website_links.RecentLink">
|
||||||
|
<div class="row mb16">
|
||||||
|
<div class="col-md-1 col-2 text-center">
|
||||||
|
<h4><t t-esc="widget.link_obj.count"/></h4>
|
||||||
|
<p class="text-muted" style="margin-top: -5px;">clicks</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-7 col-7">
|
||||||
|
<h4 class="truncate_text">
|
||||||
|
<img t-attf-src="http://www.google.com/s2/favicons?domain={{ widget.link_obj.url }}" loading="lazy" alt="Icon" onerror="this.src='/website_links/static/img/default_favicon.png'"/>
|
||||||
|
<a class="no-link-style" t-att-href="widget.link_obj.url"><t t-esc="widget.link_obj.title"/></a>
|
||||||
|
</h4>
|
||||||
|
<p class="text-muted mb0" style="margin-top: -5px;">
|
||||||
|
<span class="o_website_links_short_url text-muted" style="position:relative;">
|
||||||
|
<span id="o_website_links_host"><t t-esc="widget.link_obj.short_url_host"/></span><span id="o_website_links_code"><t t-esc="widget.link_obj.code"/></span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="o_website_links_edit_tools" style="display:none;">
|
||||||
|
<a role="button" class="o_website_links_ok_edit btn btn-sm btn-primary" href="#">ok</a> or
|
||||||
|
<a class="o_website_links_cancel_edit" href="#">cancel</a>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<a class="o_website_links_edit_code" aria-label="Edit code" title="Edit code"><span class="fa fa-pencil gray"></span></a>
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<span class="badge text-bg-success"><t t-esc="widget.link_obj.campaign_id[1]"/></span>
|
||||||
|
<span class="badge text-bg-success"><t t-esc="widget.link_obj.medium_id[1]"/></span>
|
||||||
|
<span class="badge text-bg-success"><t t-esc="widget.link_obj.source_id[1]"/></span>
|
||||||
|
</p>
|
||||||
|
<p class='o_website_links_code_error' style='color:red;font-weight:bold;'></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-4 col-2">
|
||||||
|
<button class="btn btn-info btn_shorten_url_clipboard mt8">Copy</button>
|
||||||
|
<a role="button" t-attf-href="{{widget.link_obj.short_url}}+" class="btn btn-warning mt8">Stats</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</templates>
|
85
static/tests/tours/website_links.js
Normal file
85
static/tests/tours/website_links.js
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
/** @odoo-module **/
|
||||||
|
|
||||||
|
import { registry } from "@web/core/registry";
|
||||||
|
import { browser } from "@web/core/browser/browser";
|
||||||
|
|
||||||
|
registry.category("web_tour.tours").add('website_links_tour', {
|
||||||
|
test: true,
|
||||||
|
url: '/r',
|
||||||
|
steps: () => [
|
||||||
|
// 1. Create a tracked URL
|
||||||
|
{
|
||||||
|
content: "check that existing links are shown",
|
||||||
|
trigger: '#o_website_links_recent_links .btn_shorten_url_clipboard',
|
||||||
|
run: function () {}, // it's a check
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "fill the form and submit it",
|
||||||
|
trigger: '#o_website_links_link_tracker_form input#url',
|
||||||
|
run: function () {
|
||||||
|
var url = window.location.host + '/contactus';
|
||||||
|
$('#o_website_links_link_tracker_form input#url').val(url);
|
||||||
|
const campaignId = Object.entries($('#s2id_campaign-select')[0]).find(([key, value]) => value.select2)[1].select2.opts.data.find(d => d.text === "Sale").id
|
||||||
|
$('.o_website_links_utm_forms input#campaign-select').val(campaignId).change();
|
||||||
|
const channelId = Object.entries($('#s2id_channel-select')[0]).find(([key, value]) => value.select2)[1].select2.opts.data.find(d => d.text === "Website").id
|
||||||
|
$('.o_website_links_utm_forms input#channel-select').val(channelId).change();
|
||||||
|
const sourceId = Object.entries($('#s2id_source-select')[0]).find(([key, value]) => value.select2)[1].select2.opts.data.find(d => d.text === "Search engine").id
|
||||||
|
$('.o_website_links_utm_forms input#source-select').val(sourceId).change();
|
||||||
|
// Patch and ignore write on clipboard in tour as we don't have permissions
|
||||||
|
const oldWriteText = browser.navigator.clipboard.writeText;
|
||||||
|
browser.navigator.clipboard.writeText = () => { console.info('Copy in clipboard ignored!') };
|
||||||
|
$('#btn_shorten_url').click();
|
||||||
|
browser.navigator.clipboard.writeText = oldWriteText;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// 2. Visit it
|
||||||
|
{
|
||||||
|
content: "check that link was created and visit it",
|
||||||
|
extra_trigger: '#o_website_links_recent_links .truncate_text:first():contains("Contact Us")',
|
||||||
|
trigger: '#o_website_links_link_tracker_form #generated_tracked_link:contains("/r/")',
|
||||||
|
run: function () {
|
||||||
|
window.location.href = $('#generated_tracked_link').text();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "check that we landed on correct page with correct query strings",
|
||||||
|
trigger: '.s_title h1:containsExact("Contact us")',
|
||||||
|
run: function () {
|
||||||
|
var expectedUrl = "/contactus?utm_campaign=Sale&utm_source=Search+engine&utm_medium=Website";
|
||||||
|
if (window.location.pathname + window.location.search !== expectedUrl) {
|
||||||
|
console.error("The link was not correctly created. " + window.location.search);
|
||||||
|
}
|
||||||
|
window.location.href = '/r';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// 3. Check that counter got incremented and charts are correctly displayed
|
||||||
|
{
|
||||||
|
content: "filter recently used links",
|
||||||
|
trigger: '#filter-recently-used-links',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "visit link stats page",
|
||||||
|
trigger: '#o_website_links_recent_links a:containsExact("Stats"):first',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "check click number and ensure graphs are initialized",
|
||||||
|
extra_trigger: '.website_links_click_chart .title:contains("1 clicks")',
|
||||||
|
trigger: 'canvas',
|
||||||
|
run: function () {}, // it's a check
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "click on Last Month tab",
|
||||||
|
trigger: '.o_website_links_chart .graph-tabs a:contains("Last Month")',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: "ensure tab is correctly resized",
|
||||||
|
trigger: '#last_month_charts #last_month_clicks_chart',
|
||||||
|
run: function () {
|
||||||
|
var width = $('#last_month_charts #last_month_clicks_chart').width();
|
||||||
|
if (width < 50) {
|
||||||
|
console.error("The graphs are probably not resized on tab change.");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
});
|
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import test_controller
|
||||||
|
from . import test_ui
|
68
tests/test_controller.py
Normal file
68
tests/test_controller.py
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
from odoo.tests import tagged
|
||||||
|
from odoo.tests.common import HttpCase
|
||||||
|
|
||||||
|
|
||||||
|
@tagged('post_install', '-at_install')
|
||||||
|
class TestWebsiteLinksRussian(HttpCase):
|
||||||
|
"""
|
||||||
|
The /r URL prefix is considered as an alias to /ru by the "nearest
|
||||||
|
lang" algorithm of our http router (http_routing match). This test
|
||||||
|
suite makes sure that there the link-tracker "/r" controller is not
|
||||||
|
affected by any (wrong) /ru redirection.
|
||||||
|
"""
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
super().setUpClass()
|
||||||
|
cls.link = cls.env['link.tracker'].create({
|
||||||
|
'url': cls.base_url() + '/web/health', # no-op route
|
||||||
|
})
|
||||||
|
|
||||||
|
# Courtesy of website/tests/test_lang_url.py
|
||||||
|
website = cls.env.ref('website.default_website')
|
||||||
|
lang_en = cls.env.ref('base.lang_en')
|
||||||
|
lang_ru = cls.env['res.lang']._activate_lang('ru_RU')
|
||||||
|
website.language_ids = lang_en + lang_ru
|
||||||
|
website.default_lang_id = lang_en
|
||||||
|
|
||||||
|
def test0_direct_link_tracker(self):
|
||||||
|
res = self.url_open(f'/r/{self.link.code}', allow_redirects=False)
|
||||||
|
res.raise_for_status()
|
||||||
|
self.assertEqual(res.status_code, 301, "Should be link-tracking redirection")
|
||||||
|
self.assertEqual(res.headers.get('Location'), self.link.url,
|
||||||
|
"Should not be redirected to /ru")
|
||||||
|
|
||||||
|
def test1_russian_link_tracker(self):
|
||||||
|
res = self.url_open(f'/r/r/{self.link.code}', allow_redirects=False)
|
||||||
|
res.raise_for_status()
|
||||||
|
self.assertEqual(res.status_code, 301, "Should be a lang alias redirection")
|
||||||
|
self.assertEqual(urlparse(res.headers.get('Location'), '').path, f'/ru/r/{self.link.code}',
|
||||||
|
"Should be redirected to /ru as r is an alias for ru (russian)")
|
||||||
|
|
||||||
|
res = self.url_open(res.headers['Location'], allow_redirects=False)
|
||||||
|
res.raise_for_status()
|
||||||
|
self.assertEqual(res.status_code, 301, "Should be a link-tracking redirection")
|
||||||
|
self.assertEqual(res.headers.get('Location'), self.link.url,
|
||||||
|
"Should not be redirected to /ru")
|
||||||
|
|
||||||
|
def test2_russian_page(self):
|
||||||
|
# This generate a new unused link
|
||||||
|
no_link_code = self.env['link.tracker.code']._get_random_code_strings()[0]
|
||||||
|
|
||||||
|
view = self.env['ir.ui.view'].create({
|
||||||
|
'name': 'Base',
|
||||||
|
'type': 'qweb',
|
||||||
|
'arch': '<div>Welcome to this webpage!</div>',
|
||||||
|
'key': 'test.base_view',
|
||||||
|
})
|
||||||
|
self.env['website.page'].create({
|
||||||
|
'url': f'/{no_link_code}',
|
||||||
|
'view_id': view.id,
|
||||||
|
'website_published': True,
|
||||||
|
})
|
||||||
|
|
||||||
|
res = self.url_open(f'/r/{no_link_code}', allow_redirects=False)
|
||||||
|
self.assertEqual(res.status_code, 404, "No link tracker exists for the requested code")
|
27
tests/test_ui.py
Normal file
27
tests/test_ui.py
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
import odoo.tests
|
||||||
|
|
||||||
|
|
||||||
|
@odoo.tests.common.tagged('post_install', '-at_install')
|
||||||
|
class TestUi(odoo.tests.HttpCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super().setUp()
|
||||||
|
|
||||||
|
def _get_title_from_url(addr, **kw):
|
||||||
|
return 'Contact Us | My Website'
|
||||||
|
|
||||||
|
patcher = patch('odoo.addons.link_tracker.models.link_tracker.LinkTracker._get_title_from_url', wraps=_get_title_from_url)
|
||||||
|
self.startPatcher(patcher)
|
||||||
|
|
||||||
|
def test_01_test_ui(self):
|
||||||
|
self.env['link.tracker'].search_or_create({
|
||||||
|
'campaign_id': self.env['utm.campaign'].create({'name': 'Sale'}).id,
|
||||||
|
'medium_id': self.env['utm.medium'].create({'name': 'Website'}).id,
|
||||||
|
'source_id': self.env['utm.source'].create({'name': 'Search'}).id,
|
||||||
|
'url': self.env["ir.config_parameter"].sudo().get_param("web.base.url") + '/contactus',
|
||||||
|
})
|
||||||
|
self.start_tour("/", 'website_links_tour', login="admin")
|
19
views/link_tracker_views.xml
Normal file
19
views/link_tracker_views.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<record id="link_tracker_view_tree" model="ir.ui.view">
|
||||||
|
<field name="name">link.tracker.view.tree.inherit.website.links</field>
|
||||||
|
<field name="model">link.tracker</field>
|
||||||
|
<field name="inherit_id" ref="link_tracker.link_tracker_view_tree"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//button[@name='action_visit_page']" position="after">
|
||||||
|
<button name="action_visit_page_statistics" type="object" string="Statistics" icon="fa-bar-chart"/>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<menuitem id="menu_link_tracker"
|
||||||
|
name="Link Tracker"
|
||||||
|
sequence="25"
|
||||||
|
parent="website.menu_current_page"
|
||||||
|
action="website.website_preview"/>
|
||||||
|
</odoo>
|
145
views/website_links_graphs.xml
Normal file
145
views/website_links_graphs.xml
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<template id="graphs" name="Link Statistics">
|
||||||
|
<t t-call="website.layout">
|
||||||
|
<div class="o_website_links_chart">
|
||||||
|
<div class="container">
|
||||||
|
<div class="mt8">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item"><a href="/r">Link Tracker</a></li>
|
||||||
|
<li class="breadcrumb-item active"><t t-esc="title"/></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="hidden" id="code" t-att-value="code" />
|
||||||
|
<input type="hidden" id="link_id" t-att-value="id" />
|
||||||
|
|
||||||
|
<h1 class="o_page_header mt0"><t t-esc="title"/></h1>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Original URL</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p class="truncate_text mw-100" t-att-title="url"><a t-att-href="url"><t t-esc="url"/></a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Tracked Link</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p>
|
||||||
|
<span class="o_website_links_short_url" id="short_url"><span id="short-url-host"><t t-esc="short_url_host"/></span><span id="o_website_links_code"><t t-esc="code"/></span></span>
|
||||||
|
<span class="o_website_links_edit_tools" style="display:none;">
|
||||||
|
<a role="button" class="o_website_links_ok_edit btn btn-sm btn-primary" href="#">ok</a> or
|
||||||
|
<a class="o_website_links_cancel_edit" href="#">cancel</a>
|
||||||
|
</span>
|
||||||
|
<a class="o_website_links_edit_code" aria-label="Edit code" title="Edit code"><span class="fa fa-pencil gray"></span></a>
|
||||||
|
<a class="copy-to-clipboard" t-att-data-clipboard-text="short_url">copy</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<p class='o_website_links_code_error' style='color:red;font-weight:bold;display:none'></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Redirected URL</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p class="truncate_text mw-100" t-att-title="redirected_url">
|
||||||
|
<t t-esc="redirected_url"/>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<t t-if="campaign_id">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Campaign</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p><t t-esc="campaign_id[1]"/></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<t t-if="medium_id">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Medium</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p><t t-esc="medium_id[1]"/></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
<t t-if="source_id">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-2">
|
||||||
|
<p><strong>Source</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<p><t t-esc="source_id[1]"/></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
|
||||||
|
|
||||||
|
<h1 class="o_page_header">Statistics
|
||||||
|
<small class="float-end d-none d-md-block mt16" id="filters">
|
||||||
|
<ul class="nav nav-tabs nav-tabs-inline graph-tabs" role="tablist">
|
||||||
|
<li class="nav-item"><a aria-controls="all_time_charts" href="#all_time_charts" class="nav-link active" role="tab" data-bs-toggle="tab">All Time</a></li>
|
||||||
|
<li class="nav-item"><a aria-controls="last_month_charts" href="#last_month_charts" class="nav-link" role="tab" data-bs-toggle="tab">Last Month</a></li>
|
||||||
|
<li class="nav-item"><a aria-controls="last_week_charts" href="#last_week_charts" class="nav-link" role="tab" data-bs-toggle="tab">Last Week</a></li>
|
||||||
|
</ul>
|
||||||
|
</small>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<div class="mb128">
|
||||||
|
<div class="tab-content">
|
||||||
|
<!-- All Time Charts -->
|
||||||
|
<div role="tabpanel" class="tab-pane active" id="all_time_charts">
|
||||||
|
<div class="website_links_click_chart" id="all_time_clicks_chart">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
<div class="website_links_click_chart" id="all_time_countries_charts">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Last Month Charts -->
|
||||||
|
<div role="tabpanel" class="tab-pane" id="last_month_charts">
|
||||||
|
<div class="website_links_click_chart" id="last_month_clicks_chart">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
<div class="website_links_click_chart" id="last_month_countries_charts">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Last Week Charts -->
|
||||||
|
<div role="tabpanel" class="tab-pane" id="last_week_charts">
|
||||||
|
<div class="website_links_click_chart" id="last_week_clicks_chart">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
<div class="website_links_click_chart" id="last_week_countries_charts">
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<canvas style="height:20em;"></canvas>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</t>
|
||||||
|
</template>
|
||||||
|
</odoo>
|
86
views/website_links_template.xml
Normal file
86
views/website_links_template.xml
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<template id="create_shorten_url">
|
||||||
|
<div class="o_website_links_create_tracked_url">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="o_page_header">Link Tracker</h1>
|
||||||
|
<div class="notification"></div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-7">
|
||||||
|
<form id="o_website_links_link_tracker_form">
|
||||||
|
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-md-3 col-form-label text-start">URL</label>
|
||||||
|
|
||||||
|
<div class="col-md-9">
|
||||||
|
<input type="text" id="url" class="form-control required-form-control" required="True" placeholder="e.g. https://www.odoo.com/contactus" t-att-value="u"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="o_website_links_utm_forms">
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-md-3 col-form-label">Campaign <i class="fa fa-info-circle" data-bs-toggle="tooltip" data-bs-placement="top" role="img" aria-label="Tooltip info" title="Defines the context of your link. It might be an event you want to promote or a special promotion."></i></label>
|
||||||
|
|
||||||
|
<div class="col-md-9">
|
||||||
|
<input type="hidden" class="form-control" id="campaign-select"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-md-3 col-form-label">Medium <i class="fa fa-info-circle" data-bs-toggle="tooltip" data-bs-placement="top" role="img" aria-label="Tooltip info" title="Defines the medium used to share your link. It might be an email, or a Facebook Ads for instance."></i></label>
|
||||||
|
|
||||||
|
<div class="col-md-9">
|
||||||
|
<input type="hidden" class="form-control" id="channel-select" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<label class="col-md-3 col-form-label">Source <i class="fa fa-info-circle" data-bs-toggle="tooltip" data-bs-placement="top" role="img" aria-label="Tooltip info" title="Defines the source from which your traffic will come from, Facebook or Twitter for instance."></i></label>
|
||||||
|
|
||||||
|
<div class="col-md-9">
|
||||||
|
<input type="hidden" class="form-control" id="source-select" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3 row">
|
||||||
|
<div class="offset-md-3 col-md-9">
|
||||||
|
<button type="submit" class="btn btn-primary" id="btn_shorten_url" data-clipboard-text="">Get tracked link</button>
|
||||||
|
|
||||||
|
<span id="generated_tracked_link" style="display:none;" class="text-muted"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="offset-md-1 col-md-3 d-none d-md-block">
|
||||||
|
<p class="text-muted text-justify">Share this page with a <strong>short link</strong> that includes <strong>analytics trackers</strong>.</p>
|
||||||
|
<p class="text-muted text-justify">Those trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to track opportunities and related revenues.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="o_page_header">Your tracked links
|
||||||
|
<small class="float-end d-none d-md-block" id="filters">
|
||||||
|
<ul class="nav nav-tabs nav-tabs-inline graph-tabs" role="tablist">
|
||||||
|
<li class="nav-item"><a aria-controls="filter-newest-links" href="#" class="nav-link active" id="filter-newest-links" role="tab" data-bs-toggle="tab">Newest</a></li>
|
||||||
|
<li class="nav-item"><a aria-controls="filter-most-clicked-links" href="#" class="nav-link" id="filter-most-clicked-links" role="tab" data-bs-toggle="tab">Most Clicked</a></li>
|
||||||
|
<li class="nav-item"><a aria-controls="filter-recently-used-links" href="#" class="nav-link" id="filter-recently-used-links" role="tab" data-bs-toggle="tab">Recently Used</a></li>
|
||||||
|
</ul>
|
||||||
|
</small>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<div id="o_website_links_recent_links">
|
||||||
|
<div class="o_website_links_recent_links_notification"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template id="page_shorten_url" name="Link Tracker">
|
||||||
|
<t t-call="website.layout">
|
||||||
|
<t t-call="website_links.create_shorten_url"/>
|
||||||
|
</t>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
</odoo>
|
Loading…
x
Reference in New Issue
Block a user