[IMP] base_external_dbsource: Refactor & Split by source

* Heavily refactor code for reusability
* Split all sources into independent modules
* Add more test coverage
* Add CRUD methods
* Add iterator execute return to roadmap

OCA Transbot updated translations from Transifex
This commit is contained in:
Dave Lasley
2016-12-07 18:28:41 -08:00
committed by Víctor Martínez
parent a6096c4a12
commit 08c6b8ecc7
65 changed files with 5675 additions and 1110 deletions

View File

@@ -19,18 +19,11 @@ Configuration
Database sources can be configured in Settings > Configuration -> Data sources.
Depending on the database, you need:
* to install unixodbc and python-pyodbc packages to use ODBC connections.
* to install FreeTDS driver (tdsodbc package) and configure it through ODBC to connect to Microsoft SQL Server.
* to install and configure Oracle Instant Client and cx_Oracle python library to connect to Oracle.
* to install fdb package to connect in Firebird.
Usage
=====
To use this module:
-------------------
* Go to Settings > Database Structure > Database Sources
* Click on Create to enter the following information:
@@ -38,24 +31,35 @@ To use this module:
* Data source name 
* Password
* Connector: Choose the database to which you want to connect
* Connection string : Specify how to connect to database
* Connection string: Specify how to connect to database
To extend this module:
----------------------
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/9.0 for server-tools
:target: https://runbot.odoo-community.org/runbot/149/10.0 for server-tools
Known issues / Roadmap
======================
* Find a way to remove or default the CA certs dir
* Add concept of multiple connection strings for one source (multiple nodes)
* Add a ConnectionEnvironment that allows for the reuse of connections
* Message box should be displayed instead of error in ``connection_test``
* Remove old api compatibility layers (v11)
* Instead of returning list of results, we should return iterators. This will support
larger datasets in a more efficient manner.
* Implement better CRUD handling
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/
server-tools/issues/new?body=module:%20
base_external_dbsource%0Aversion:%20
9.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback.
Credits
=======
@@ -66,7 +70,7 @@ Contributors
* Daniel Reis <dreis.pt@hotmail.com>
* Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>
* Gervais Naoussi <gervaisnaoussi@gmail.com>
* Michell Stuttgart <michellstut@gmail.com>
* Dave Lasley <dave@laslabs.com>
Maintainer
----------

View File

@@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-
from . import models

View File

@@ -4,9 +4,11 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'External Database Sources',
'version': '10.0.1.0.1',
'version': '10.0.2.0.0',
'category': 'Tools',
'author': "Daniel Reis,Odoo Community Association (OCA)",
'author': "Daniel Reis, "
"LasLabs, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/server-tools',
'license': 'LGPL-3',
'images': [

View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
from odoo.exceptions import UserError
class ConnectionFailedError(UserError):
pass
class ConnectionSuccessError(UserError):
pass

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "اسم العرض"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "المعرف"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "آخر تعديل في"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "آخر تحديث بواسطة"
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Име за Показване"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -130,11 +163,31 @@ msgstr "Последно обновено от"
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Prikaži naziv"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,25 +144,38 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Zadnje mijenjano"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Zadnji ažurirao"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,15 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# Carles Antoli <carlesantoli@hotmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -84,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Veure el nom"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -102,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -110,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Darrera modificació el"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Darrera actualització per"
msgstr "Darrera Actualització per"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Darrera actualització de"
msgstr "Darrera Actualització el"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -146,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Zobrazovaný název"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Naposled upraveno"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Naposled upraveno"
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Vist navn"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "Id"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Sidst ændret den"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Sidst opdateret af"
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -4,14 +4,14 @@
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# Ermin Trevisan <trevi@twanda.com>, 2016
# Rudolf Schnapka <rs@techno-flex.de>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Ermin Trevisan <trevi@twanda.com>, 2016\n"
"POT-Creation-Date: 2017-05-10 00:47+0000\n"
"PO-Revision-Date: 2017-05-10 00:47+0000\n"
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>, 2017\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,8 +32,51 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
"\n"
" Beispielverbindungs-Strings:\n"
" - Microsoft SQL Server:\n"
" mssql+pymssql://username:%s@server:port/dbname?charset=utf8\n"
" - MySQL: mysql://user:%s@server:port/dbname\n"
" - ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa\n"
" - ORACLE: username/%s@//server.address:port/instance\n"
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
"\"%s\" Verfahren nicht gefunden, prüfen Sie das Vorhandensein aller "
"Voraussetzungen für Verbindungsart %s."
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr "CA Zerts"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr "Client-Zert"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr "Client-Schlüssel"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
@@ -41,19 +84,20 @@ msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -100,6 +144,11 @@ msgstr ""
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr "Externe Datenbankquellen"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
@@ -110,10 +159,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -131,9 +178,29 @@ msgstr "Zuletzt aktualisiert von"
msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Passwort"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
@@ -146,7 +213,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Kostas Goutoudis <goutoudis@gmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε στις"
msgstr "Δημιουργήθηκε από "
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Δημιουργήθηκε από"
msgstr "Δημιουργήθηκε στις"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -101,18 +131,21 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID"
msgstr "Κωδικός"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,18 +156,38 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Τελευταία Ενημέρωση από"
msgstr "Τελευταία ενημέρωση από"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Τελευταία Ενημέρωση στις"
msgstr "Τελευταία ενημέρωση στις"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Display Name"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Last Modified on"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Last Updated by"
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,16 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
# enjolras <yo@miguelrevilla.com>, 2017
# Fernando Lara <gennesis45@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2018-03-02 18:40+0000\n"
"PO-Revision-Date: 2018-03-02 18:40+0000\n"
"Last-Translator: Fernando Lara <gennesis45@gmail.com>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +33,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +100,7 @@ msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Creado en"
msgstr "Creado el"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +115,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
msgstr "Nombre a mostrar"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -99,7 +131,12 @@ msgstr ""
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr ""
msgstr "Fuentes externas de la base de datos"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr "Firebird"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
@@ -109,16 +146,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
msgstr "Última actualización el"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,9 +165,29 @@ msgstr "Última actualización por"
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr "Microsoft SQL Server"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr "MySQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr "ODBC"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Contraseña"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
@@ -143,9 +198,20 @@ msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "PostgreSQL"
msgstr ""
msgstr "PostgreSQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr "SQLite"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Probar conexión"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Mostrar Nombre"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Última modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Última actualización realizada por"
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -0,0 +1,215 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
msgid ""
"\n"
" Sample connection strings:\n"
" - Microsoft SQL Server:\n"
" mssql+pymssql://username:%s@server:port/dbname?charset=utf8\n"
" - MySQL: mysql://user:%s@server:port/dbname\n"
" - ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa\n"
" - ORACLE: username/%s@//server.address:port/instance\n"
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
msgid "Connector"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
msgid "Database Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
msgid "Datasource name"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "External DB Source"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
msgid "External DB Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr ""
msgstr "Creado"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nombre Público"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,25 +144,38 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Última Modificación el"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Actualizado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Actualizado"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr ""
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nombre mostrado"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,33 +131,51 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID (identificación)"
msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Última modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Última actualización de"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr ""
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nombre mostrado"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,33 +131,51 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID"
msgstr "ID (identificación)"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Última modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Última actualización de"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-05-01 10:38+0000\n"
"PO-Revision-Date: 2017-05-01 10:38+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nombre para mostrar"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Última modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Última actualización por"
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nombre desplegado"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Ultima modificacion realizada"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
msgstr "Ultima actualizacion por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
msgstr "Ultima actualización realizada"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -0,0 +1,215 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
msgid ""
"\n"
" Sample connection strings:\n"
" - Microsoft SQL Server:\n"
" mssql+pymssql://username:%s@server:port/dbname?charset=utf8\n"
" - MySQL: mysql://user:%s@server:port/dbname\n"
" - ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa\n"
" - ORACLE: username/%s@//server.address:port/instance\n"
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
msgid "Connector"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
msgid "Database Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
msgid "Datasource name"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "External DB Source"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
msgid "External DB Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr ""
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,11 +156,26 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Ultima actualización por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Mostrar nombre"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Modificada por última vez"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
msgstr "Última actualización realizada por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
msgstr "Ultima actualizacion en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,7 +93,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Loonud"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Näidatav nimi"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,25 +144,38 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Viimati muudetud"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Viimati uuendatud"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Nork sortua"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr ""
msgstr "Created on"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Izena erakutsi"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,11 +156,26 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Last Updated by"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "نام نمایشی"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "شناسه"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "آخرین به روز رسانی توسط"
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +98,7 @@ msgstr "Créé par"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Date"
msgstr "Créé le"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Nom à afficher"
msgstr "Nom affiché"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,16 +156,36 @@ msgstr "Dernière modification le"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
msgstr "Mis à jour par"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
msgstr "Mis à jour le"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Mot de passe"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nom affiché"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Dernière modification le"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Modifié par"
msgid "Last Updated on"
msgstr "Modifié le"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# César Castro Cruz <ulmroan@gmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: César Castro Cruz <ulmroan@gmail.com>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Creada por"
msgstr "Creado por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Creada en"
msgstr "Creado en"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Modificado por última vez o"
msgstr "Última modificación"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
msgstr "ültima actualización por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última actualización"
msgstr "Última actualización en"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "השם המוצג"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "מזהה"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "תאריך שינוי אחרון"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "עודכן לאחרונה על ידי"
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,15 @@
# * base_external_dbsource
#
# Translators:
# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
# Bole <bole@dajmi5.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +32,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +99,7 @@ msgstr "Kreirao"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Kreirano "
msgstr "Kreirano"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +114,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Prikaži naziv"
msgstr "Naziv "
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -99,6 +130,11 @@ msgstr ""
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr "Vanjske baze"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
@@ -109,30 +145,48 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena na"
msgstr "Zadnje modificirano"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Zadnje ažuriranje izvršio"
msgstr "Zadnji ažurirao"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Zadnje ažuriranje na"
msgstr "Zadnje ažuriranje"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Lozinka"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
@@ -145,7 +199,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Bole <bole@dajmi5.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,18 +156,38 @@ msgstr "Zadnje modificirano"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Zadnje ažurirao"
msgstr "Zadnji ažurirao"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Név megjelenítése"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,24 +131,27 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "Azonosító ID"
msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Utolsó frissítés dátuma"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -128,13 +161,33 @@ msgstr "Utoljára frissítve, által"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve ekkor"
msgstr "Utoljára frissítve "
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Nama Tampilan"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Terakhir Dimodifikasi pada"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Diperbaharui oleh"
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,15 +3,15 @@
# * base_external_dbsource
#
# Translators:
# Paolo Valier <paolo.valier@hotmail.it>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
# Paolo Valier <paolo.valier@hotmail.it>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2018-01-06 02:24+0000\n"
"PO-Revision-Date: 2018-01-06 02:24+0000\n"
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,28 +32,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -64,12 +94,12 @@ msgstr "Connettore"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Created by"
msgstr "Creato da"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Created on"
msgstr "Creato il"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -102,6 +132,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -110,10 +145,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -131,11 +164,31 @@ msgstr "Last Updated by"
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Password"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -146,7 +199,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Prova la Connessione"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "表示名"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "最終更新日"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "最終更新者"
msgid "Last Updated on"
msgstr "最終更新日"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "표시 이름"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "최근 수정"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "최근 갱신한 사람"
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Vaizduojamas pavadinimas"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Paskutinį kartą keista"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Paskutini kartą atnaujino"
msgstr "Paskutinį kartą atnaujino"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Прикажи име"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Последна промена на"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Последно ажурирање од"
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +98,7 @@ msgstr "Үүсгэгч"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Үүсгэсэн огноо"
msgstr "Үүсгэсэн"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Дэлгэцийн Нэр"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Сүүлийн засвар хийсэн"
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +98,7 @@ msgstr "Opprettet av"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Opprettet"
msgstr "Opprettet den"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Visnings navn"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Sist oppdatert "
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Sist oppdatert av"
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,15 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -84,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Weergave naam"
msgstr "Te tonen naam"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -102,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -110,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -124,18 +156,38 @@ msgstr "Laatst bijgewerkt op"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Laatste bijgewerkt door"
msgstr "Laatst bijgewerkt door"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Wachtwoord"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -146,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Schermnaam"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Laatst Aangepast op"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Laatst bijgewerkt door"
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -0,0 +1,215 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_external_dbsource
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-30 12:20+0000\n"
"PO-Revision-Date: 2017-06-30 12:20+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl_NL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
msgid ""
"\n"
" Sample connection strings:\n"
" - Microsoft SQL Server:\n"
" mssql+pymssql://username:%s@server:port/dbname?charset=utf8\n"
" - MySQL: mysql://user:%s@server:port/dbname\n"
" - ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa\n"
" - ORACLE: username/%s@//server.address:port/instance\n"
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
msgid "Connector"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
msgid "Database Sources"
msgstr "Database-bronnen"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
msgid "Datasource name"
msgstr "Databron-naam"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "weergavenaam"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "External DB Source"
msgstr "Externe DB bron"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
msgid "External DB Sources"
msgstr "Externe DB bronnen"
#. module: base_external_dbsource
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr "Externe databasebronnen"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr "Firebird"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr "Microsoft SQL Server"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr "MySQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr "ODBC"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Wachtwoord"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "PostgreSQL"
msgstr "PostgreSQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr "SQLite"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Test Verbinding"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,20 +3,20 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +98,7 @@ msgstr "Utworzone przez"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Data utworzenia"
msgstr "Utworzono"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Wyświetlana nazwa "
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Ostatnio modyfikowano"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -128,13 +161,33 @@ msgstr "Ostatnio modyfikowane przez"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Data ostatniej modyfikacji"
msgstr "Ostatnia zmiana"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Nome a Apresentar"
msgstr "Nome"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -123,18 +156,38 @@ msgstr "Última Modificação Em"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Última Atualização Por"
msgstr "Última Modificação Por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
"POT-Creation-Date: 2017-01-21 04:22+0000\n"
"PO-Revision-Date: 2017-01-21 04:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr "Caracter de Conexão"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -101,6 +131,11 @@ msgstr "Fontes BD externo"
msgid "External Database Sources"
msgstr "Fontes Banco de Dados Externo"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,13 +144,9 @@ msgstr "Identificação"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
"Se um conector está faltando na lista, verifique o histórico do servidor "
"para confirmar se os componentes necessários foram detectados."
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
@@ -132,11 +163,31 @@ msgstr "Última atualização por"
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Senha"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -147,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr "PostgreSQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Conexão Teste"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "Última Modificação em"
msgstr "Última Modificação Em"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Última Modificação por"
msgstr "Última Atualização Por"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Última Atualização em"
msgstr "Última Atualização Em"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Zobraziť meno"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Posledná modifikácia"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Naposledy upravoval"
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr "Niz povezave"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -101,6 +131,11 @@ msgstr "Viri zunanjih podatkovnih baz"
msgid "External Database Sources"
msgstr "Viri zunanjih podatkovnih baz"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,13 +144,9 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
"Če na seznamu manjka povezovalnik, preverite dnevnik strežnika, če so bile "
"zahtevane komponente zaznane."
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
@@ -125,18 +156,38 @@ msgstr "Zadnjič spremenjeno"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
msgstr "Zadnji posodobil"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Geslo"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -147,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr "PostgreSQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Test povezave"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,7 +93,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Kreirao"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Ime za prikaz"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,25 +144,38 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Zadnja izmjena"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Zadnja izmjena"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Visa namn"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Senast redigerad"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Senast uppdaterad av"
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -6,10 +6,10 @@
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"MIME-Version: 1.0\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "ชื่อที่ใช้แสดง"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "รหัส"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "อัพเดทครั้งสุดท้ายโดย"
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016\n"
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr "Bağlantı dizisi"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Görünen İsim"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr "Dış Veritabanı Kaynakları"
msgid "External Database Sources"
msgstr "Dış veritabanı kaynakları"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,16 +144,14 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Son değişiklik"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
@@ -130,11 +163,31 @@ msgstr "Son güncelleyen"
msgid "Last Updated on"
msgstr "Son güncellenme"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr "Parola"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr "PostgreSQL"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr "Bağlantıyı Dene"
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -0,0 +1,215 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-22 00:54+0000\n"
"PO-Revision-Date: 2017-02-22 00:54+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr_TR\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
msgid ""
"\n"
" Sample connection strings:\n"
" - Microsoft SQL Server:\n"
" mssql+pymssql://username:%s@server:port/dbname?charset=utf8\n"
" - MySQL: mysql://user:%s@server:port/dbname\n"
" - ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa\n"
" - ORACLE: username/%s@//server.address:port/instance\n"
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
msgid "Connector"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
msgid "Database Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
msgid "Datasource name"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr "Görünen ad"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "External DB Source"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
msgid "External DB Sources"
msgstr ""
#. module: base_external_dbsource
#: model:ir.actions.act_window,name:base_external_dbsource.action_dbsource
#: model:ir.model,name:base_external_dbsource.model_base_external_dbsource
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "Kimlik"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -68,7 +98,7 @@ msgstr "Створив"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Створено"
msgstr "Дата створення"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Назва для відображення"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,32 +144,50 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Остання модифікація"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "Востаннє відредаговано"
msgstr "Востаннє оновив"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Дата останньої зміни"
msgstr "Останнє оновлення"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,12 +93,12 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "Được tạo bởi"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
msgid "Created on"
msgstr "Tạo trên"
msgstr "Được tạo vào"
#. module: base_external_dbsource
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "Tên hiển thị"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -109,25 +144,38 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "Sửa lần cuối vào"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "Last Updated by"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,15 +3,14 @@
# * base_external_dbsource
#
# Translators:
# Jeffery Chenn <jeffery9@gmail.com>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -64,7 +93,7 @@ msgstr "连接器"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr "创建"
msgstr "创建"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
@@ -102,6 +131,11 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
@@ -110,10 +144,8 @@ msgstr "ID"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
@@ -124,18 +156,38 @@ msgstr "最后修改时间"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr "最后更新"
msgstr "最后更新"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "最后更新时间"
msgstr "上次更新日期"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -146,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -3,14 +3,14 @@
# * base_external_dbsource
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"POT-Creation-Date: 2017-12-01 02:09+0000\n"
"PO-Revision-Date: 2017-12-01 02:09+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,28 +31,58 @@ msgid ""
" - PostgreSQL:\n"
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
" - SQLite: sqlite:///test.db\n"
" - Elasticsearch: https://user:%s@localhost:9200\n"
" "
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:348
#, python-format
msgid ""
"\"%s\" method not found, check that all assets are installed for the %s "
"connector type."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Ca certs"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_cert
msgid "Client cert"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_client_key
msgid "Client key"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string_full
msgid "Conn string full"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
msgid "Connection string"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:189
#, python-format
msgid ""
"Connection test failed: Here is what we got instead:\n"
" %s"
"Connection test failed:\n"
"Here is what we got instead:\n"
"%s"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:193
#, python-format
msgid ""
"Connection test succeeded: Everything seems "
"properly set up!"
"Connection test succeeded:\n"
"Everything seems properly set up!"
msgstr ""
#. module: base_external_dbsource
@@ -63,7 +93,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
msgid "Created by"
msgstr ""
msgstr "建立者"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
@@ -83,7 +113,7 @@ msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
msgid "Display Name"
msgstr ""
msgstr "顯示名稱"
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
@@ -101,33 +131,51 @@ msgstr ""
msgid "External Database Sources"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Firebird"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
msgid "ID"
msgstr "ID"
msgstr "編號"
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
msgid ""
"If a connector is missing from the "
"list, check the server log to confirm "
"that the required components were "
"detected."
"If a connector is missing from the list, check the server log to confirm "
"that the required components were detected."
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
msgid "Last Modified on"
msgstr ""
msgstr "最後修改:"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
msgid "Last Updated by"
msgstr ""
msgstr "最後更新:"
#. module: base_external_dbsource
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
msgid "Last Updated on"
msgstr "最後更新於"
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "Microsoft SQL Server"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "MySQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "ODBC"
msgstr ""
#. module: base_external_dbsource
@@ -135,6 +183,11 @@ msgstr ""
msgid "Password"
msgstr ""
#. module: base_external_dbsource
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_ca_certs
msgid "Path to CA Certs file on server."
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Please check the tooltip for connection string examples"
@@ -145,7 +198,18 @@ msgstr ""
msgid "PostgreSQL"
msgstr ""
#. module: base_external_dbsource
#: selection:base.external.dbsource,connector:0
msgid "SQLite"
msgstr ""
#. module: base_external_dbsource
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
msgid "Test Connection"
msgstr ""
#. module: base_external_dbsource
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:160
#, python-format
msgid "query is a required argument"
msgstr ""

View File

@@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-
from . import base_external_dbsource

View File

@@ -1,70 +1,50 @@
# -*- coding: utf-8 -*-
# Copyright 2011 Daniel Reis
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import os
import logging
import psycopg2
from odoo import models, fields, api, _
from odoo.exceptions import Warning as UserError
import odoo.tools as tools
from contextlib import contextmanager
from odoo import _, api, fields, models, tools
from ..exceptions import ConnectionFailedError, ConnectionSuccessError
_logger = logging.getLogger(__name__)
CONNECTORS = []
try:
import sqlalchemy
CONNECTORS.append(('sqlite', 'SQLite'))
try:
import pymssql
CONNECTORS.append(('mssql', 'Microsoft SQL Server'))
assert pymssql
except (ImportError, AssertionError):
_logger.info('MS SQL Server not available. Please install "pymssql"\
python package.')
try:
import MySQLdb
CONNECTORS.append(('mysql', 'MySQL'))
assert MySQLdb
except (ImportError, AssertionError):
_logger.info('MySQL not available. Please install "mysqldb"\
python package.')
except:
_logger.info('SQL Alchemy not available. Please install "slqalchemy"\
python package.')
try:
import pyodbc
CONNECTORS.append(('pyodbc', 'ODBC'))
except:
_logger.info('ODBC libraries not available. Please install "unixodbc"\
and "python-pyodbc" packages.')
try:
import cx_Oracle
CONNECTORS.append(('cx_Oracle', 'Oracle'))
except:
_logger.info('Oracle libraries not available. Please install "cx_Oracle"\
python package.')
try:
import fdb
CONNECTORS.append(('fdb', 'Firebird'))
except:
_logger.info('Firebird libraries not available. Please install "fdb"\
python package.')
CONNECTORS.append(('postgresql', 'PostgreSQL'))
class BaseExternalDbsource(models.Model):
""" It provides logic for connection to an external data source
Classes implementing this interface must provide the following methods
suffixed with the adapter type. See the method definitions and examples
for more information:
* ``connection_open_*``
* ``connection_close_*``
* ``execute_*``
Optional methods for adapters to implement:
* ``remote_browse_*``
* ``remote_create_*``
* ``remote_delete_*``
* ``remote_search_*``
* ``remote_update_*``
"""
_name = "base.external.dbsource"
_description = 'External Database Sources'
name = fields.Char('Datasource name', required=True, size=64)
CONNECTORS = [
('postgresql', 'PostgreSQL'),
]
# This is appended to the conn string if pass declared but not detected.
# Children should declare PWD_STRING_CONNECTOR (such as PWD_STRING_FBD)
# to allow for override.
PWD_STRING = 'PWD=%s;'
name = fields.Char('Datasource name', required=True, size=64)
conn_string = fields.Text('Connection string', help="""
Sample connection strings:
- Microsoft SQL Server:
@@ -72,64 +52,99 @@ class BaseExternalDbsource(models.Model):
- MySQL: mysql://user:%s@server:port/dbname
- ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa
- ORACLE: username/%s@//server.address:port/instance
- FireBird: host=localhost;database=mydatabase.gdb;user=sysdba;password=%s;
port=3050;charset=utf8
- PostgreSQL:
dbname='template1' user='dbuser' host='localhost' port='5432' \
password=%s
- SQLite: sqlite:///test.db
- Elasticsearch: https://user:%s@localhost:9200
""")
conn_string_full = fields.Text(
readonly=True,
compute='_compute_conn_string_full',
)
password = fields.Char('Password', size=40)
client_cert = fields.Text()
client_key = fields.Text()
ca_certs = fields.Char(
help='Path to CA Certs file on server.',
)
connector = fields.Selection(
CONNECTORS, 'Connector', required=True,
help="If a connector is missing from the list, check the server "
"log to confirm that the required components were detected.",
)
connector = fields.Selection(CONNECTORS, 'Connector', required=True,
help="If a connector is missing from the\
list, check the server log to confirm\
that the required components were\
detected.")
current_table = None
@api.multi
def conn_open(self):
"""The connection is open here."""
@api.depends('conn_string', 'password')
def _compute_conn_string_full(self):
for record in self:
if record.password:
if '%s' not in record.conn_string:
pwd_string = getattr(
record,
'PWD_STRING_%s' % record.connector.upper(),
record.PWD_STRING,
)
record.conn_string += pwd_string
record.conn_string_full = record.conn_string % record.password
else:
record.conn_string_full = record.conn_string
self.ensure_one()
# Get dbsource record
# Build the full connection string
connStr = self.conn_string
if self.password:
if '%s' not in self.conn_string:
connStr += ';PWD=%s'
connStr = connStr % self.password
# Try to connect
if self.connector == 'cx_Oracle':
os.environ['NLS_LANG'] = 'AMERICAN_AMERICA.UTF8'
conn = cx_Oracle.connect(connStr)
elif self.connector == 'pyodbc':
conn = pyodbc.connect(connStr)
elif self.connector in ('sqlite', 'mysql', 'mssql'):
conn = sqlalchemy.create_engine(connStr).connect()
elif self.connector == 'fdb':
kwargs = dict([x.split('=') for x in connStr.split(';')])
conn = fdb.connect(**kwargs)
elif self.connector == 'postgresql':
conn = psycopg2.connect(connStr)
return conn
# Interface
@api.multi
def execute(self, sqlquery, sqlparams=None, metadata=False,
context=None):
"""Executes SQL and returns a list of rows.
def change_table(self, name):
""" Change the table that is used for CRUD operations """
self.current_table = name
"sqlparams" can be a dict of values, that can be referenced in
the SQL statement using "%(key)s" or, in the case of Oracle,
@api.multi
def connection_close(self, connection):
""" It closes the connection to the data source.
This method calls adapter method of this same name, suffixed with
the adapter type.
"""
method = self._get_adapter_method('connection_close')
return method(connection)
@api.multi
@contextmanager
def connection_open(self):
""" It provides a context manager for the data source.
This method calls adapter method of this same name, suffixed with
the adapter type.
"""
method = self._get_adapter_method('connection_open')
try:
connection = method()
yield connection
finally:
try:
self.connection_close(connection)
except:
_logger.exception('Connection close failure.')
@api.multi
def execute(
self, query=None, execute_params=None, metadata=False, **kwargs
):
""" Executes a query and returns a list of rows.
"execute_params" can be a dict of values, that can be referenced
in the SQL statement using "%(key)s" or, in the case of Oracle,
":key".
Example:
sqlquery = "select * from mytable where city = %(city)s and
query = "SELECT * FROM mytable WHERE city = %(city)s AND
date > %(dt)s"
params = {'city': 'Lisbon',
'dt': datetime.datetime(2000, 12, 31)}
execute_params = {
'city': 'Lisbon',
'dt': datetime.datetime(2000, 12, 31),
}
If metadata=True, it will instead return a dict containing the
rows list and the columns list, in the format:
@@ -137,52 +152,202 @@ class BaseExternalDbsource(models.Model):
, 'rows': [ (a0, b0, ...), (a1, b1, ...), ...] }
"""
rows, cols = list(), list()
for obj in self:
conn = obj.conn_open()
if obj.connector in ["sqlite", "mysql", "mssql"]:
# using sqlalchemy
cur = conn.execute(sqlquery, sqlparams)
if metadata:
cols = cur.keys()
rows = [r for r in cur]
# Old API compatibility
if not query:
try:
query = kwargs['sqlquery']
except KeyError:
raise TypeError(_('query is a required argument'))
if not execute_params:
try:
execute_params = kwargs['sqlparams']
except KeyError:
pass
elif obj.connector in ["fdb"]:
# using other db connectors
cur = conn.cursor()
for key in sqlparams:
sqlquery = sqlquery.replace('%%(%s)s' % key,
str(sqlparams[key]))
method = self._get_adapter_method('execute')
rows, cols = method(query, execute_params, metadata)
cur.execute(sqlquery)
rows = cur.fetchall()
else:
# using other db connectors
cur = conn.cursor()
cur.execute(sqlquery, sqlparams)
if metadata:
cols = [d[0] for d in cur.description]
rows = cur.fetchall()
conn.close()
if metadata:
return{'cols': cols, 'rows': rows}
return {'cols': cols, 'rows': rows}
else:
return rows
@api.multi
def connection_test(self):
"""Test of connection."""
self.ensure_one()
conn = False
try:
conn = self.conn_open()
except Exception as e:
raise UserError(_("Connection test failed: \
Here is what we got instead:\n %s") % tools.ustr(e))
finally:
if conn:
conn.close()
""" It tests the connection
# TODO: if OK a (wizard) message box should be displayed
raise UserError(_("Connection test succeeded: \
Everything seems properly set up!"))
Raises:
ConnectionSuccessError: On connection success
ConnectionFailedError: On connection failed
"""
for obj in self:
try:
with self.connection_open():
pass
except Exception as e:
raise ConnectionFailedError(_(
"Connection test failed:\n"
"Here is what we got instead:\n%s"
) % tools.ustr(e))
raise ConnectionSuccessError(_(
"Connection test succeeded:\n"
"Everything seems properly set up!",
))
@api.multi
def remote_browse(self, record_ids, *args, **kwargs):
""" It browses for and returns the records from remote by ID
This method calls adapter method of this same name, suffixed with
the adapter type.
Args:
record_ids: (list) List of remote IDs to browse.
*args: Positional arguments to be passed to adapter method.
**kwargs: Keyword arguments to be passed to adapter method.
Returns:
(iter) Iterator of record mappings that match the ID.
"""
assert self.current_table
method = self._get_adapter_method('remote_browse')
return method(record_ids, *args, **kwargs)
@api.multi
def remote_create(self, vals, *args, **kwargs):
""" It creates a record on the remote data source.
This method calls adapter method of this same name, suffixed with
the adapter type.
Args:
vals: (dict) Values to use for creation.
*args: Positional arguments to be passed to adapter method.
**kwargs: Keyword arguments to be passed to adapter method.
Returns:
(mapping) A mapping of the record that was created.
"""
assert self.current_table
method = self._get_adapter_method('remote_create')
return method(vals, *args, **kwargs)
@api.multi
def remote_delete(self, record_ids, *args, **kwargs):
""" It deletes records by ID on remote
This method calls adapter method of this same name, suffixed with
the adapter type.
Args:
record_ids: (list) List of remote IDs to delete.
*args: Positional arguments to be passed to adapter method.
**kwargs: Keyword arguments to be passed to adapter method.
Returns:
(iter) Iterator of bools indicating delete status.
"""
assert self.current_table
method = self._get_adapter_method('remote_delete')
return method(record_ids, *args, **kwargs)
@api.multi
def remote_search(self, query, *args, **kwargs):
""" It searches the remote for the query.
This method calls adapter method of this same name, suffixed with
the adapter type.
Args:
query: (mixed) Query domain as required by the adapter.
*args: Positional arguments to be passed to adapter method.
**kwargs: Keyword arguments to be passed to adapter method.
Returns:
(iter) Iterator of record mappings that match query.
"""
assert self.current_table
method = self._get_adapter_method('remote_search')
return method(query, *args, **kwargs)
@api.multi
def remote_update(self, record_ids, vals, *args, **kwargs):
""" It updates the remote records with the vals
This method calls adapter method of this same name, suffixed with
the adapter type.
Args:
record_ids: (list) List of remote IDs to delete.
*args: Positional arguments to be passed to adapter method.
**kwargs: Keyword arguments to be passed to adapter method.
Returns:
(iter) Iterator of record mappings that were updated.
"""
assert self.current_table
method = self._get_adapter_method('remote_update')
return method(record_ids, vals, *args, **kwargs)
# Adapters
def connection_close_postgresql(self, connection):
return connection.close()
def connection_open_postgresql(self):
return psycopg2.connect(self.conn_string)
def execute_postgresql(self, query, params, metadata):
return self._execute_generic(query, params, metadata)
def _execute_generic(self, query, params, metadata):
with self.connection_open() as connection:
cur = connection.cursor()
cur.execute(query, params)
cols = []
if metadata:
cols = [d[0] for d in cur.description]
rows = cur.fetchall()
return rows, cols
# Compatibility & Private
@api.multi
def conn_open(self):
""" It opens and returns a connection to the remote data source.
This method calls adapter method of this same name, suffixed with
the adapter type.
Deprecate:
This method has been replaced with ``connection_open``.
"""
with self.connection_open() as connection:
return connection
def _get_adapter_method(self, method_prefix):
""" It returns the connector adapter method for ``method_prefix``.
Args:
method_prefix: (str) Prefix of adapter method (such as
``connection_open``).
Raises:
NotImplementedError: When the method is not found
Returns:
(instancemethod)
"""
self.ensure_one()
method = '%s_%s' % (method_prefix, self.connector)
try:
return getattr(self, method)
except AttributeError:
raise NotImplementedError(_(
'"%s" method not found, check that all assets are installed '
'for the %s connector type.'
)) % (
method, self.connector,
)

View File

@@ -1,3 +1,3 @@
# -*- encoding: utf-8 -*-
from . import test_create_dbsource
from . import test_base_external_dbsource

View File

@@ -0,0 +1,247 @@
# -*- coding: utf-8 -*-
# Copyright 2016 LasLabs Inc.
import mock
from odoo.tests import common
from ..exceptions import ConnectionFailedError, ConnectionSuccessError
class TestBaseExternalDbsource(common.TransactionCase):
def setUp(self):
super(TestBaseExternalDbsource, self).setUp()
self.dbsource = self.env.ref('base_external_dbsource.demo_postgre')
def _test_adapter_method(
self, method_name, side_effect=None, return_value=None,
create=False, args=None, kwargs=None,
):
if args is None:
args = []
if kwargs is None:
kwargs = {}
adapter = '%s_postgresql' % method_name
with mock.patch.object(self.dbsource,
adapter, create=create) as adapter:
if side_effect is not None:
adapter.side_effect = side_effect
elif return_value is not None:
adapter.return_value = return_value
res = getattr(self.dbsource, method_name)(*args, **kwargs)
return res, adapter
def test_conn_string_full(self):
""" It should add password if string interpolation not detected """
self.dbsource.conn_string = 'User=Derp;'
self.dbsource.password = 'password'
expect = self.dbsource.conn_string + 'PWD=%s;' % self.dbsource.password
self.assertEqual(
self.dbsource.conn_string_full, expect,
)
# Interface
def test_connection_success(self):
""" It should raise for successful connection """
with self.assertRaises(ConnectionSuccessError):
self.dbsource.connection_test()
def test_connection_fail(self):
""" It should raise for failed/invalid connection """
with mock.patch.object(self.dbsource, 'connection_open') as conn:
conn.side_effect = Exception
with self.assertRaises(ConnectionFailedError):
self.dbsource.connection_test()
def test_connection_open_calls_close(self):
""" It should close connection after context ends """
with mock.patch.object(
self.dbsource, 'connection_close',
) as close:
with self.dbsource.connection_open():
pass
close.assert_called_once()
def test_connection_close(self):
""" It should call adapter's close method """
args = [mock.MagicMock()]
res, adapter = self._test_adapter_method(
'connection_close', args=args,
)
adapter.assert_called_once_with(args[0])
def test_execute_asserts_query_arg(self):
""" It should raise a TypeError if query and sqlquery not in args """
with self.assertRaises(TypeError):
self.dbsource.execute()
def test_execute_calls_adapter(self):
""" It should call the adapter methods with proper args """
expect = ('query', 'execute', 'metadata')
return_value = 'rows', 'cols'
res, adapter = self._test_adapter_method(
'execute', args=expect, return_value=return_value,
)
adapter.assert_called_once_with(*expect)
def test_execute_return(self):
""" It should return rows if not metadata """
expect = (True, True, False)
return_value = 'rows', 'cols'
res, adapter = self._test_adapter_method(
'execute', args=expect, return_value=return_value,
)
self.assertEqual(res, return_value[0])
def test_execute_return_metadata(self):
""" It should return rows and cols if metadata """
expect = (True, True, True)
return_value = 'rows', 'cols'
res, adapter = self._test_adapter_method(
'execute', args=expect, return_value=return_value,
)
self.assertEqual(
res,
{'rows': return_value[0],
'cols': return_value[1]},
)
def test_remote_browse(self):
""" It should call the adapter method with proper args """
args = [1], 'args'
kwargs = {'kwargs': True}
self.dbsource.current_table = 'table'
res, adapter = self._test_adapter_method(
'remote_browse', create=True, args=args, kwargs=kwargs,
)
adapter.assert_called_once_with(*args, **kwargs)
self.assertEqual(res, adapter())
def test_remote_browse_asserts_current_table(self):
""" It should raise AssertionError if a table not selected """
args = [1], 'args'
kwargs = {'kwargs': True}
with self.assertRaises(AssertionError):
res, adapter = self._test_adapter_method(
'remote_browse', create=True, args=args, kwargs=kwargs,
)
def test_remote_create(self):
""" It should call the adapter method with proper args """
args = {'val': 'Value'}, 'args'
kwargs = {'kwargs': True}
self.dbsource.current_table = 'table'
res, adapter = self._test_adapter_method(
'remote_create', create=True, args=args, kwargs=kwargs,
)
adapter.assert_called_once_with(*args, **kwargs)
self.assertEqual(res, adapter())
def test_remote_create_asserts_current_table(self):
""" It should raise AssertionError if a table not selected """
args = [1], 'args'
kwargs = {'kwargs': True}
with self.assertRaises(AssertionError):
res, adapter = self._test_adapter_method(
'remote_create', create=True, args=args, kwargs=kwargs,
)
def test_remote_delete(self):
""" It should call the adapter method with proper args """
args = [1], 'args'
kwargs = {'kwargs': True}
self.dbsource.current_table = 'table'
res, adapter = self._test_adapter_method(
'remote_delete', create=True, args=args, kwargs=kwargs,
)
adapter.assert_called_once_with(*args, **kwargs)
self.assertEqual(res, adapter())
def test_remote_delete_asserts_current_table(self):
""" It should raise AssertionError if a table not selected """
args = [1], 'args'
kwargs = {'kwargs': True}
with self.assertRaises(AssertionError):
res, adapter = self._test_adapter_method(
'remote_delete', create=True, args=args, kwargs=kwargs,
)
def test_remote_search(self):
""" It should call the adapter method with proper args """
args = {'search': 'query'}, 'args'
kwargs = {'kwargs': True}
self.dbsource.current_table = 'table'
res, adapter = self._test_adapter_method(
'remote_search', create=True, args=args, kwargs=kwargs,
)
adapter.assert_called_once_with(*args, **kwargs)
self.assertEqual(res, adapter())
def test_remote_search_asserts_current_table(self):
""" It should raise AssertionError if a table not selected """
args = [1], 'args'
kwargs = {'kwargs': True}
with self.assertRaises(AssertionError):
res, adapter = self._test_adapter_method(
'remote_search', create=True, args=args, kwargs=kwargs,
)
def test_remote_update(self):
""" It should call the adapter method with proper args """
args = [1], {'vals': 'Value'}, 'args'
kwargs = {'kwargs': True}
self.dbsource.current_table = 'table'
res, adapter = self._test_adapter_method(
'remote_update', create=True, args=args, kwargs=kwargs,
)
adapter.assert_called_once_with(*args, **kwargs)
self.assertEqual(res, adapter())
def test_remote_update_asserts_current_table(self):
""" It should raise AssertionError if a table not selected """
args = [1], 'args'
kwargs = {'kwargs': True}
with self.assertRaises(AssertionError):
res, adapter = self._test_adapter_method(
'remote_update', create=True, args=args, kwargs=kwargs,
)
# Postgres
def test_execute_postgresql(self):
""" It should call generic executor with proper args """
expect = ('query', 'execute', 'metadata')
with mock.patch.object(
self.dbsource, '_execute_generic', autospec=True,
) as execute:
execute.return_value = 'rows', 'cols'
self.dbsource.execute(*expect)
execute.assert_called_once_with(*expect)
# Old API Compat
def test_execute_calls_adapter_old_api(self):
""" It should call the adapter correctly if old kwargs provided """
expect = [None, None, 'metadata']
with mock.patch.object(
self.dbsource, 'execute_postgresql', autospec=True,
) as psql:
psql.return_value = 'rows', 'cols'
self.dbsource.execute(
*expect, sqlparams='params', sqlquery='query'
)
expect[0], expect[1] = 'query', 'params'
psql.assert_called_once_with(*expect)
def test_conn_open(self):
""" It should return open connection for use """
with mock.patch.object(
self.dbsource, 'connection_open', autospec=True,
) as connection:
res = self.dbsource.conn_open()
self.assertEqual(
res,
connection().__enter__(),
)

View File

@@ -1,66 +0,0 @@
# -*- coding: utf-8 -*-
from odoo.exceptions import Warning as UserError
from odoo.tests import common
import logging
class TestCreateDbsource(common.TransactionCase):
"""Test class for base_external_dbsource."""
def test_create_dbsource(self):
"""source creation should succeed."""
dbsource = self.env.ref('base_external_dbsource.demo_postgre')
try:
dbsource.connection_test()
except UserError as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Everything seems properly set up!' in str(e))
def test_create_dbsource_failed(self):
"""source creation without connection string should failed."""
dbsource = self.env.ref('base_external_dbsource.demo_postgre')
# Connection without connection_string
dbsource.conn_string = ""
try:
dbsource.connection_test()
except UserError as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Here is what we got instead:' in str(e))
def test_create_dbsource_without_connector_failed(self):
"""source creation with other connector should failed."""
dbsource = self.env.ref('base_external_dbsource.demo_postgre')
# Connection to mysql
try:
dbsource.connector = "mysql"
dbsource.connection_test()
except ValueError as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Wrong value for' in str(e))
# Connection to mysql
try:
dbsource.connector = "pyodbc"
dbsource.connection_test()
except ValueError as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Wrong value for' in str(e))
# Connection to oracle
try:
dbsource.connector = "cx_Oracle"
dbsource.connection_test()
except ValueError as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Wrong value for' in str(e))
# Connection to firebird
try:
dbsource.connector = "fdb"
dbsource.connection_test()
except Exception as e:
logging.warning("Log = " + str(e))
self.assertTrue(u'Wrong value for' in str(e))