mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[MIG] base external dbsource
* Migration of base_external_dbsource to odoo 9.0 * Fixing test error * Moving test from yaml to python * Fixing pylint error in test class * Placeholder added to connection string text zone * improving test coverage OCA Transbot updated translations from Transifex
This commit is contained in:
committed by
Andrea Cattalani
parent
dd6bcb6363
commit
2bbaf300d0
82
base_external_dbsource/README.rst
Normal file
82
base_external_dbsource/README.rst
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||||
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
|
=========================
|
||||||
|
External Database Sources
|
||||||
|
=========================
|
||||||
|
|
||||||
|
This module allows you to define connections to foreign databases using ODBC,
|
||||||
|
Oracle Client or SQLAlchemy.
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
No installation required.
|
||||||
|
|
||||||
|
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 toconnect to Microsoft SQL Server.
|
||||||
|
* to install and configure Oracle Instant Client and cx_Oracle python library to connect to Oracle.
|
||||||
|
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
To use this module:
|
||||||
|
|
||||||
|
* Go to Settings > Database Structure > Database Sources
|
||||||
|
* Click on Create to enter the following information:
|
||||||
|
|
||||||
|
* Datasource name
|
||||||
|
* Pasword
|
||||||
|
* Connector: Choose the database to which you want to connect
|
||||||
|
* Connection string : Specify how to connect to database
|
||||||
|
|
||||||
|
.. 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
|
||||||
|
|
||||||
|
Known issues / Roadmap
|
||||||
|
======================
|
||||||
|
|
||||||
|
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**>`_.
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Daniel Reis <dreis.pt@hotmail.com>
|
||||||
|
* Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>
|
||||||
|
* Gervais Naoussi <gervaisnaoussi@gmail.com>
|
||||||
|
|
||||||
|
Maintainer
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. image:: https://odoo-community.org/logo.png
|
||||||
|
:alt: Odoo Community Association
|
||||||
|
:target: https://odoo-community.org
|
||||||
|
|
||||||
|
This module is maintained by the OCA.
|
||||||
|
|
||||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
mission is to support the collaborative development of Odoo features and
|
||||||
|
promote its widespread use.
|
||||||
|
|
||||||
|
To contribute to this module, please visit http://odoo-community.org.
|
||||||
@@ -19,6 +19,4 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
from . import base_external_dbsource
|
from . import models
|
||||||
|
|
||||||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
|
||||||
|
|||||||
@@ -1,48 +1,13 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
|
||||||
#
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
# Daniel Reis, 2011
|
|
||||||
# Additional contributions by Maxime Chambreuil, Savoir-faire Linux
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as
|
|
||||||
# published by the Free Software Foundation, either version 3 of the
|
|
||||||
# License, or (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU Affero General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'External Database Sources',
|
'name': 'External Database Sources',
|
||||||
'version': '8.0.1.3.0',
|
'version': '9.0.1.0.0',
|
||||||
'category': 'Tools',
|
'category': 'Tools',
|
||||||
'description': """
|
'author': "Daniel Reis,Odoo Community Association (OCA)",
|
||||||
This module allows you to define connections to foreign databases using ODBC,
|
'website': 'https://github.com/OCA/server-tools',
|
||||||
Oracle Client or SQLAlchemy.
|
'license': 'AGPL-3',
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
============
|
|
||||||
|
|
||||||
* Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>
|
|
||||||
""",
|
|
||||||
'author': 'Daniel Reis',
|
|
||||||
'website': 'http://launchpad.net/addons-tko',
|
|
||||||
'images': [
|
'images': [
|
||||||
'images/screenshot01.png',
|
'images/screenshot01.png',
|
||||||
],
|
],
|
||||||
@@ -50,14 +15,11 @@ Contributors
|
|||||||
'base',
|
'base',
|
||||||
],
|
],
|
||||||
'data': [
|
'data': [
|
||||||
'base_external_dbsource_view.xml',
|
'views/base_external_dbsource.xml',
|
||||||
'security/ir.model.access.csv',
|
'security/ir.model.access.csv',
|
||||||
],
|
],
|
||||||
'demo': [
|
'demo': [
|
||||||
'base_external_dbsource_demo.xml',
|
'demo/base_external_dbsource.xml',
|
||||||
],
|
|
||||||
'test': [
|
|
||||||
'test/dbsource_connect.yml',
|
|
||||||
],
|
],
|
||||||
'installable': True,
|
'installable': True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<openerp>
|
|
||||||
<data>
|
|
||||||
|
|
||||||
<record model="base.external.dbsource" id="demo_postgre">
|
|
||||||
<field name="name">PostgreSQL local</field>
|
|
||||||
<field name="conn_string">dbname='postgres' password=%s</field>
|
|
||||||
<field name="password">postgresql</field>
|
|
||||||
<field name="connector">postgresql</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
</data>
|
|
||||||
</openerp>
|
|
||||||
|
|
||||||
|
|
||||||
9
base_external_dbsource/demo/base_external_dbsource.xml
Normal file
9
base_external_dbsource/demo/base_external_dbsource.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<odoo>
|
||||||
|
<record model="base.external.dbsource" id="demo_postgre">
|
||||||
|
<field name="name">PostgreSQL local</field>
|
||||||
|
<field name="conn_string">dbname='postgres' password=%s</field>
|
||||||
|
<field name="password">postgresql</field>
|
||||||
|
<field name="connector">postgresql</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
151
base_external_dbsource/i18n/am.po
Normal file
151
base_external_dbsource/i18n/am.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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 M. Baeza <pedro.baeza@gmail.com>, 2016\n"
|
||||||
|
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: am\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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 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 en"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/ar.po
Normal file
151
base_external_dbsource/i18n/ar.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ar\n"
|
||||||
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "أنشئ بواسطة"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "أنشئ في"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "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."
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/bg.po
Normal file
151
base_external_dbsource/i18n/bg.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: bg\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Създадено от"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Създадено на"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/bs.po
Normal file
151
base_external_dbsource/i18n/bs.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: bs\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
152
base_external_dbsource/i18n/ca.po
Normal file
152
base_external_dbsource/i18n/ca.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Carles Antoli <carlesantoli@hotmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ca\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Connector"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Creat per"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creat el"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/cs.po
Normal file
151
base_external_dbsource/i18n/cs.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: cs\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Vytvořil(a)"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Vytvořeno"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Naposled upraveno"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/da.po
Normal file
151
base_external_dbsource/i18n/da.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: da\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Oprettet af"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Oprettet den"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sidst opdateret af"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sidst opdateret den"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
@@ -3,14 +3,16 @@
|
|||||||
# * base_external_dbsource
|
# * base_external_dbsource
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
# Ermin Trevisan <trevi@twanda.com>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: server-tools (8.0)\n"
|
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-09-29 11:14+0000\n"
|
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||||
"PO-Revision-Date: 2015-09-18 13:54+0000\n"
|
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
|
||||||
"Last-Translator: <>\n"
|
"Last-Translator: Ermin Trevisan <trevi@twanda.com>, 2016\n"
|
||||||
"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n"
|
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
@@ -18,7 +20,7 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Sample connection strings:\n"
|
" Sample connection strings:\n"
|
||||||
@@ -30,37 +32,42 @@ msgid ""
|
|||||||
" - PostgreSQL:\n"
|
" - PostgreSQL:\n"
|
||||||
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
||||||
" - SQLite: sqlite:///test.db\n"
|
" - SQLite: sqlite:///test.db\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid "Connection string"
|
msgid "Connection string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:163
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test failed!"
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:174
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test succeeded!"
|
msgid ""
|
||||||
|
"Connection test succeeded: Everything seems "
|
||||||
|
"properly set up!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,connector:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid "Connector"
|
msgid "Connector"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Erstellt von"
|
msgstr "Erstellt von"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Erstellt am:"
|
msgstr "Erstellt am:"
|
||||||
|
|
||||||
@@ -70,23 +77,22 @@ msgid "Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,name:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
|
||||||
msgid "Datasource name"
|
msgid "Datasource name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:175
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
|
||||||
#, python-format
|
msgid "Display Name"
|
||||||
msgid "Everything seems properly set up!"
|
msgstr "Anzeigename"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "External DB Source"
|
msgid "External DB Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_tree
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
msgid "External DB Sources"
|
msgid "External DB Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -97,20 +103,12 @@ msgid "External Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:164
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Here is what we got instead:\n"
|
|
||||||
" %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
|
||||||
#: field:base.external.dbsource,id:0
|
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,connector:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a connector is missing from the "
|
"If a connector is missing from the "
|
||||||
"list, check the server log to confirm "
|
"list, check the server log to confirm "
|
||||||
@@ -119,26 +117,36 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr "Zuletzt geändert am"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Zuletzt aktualisiert von"
|
msgstr "Zuletzt aktualisiert von"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zuletzt aktualisiert am"
|
msgstr "Zuletzt aktualisiert am"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,password:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
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
|
#. module: base_external_dbsource
|
||||||
#: selection:base.external.dbsource,connector:0
|
#: selection:base.external.dbsource,connector:0
|
||||||
msgid "PostgreSQL"
|
msgid "PostgreSQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "Test Connection"
|
msgid "Test Connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
151
base_external_dbsource/i18n/el_GR.po
Normal file
151
base_external_dbsource/i18n/el_GR.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Kostas Goutoudis <goutoudis@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: el_GR\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Δημιουργήθηκε στις"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Δημιουργήθηκε από"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/en_GB.po
Normal file
151
base_external_dbsource/i18n/en_GB.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: en_GB\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Created by"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
@@ -3,14 +3,15 @@
|
|||||||
# * base_external_dbsource
|
# * base_external_dbsource
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: server-tools (8.0)\n"
|
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-09-29 11:14+0000\n"
|
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||||
"PO-Revision-Date: 2015-09-18 13:54+0000\n"
|
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
|
||||||
"Last-Translator: <>\n"
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n"
|
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
@@ -18,7 +19,7 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Sample connection strings:\n"
|
" Sample connection strings:\n"
|
||||||
@@ -30,37 +31,42 @@ msgid ""
|
|||||||
" - PostgreSQL:\n"
|
" - PostgreSQL:\n"
|
||||||
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
||||||
" - SQLite: sqlite:///test.db\n"
|
" - SQLite: sqlite:///test.db\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid "Connection string"
|
msgid "Connection string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:163
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test failed!"
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:174
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test succeeded!"
|
msgid ""
|
||||||
|
"Connection test succeeded: Everything seems "
|
||||||
|
"properly set up!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,connector:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid "Connector"
|
msgid "Connector"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Creado por"
|
msgstr "Creado por"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Creado en"
|
msgstr "Creado en"
|
||||||
|
|
||||||
@@ -70,23 +76,22 @@ msgid "Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,name:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
|
||||||
msgid "Datasource name"
|
msgid "Datasource name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:175
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
|
||||||
#, python-format
|
msgid "Display Name"
|
||||||
msgid "Everything seems properly set up!"
|
msgstr "Nombre mostrado"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "External DB Source"
|
msgid "External DB Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_tree
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
msgid "External DB Sources"
|
msgid "External DB Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -97,20 +102,12 @@ msgid "External Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:164
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Here is what we got instead:\n"
|
|
||||||
" %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
|
||||||
#: field:base.external.dbsource,id:0
|
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,connector:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a connector is missing from the "
|
"If a connector is missing from the "
|
||||||
"list, check the server log to confirm "
|
"list, check the server log to confirm "
|
||||||
@@ -119,26 +116,36 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_uid:0
|
#: 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"
|
msgid "Last Updated by"
|
||||||
msgstr "Última actualización por"
|
msgstr "Última actualización por"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última actualización el"
|
msgstr "Última actualización el"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,password:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
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
|
#. module: base_external_dbsource
|
||||||
#: selection:base.external.dbsource,connector:0
|
#: selection:base.external.dbsource,connector:0
|
||||||
msgid "PostgreSQL"
|
msgid "PostgreSQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "Test Connection"
|
msgid "Test Connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
151
base_external_dbsource/i18n/es_AR.po
Normal file
151
base_external_dbsource/i18n/es_AR.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_AR\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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 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 "Última actualización el"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_CO.po
Normal file
151
base_external_dbsource/i18n/es_CO.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_CO\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_CR.po
Normal file
151
base_external_dbsource/i18n/es_CR.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_CR\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_DO.po
Normal file
151
base_external_dbsource/i18n/es_DO.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_DO\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_EC.po
Normal file
151
base_external_dbsource/i18n/es_EC.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_EC\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_ES.po
Normal file
151
base_external_dbsource/i18n/es_ES.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_ES\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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 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 en"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_MX.po
Normal file
151
base_external_dbsource/i18n/es_MX.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_MX\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Conector"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_PY.po
Normal file
151
base_external_dbsource/i18n/es_PY.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_PY\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/es_VE.po
Normal file
151
base_external_dbsource/i18n/es_VE.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: es_VE\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/et.po
Normal file
151
base_external_dbsource/i18n/et.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: et\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Loodud"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/eu.po
Normal file
151
base_external_dbsource/i18n/eu.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: eu\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/fa.po
Normal file
151
base_external_dbsource/i18n/fa.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: fa\n"
|
||||||
|
"Plural-Forms: nplurals=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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "ایجاد شده توسط"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "ایجاد شده در"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "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."
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/fi.po
Normal file
151
base_external_dbsource/i18n/fi.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016\n"
|
||||||
|
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: fi\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Luonut"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Luotu"
|
||||||
|
|
||||||
|
#. 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 "Nimi"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Viimeksi muokattu"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Viimeksi päivittänyt"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Viimeksi päivitetty"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
@@ -3,14 +3,15 @@
|
|||||||
# * base_external_dbsource
|
# * base_external_dbsource
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: server-tools (8.0)\n"
|
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-09-29 11:14+0000\n"
|
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||||
"PO-Revision-Date: 2015-09-18 13:54+0000\n"
|
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
|
||||||
"Last-Translator: <>\n"
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||||
"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\n"
|
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
@@ -18,7 +19,7 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Sample connection strings:\n"
|
" Sample connection strings:\n"
|
||||||
@@ -30,37 +31,42 @@ msgid ""
|
|||||||
" - PostgreSQL:\n"
|
" - PostgreSQL:\n"
|
||||||
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
||||||
" - SQLite: sqlite:///test.db\n"
|
" - SQLite: sqlite:///test.db\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid "Connection string"
|
msgid "Connection string"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:163
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test failed!"
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:174
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test succeeded!"
|
msgid ""
|
||||||
|
"Connection test succeeded: Everything seems "
|
||||||
|
"properly set up!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,connector:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid "Connector"
|
msgid "Connector"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Créé par"
|
msgstr "Créé par"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
|
||||||
@@ -70,23 +76,22 @@ msgid "Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,name:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
|
||||||
msgid "Datasource name"
|
msgid "Datasource name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:175
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
|
||||||
#, python-format
|
msgid "Display Name"
|
||||||
msgid "Everything seems properly set up!"
|
msgstr "Nom à afficher"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "External DB Source"
|
msgid "External DB Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_tree
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
msgid "External DB Sources"
|
msgid "External DB Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -97,20 +102,12 @@ msgid "External Database Sources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:164
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Here is what we got instead:\n"
|
|
||||||
" %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
|
||||||
#: field:base.external.dbsource,id:0
|
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,connector:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a connector is missing from the "
|
"If a connector is missing from the "
|
||||||
"list, check the server log to confirm "
|
"list, check the server log to confirm "
|
||||||
@@ -119,26 +116,36 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
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"
|
msgid "Last Updated by"
|
||||||
msgstr "Dernière mise à jour par"
|
msgstr "Dernière mise à jour par"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Dernière mise à jour le"
|
msgstr "Dernière mise à jour le"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,password:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
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
|
#. module: base_external_dbsource
|
||||||
#: selection:base.external.dbsource,connector:0
|
#: selection:base.external.dbsource,connector:0
|
||||||
msgid "PostgreSQL"
|
msgid "PostgreSQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "Test Connection"
|
msgid "Test Connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
152
base_external_dbsource/i18n/fr_CA.po
Normal file
152
base_external_dbsource/i18n/fr_CA.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Malorni <mm@microcom.ca>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: fr_CA\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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 "Créé le"
|
||||||
|
|
||||||
|
#. 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 "Afficher le nom"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Identifiant"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/fr_CH.po
Normal file
151
base_external_dbsource/i18n/fr_CH.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: fr_CH\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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 "Créé le"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Modifié 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 "Modifié le"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/gl.po
Normal file
151
base_external_dbsource/i18n/gl.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# César Castro Cruz <ulmroan@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: gl\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Creada 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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Modificado por última vez 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 "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 "Última actualización"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/gl_ES.po
Normal file
151
base_external_dbsource/i18n/gl_ES.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Alejandro Santana <alejandrosantana@anubia.es>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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: Alejandro Santana <alejandrosantana@anubia.es>, 2016\n"
|
||||||
|
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: gl_ES\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/he.po
Normal file
151
base_external_dbsource/i18n/he.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: he\n"
|
||||||
|
"Plural-Forms: nplurals=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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "נוצר על ידי"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "נוצר ב-"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "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."
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/hr.po
Normal file
151
base_external_dbsource/i18n/hr.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: hr\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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 "
|
||||||
|
|
||||||
|
#. 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 "Prikaži naziv"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Zadnja izmjena na"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/hr_HR.po
Normal file
151
base_external_dbsource/i18n/hr_HR.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Bole <bole@dajmi5.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: hr_HR\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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"
|
||||||
|
|
||||||
|
#. 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 "Naziv"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/hu.po
Normal file
151
base_external_dbsource/i18n/hu.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: hu\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Csatoló"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
|
msgid "Created by"
|
||||||
|
msgstr "Készítette"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Létrehozás dátuma"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "Azonosító 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/id.po
Normal file
151
base_external_dbsource/i18n/id.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: id\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Dibuat oleh"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Dibuat pada"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Diperbaharui oleh"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Diperbaharui pada"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
152
base_external_dbsource/i18n/it.po
Normal file
152
base_external_dbsource/i18n/it.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Paolo Valier <paolo.valier@hotmail.it>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: it\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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 "Nome da visualizzare"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 modifica il"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Password"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr "Prova la Connessione"
|
||||||
151
base_external_dbsource/i18n/ja.po
Normal file
151
base_external_dbsource/i18n/ja.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ja\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "作成者"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "作成日"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/ko.po
Normal file
151
base_external_dbsource/i18n/ko.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ko\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "작성자"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "작성일"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/lt.po
Normal file
151
base_external_dbsource/i18n/lt.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: lt\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Sukūrė"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Sukurta"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/lt_LT.po
Normal file
151
base_external_dbsource/i18n/lt_LT.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Arminas Grigonis <arminas@versada.lt>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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: Arminas Grigonis <arminas@versada.lt>, 2016\n"
|
||||||
|
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: lt_LT\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Sukūrė"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Sukurta"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/lv.po
Normal file
151
base_external_dbsource/i18n/lv.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: lv\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Izveidoja"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Izveidots"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Pēdējo reizi atjaunoja"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Pēdējās izmaiņas"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/mk.po
Normal file
151
base_external_dbsource/i18n/mk.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: mk\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Креирано од"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Креирано на"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/mn.po
Normal file
151
base_external_dbsource/i18n/mn.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: mn\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Үүсгэгч"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Үүсгэсэн огноо"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/nb.po
Normal file
151
base_external_dbsource/i18n/nb.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: nb\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "External DB Source"
|
||||||
|
msgstr "Ekstern databasekilde"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sist oppdatert"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/nb_NO.po
Normal file
151
base_external_dbsource/i18n/nb_NO.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016\n"
|
||||||
|
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: nb_NO\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Laget av"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Laget den"
|
||||||
|
|
||||||
|
#. 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 "Vis navn"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Sist endret den"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Sist oppdatert av"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Sist oppdatert den"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
152
base_external_dbsource/i18n/nl.po
Normal file
152
base_external_dbsource/i18n/nl.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Connector"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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 "Weergave naam"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Wachtwoord"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/nl_BE.po
Normal file
151
base_external_dbsource/i18n/nl_BE.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: nl_BE\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Gemaakt door"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Gemaakt op"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/pl.po
Normal file
151
base_external_dbsource/i18n/pl.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/pt.po
Normal file
151
base_external_dbsource/i18n/pt.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: pt\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Criado por"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Criado em"
|
||||||
|
|
||||||
|
#. 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 "Nome a Apresentar"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Ú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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
@@ -3,15 +3,15 @@
|
|||||||
# * base_external_dbsource
|
# * base_external_dbsource
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: server-tools (8.0)\n"
|
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-09-29 11:14+0000\n"
|
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||||
"PO-Revision-Date: 2015-09-19 01:07+0000\n"
|
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
|
||||||
"Last-Translator: Armando Vulcano Junior <vulcano@uol.com.br>\n"
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n"
|
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
@@ -19,7 +19,7 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Sample connection strings:\n"
|
" Sample connection strings:\n"
|
||||||
@@ -31,37 +31,42 @@ msgid ""
|
|||||||
" - PostgreSQL:\n"
|
" - PostgreSQL:\n"
|
||||||
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
||||||
" - SQLite: sqlite:///test.db\n"
|
" - SQLite: sqlite:///test.db\n"
|
||||||
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid "Connection string"
|
msgid "Connection string"
|
||||||
msgstr "Caracter de Conexão"
|
msgstr "Caracter de Conexão"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:163
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test failed!"
|
msgid ""
|
||||||
msgstr "Teste de conexão falhou!"
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:174
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test succeeded!"
|
msgid ""
|
||||||
msgstr "Teste de conexão com sucesso\""
|
"Connection test succeeded: Everything seems "
|
||||||
|
"properly set up!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,connector:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid "Connector"
|
msgid "Connector"
|
||||||
msgstr "Conector"
|
msgstr "Conector"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Criado por"
|
msgstr "Criado por"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Criado em"
|
msgstr "Criado em"
|
||||||
|
|
||||||
@@ -71,23 +76,22 @@ msgid "Database Sources"
|
|||||||
msgstr "Bancos de Dados Origem"
|
msgstr "Bancos de Dados Origem"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,name:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
|
||||||
msgid "Datasource name"
|
msgid "Datasource name"
|
||||||
msgstr "Nome Origem-de-dados"
|
msgstr "Nome Origem-de-dados"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:175
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
|
||||||
#, python-format
|
msgid "Display Name"
|
||||||
msgid "Everything seems properly set up!"
|
msgstr ""
|
||||||
msgstr "Tudo parece configurado de acordo!"
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "External DB Source"
|
msgid "External DB Source"
|
||||||
msgstr "Fonte BD externo"
|
msgstr "Fonte BD externo"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_tree
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
msgid "External DB Sources"
|
msgid "External DB Sources"
|
||||||
msgstr "Fontes BD externo"
|
msgstr "Fontes BD externo"
|
||||||
|
|
||||||
@@ -98,48 +102,52 @@ msgid "External Database Sources"
|
|||||||
msgstr "Fontes Banco de Dados Externo"
|
msgstr "Fontes Banco de Dados Externo"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:164
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Here is what we got instead:\n"
|
|
||||||
" %s"
|
|
||||||
msgstr "Aqui está o que temos em vez\n%s"
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
|
||||||
#: field:base.external.dbsource,id:0
|
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "Identificação"
|
msgstr "Identificação"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,connector:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a connector is missing from the "
|
"If a connector is missing from the "
|
||||||
"list, check the server log to confirm "
|
"list, check the server log to confirm "
|
||||||
"that the required components were "
|
"that the required components were "
|
||||||
"detected."
|
"detected."
|
||||||
msgstr "Se um conector está faltando na lista, verifique o histórico do servidor para confirmar se os componentes necessários foram detectados."
|
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
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
msgid "Last Updated by"
|
msgid "Last Updated by"
|
||||||
msgstr "Última atualização por"
|
msgstr "Última atualização por"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Última atualização em"
|
msgstr "Última atualização em"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,password:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Senha"
|
msgstr "Senha"
|
||||||
|
|
||||||
|
#. 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
|
#. module: base_external_dbsource
|
||||||
#: selection:base.external.dbsource,connector:0
|
#: selection:base.external.dbsource,connector:0
|
||||||
msgid "PostgreSQL"
|
msgid "PostgreSQL"
|
||||||
msgstr "PostgreSQL"
|
msgstr "PostgreSQL"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "Test Connection"
|
msgid "Test Connection"
|
||||||
msgstr "Conexão Teste"
|
msgstr "Conexão Teste"
|
||||||
|
|||||||
151
base_external_dbsource/i18n/pt_PT.po
Normal file
151
base_external_dbsource/i18n/pt_PT.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: pt_PT\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Criado por"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Criado em"
|
||||||
|
|
||||||
|
#. 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 "Nome a Apresentar"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "Ú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"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
152
base_external_dbsource/i18n/ro.po
Normal file
152
base_external_dbsource/i18n/ro.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ro\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Creat de"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Creat la"
|
||||||
|
|
||||||
|
#. 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 "Nume Afişat"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 actualizare î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 "Ultima actualizare făcută 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 "Ultima actualizare la"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/ru.po
Normal file
151
base_external_dbsource/i18n/ru.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: ru\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Создано"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Создан"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/sk.po
Normal file
151
base_external_dbsource/i18n/sk.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: sk\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Vytvoril"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Vytvorené"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Naposledy upravoval"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Naposledy upravované"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
@@ -3,15 +3,15 @@
|
|||||||
# * base_external_dbsource
|
# * base_external_dbsource
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: server-tools (8.0)\n"
|
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-09-29 11:14+0000\n"
|
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||||
"PO-Revision-Date: 2015-09-26 07:09+0000\n"
|
"PO-Revision-Date: 2016-09-10 02:52+0000\n"
|
||||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n"
|
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
@@ -19,7 +19,7 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" Sample connection strings:\n"
|
" Sample connection strings:\n"
|
||||||
@@ -31,37 +31,42 @@ msgid ""
|
|||||||
" - PostgreSQL:\n"
|
" - PostgreSQL:\n"
|
||||||
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
" dbname='template1' user='dbuser' host='localhost' port='5432' password=%s\n"
|
||||||
" - SQLite: sqlite:///test.db\n"
|
" - SQLite: sqlite:///test.db\n"
|
||||||
msgstr "\nVzorčni niz povezave:\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"
|
" "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,conn_string:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_conn_string
|
||||||
msgid "Connection string"
|
msgid "Connection string"
|
||||||
msgstr "Niz povezave"
|
msgstr "Niz povezave"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:163
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:169
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test failed!"
|
msgid ""
|
||||||
msgstr "Test povezave neuspešen!"
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:174
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Connection test succeeded!"
|
msgid ""
|
||||||
msgstr "Test povezave uspel!"
|
"Connection test succeeded: Everything seems "
|
||||||
|
"properly set up!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,connector:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid "Connector"
|
msgid "Connector"
|
||||||
msgstr "Povezovalnik"
|
msgstr "Povezovalnik"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_uid
|
||||||
msgid "Created by"
|
msgid "Created by"
|
||||||
msgstr "Ustvaril"
|
msgstr "Ustvaril"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,create_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
msgid "Created on"
|
msgid "Created on"
|
||||||
msgstr "Ustvarjeno"
|
msgstr "Ustvarjeno"
|
||||||
|
|
||||||
@@ -71,23 +76,22 @@ msgid "Database Sources"
|
|||||||
msgstr "Viri podatkovne baze"
|
msgstr "Viri podatkovne baze"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,name:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_name
|
||||||
msgid "Datasource name"
|
msgid "Datasource name"
|
||||||
msgstr "Naziv podatkovne baze"
|
msgstr "Naziv podatkovne baze"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:175
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_display_name
|
||||||
#, python-format
|
msgid "Display Name"
|
||||||
msgid "Everything seems properly set up!"
|
msgstr "Prikazni naziv"
|
||||||
msgstr "Kaže, da je vse pravilno nastavljeno!"
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "External DB Source"
|
msgid "External DB Source"
|
||||||
msgstr "Vir zunanje podatkovne baze"
|
msgstr "Vir zunanje podatkovne baze"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_tree
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
msgid "External DB Sources"
|
msgid "External DB Sources"
|
||||||
msgstr "Viri zunanjih podatkovnih baz"
|
msgstr "Viri zunanjih podatkovnih baz"
|
||||||
|
|
||||||
@@ -98,48 +102,52 @@ msgid "External Database Sources"
|
|||||||
msgstr "Viri zunanjih podatkovnih baz"
|
msgstr "Viri zunanjih podatkovnih baz"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: code:addons/base_external_dbsource/base_external_dbsource.py:164
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
#, python-format
|
|
||||||
msgid ""
|
|
||||||
"Here is what we got instead:\n"
|
|
||||||
" %s"
|
|
||||||
msgstr "Namesto tega smo dobili:\n %s"
|
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
|
||||||
#: field:base.external.dbsource,id:0
|
|
||||||
msgid "ID"
|
msgid "ID"
|
||||||
msgstr "ID"
|
msgstr "ID"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: help:base.external.dbsource,connector:0
|
#: model:ir.model.fields,help:base_external_dbsource.field_base_external_dbsource_connector
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a connector is missing from the "
|
"If a connector is missing from the "
|
||||||
"list, check the server log to confirm "
|
"list, check the server log to confirm "
|
||||||
"that the required components were "
|
"that the required components were "
|
||||||
"detected."
|
"detected."
|
||||||
msgstr "Če na seznamu manjka povezovalnik, preverite dnevnik strežnika, če so bile zahtevane komponente zaznane."
|
msgstr ""
|
||||||
|
"Če na seznamu manjka povezovalnik, preverite dnevnik strežnika, če so bile "
|
||||||
|
"zahtevane komponente zaznane."
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_uid:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource___last_update
|
||||||
|
msgid "Last Modified on"
|
||||||
|
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"
|
msgid "Last Updated by"
|
||||||
msgstr "Zadnjič posodobil"
|
msgstr "Zadnjič posodobil"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,write_date:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
msgid "Last Updated on"
|
msgid "Last Updated on"
|
||||||
msgstr "Zadnjič posodobljeno"
|
msgstr "Zadnjič posodobljeno"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: field:base.external.dbsource,password:0
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Geslo"
|
msgstr "Geslo"
|
||||||
|
|
||||||
|
#. 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
|
#. module: base_external_dbsource
|
||||||
#: selection:base.external.dbsource,connector:0
|
#: selection:base.external.dbsource,connector:0
|
||||||
msgid "PostgreSQL"
|
msgid "PostgreSQL"
|
||||||
msgstr "PostgreSQL"
|
msgstr "PostgreSQL"
|
||||||
|
|
||||||
#. module: base_external_dbsource
|
#. module: base_external_dbsource
|
||||||
#: view:base.external.dbsource:base_external_dbsource.view_dbsource_form
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
msgid "Test Connection"
|
msgid "Test Connection"
|
||||||
msgstr "Test povezave"
|
msgstr "Test povezave"
|
||||||
|
|||||||
151
base_external_dbsource/i18n/sr.po
Normal file
151
base_external_dbsource/i18n/sr.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: sr\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreiran"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/sr@latin.po
Normal file
151
base_external_dbsource/i18n/sr@latin.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: sr@latin\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Kreiran"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/sv.po
Normal file
151
base_external_dbsource/i18n/sv.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: sv\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Skapad av"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Skapad den"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Senast uppdaterad av"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_date
|
||||||
|
msgid "Last Updated on"
|
||||||
|
msgstr "Senast uppdaterad"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/th.po
Normal file
151
base_external_dbsource/i18n/th.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: th\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "สร้างโดย"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "สร้างเมื่อ"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_id
|
||||||
|
msgid "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."
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/tr.po
Normal file
151
base_external_dbsource/i18n/tr.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: tr\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Konnektör"
|
||||||
|
|
||||||
|
#. 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şturuldu"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.ui.menu,name:base_external_dbsource.menu_dbsource
|
||||||
|
msgid "Database Sources"
|
||||||
|
msgstr "Veritabanı Kaynakları"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "External DB Source"
|
||||||
|
msgstr "Dışarı "
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_tree
|
||||||
|
msgid "External DB Sources"
|
||||||
|
msgstr "Dış Veritabanı Kaynakları"
|
||||||
|
|
||||||
|
#. 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 "Dış veritabanı kaynakları"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "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 "Son güncellenme"
|
||||||
|
|
||||||
|
#. 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.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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr "Bağlantıyı Dene"
|
||||||
151
base_external_dbsource/i18n/uk.po
Normal file
151
base_external_dbsource/i18n/uk.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: uk\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. module: 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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "Створив"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "Створено"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/vi.po
Normal file
151
base_external_dbsource/i18n/vi.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: vi\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. 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"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/vi_VN.po
Normal file
151
base_external_dbsource/i18n/vi_VN.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: vi_VN\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "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 vào"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
msgstr "Cập nhật lần cuối bởi"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
152
base_external_dbsource/i18n/zh_CN.po
Normal file
152
base_external_dbsource/i18n/zh_CN.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Jeffery Chenn <jeffery9@gmail.com>, 2016
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: zh_CN\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 "创建人"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "创建时间"
|
||||||
|
|
||||||
|
#. 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 "显示名称"
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 "最后修改时间"
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
151
base_external_dbsource/i18n/zh_TW.po
Normal file
151
base_external_dbsource/i18n/zh_TW.po
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * base_external_dbsource
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 9.0c\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"
|
||||||
|
"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"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Language: zh_TW\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"
|
||||||
|
" "
|
||||||
|
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
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test failed: Here is what we got instead:\n"
|
||||||
|
" %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: code:addons/base_external_dbsource/models/base_external_dbsource.py:179
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"Connection test succeeded: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_create_date
|
||||||
|
msgid "Created on"
|
||||||
|
msgstr "建立於"
|
||||||
|
|
||||||
|
#. 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 ""
|
||||||
|
|
||||||
|
#. 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
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#. module: base_external_dbsource
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_write_uid
|
||||||
|
msgid "Last Updated by"
|
||||||
|
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
|
||||||
|
#: model:ir.model.fields,field_description:base_external_dbsource.field_base_external_dbsource_password
|
||||||
|
msgid "Password"
|
||||||
|
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
|
||||||
|
#: model:ir.ui.view,arch_db:base_external_dbsource.view_dbsource_form
|
||||||
|
msgid "Test Connection"
|
||||||
|
msgstr ""
|
||||||
22
base_external_dbsource/models/__init__.py
Normal file
22
base_external_dbsource/models/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# Daniel Reis
|
||||||
|
# 2011
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
# published by the Free Software Foundation, either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
from . import base_external_dbsource
|
||||||
@@ -21,8 +21,9 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import logging
|
import logging
|
||||||
from openerp.osv import orm, fields
|
import psycopg2
|
||||||
from openerp.tools.translate import _
|
from openerp import models, fields, api, _
|
||||||
|
from openerp.exceptions import Warning as UserError
|
||||||
import openerp.tools as tools
|
import openerp.tools as tools
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
@@ -62,16 +63,14 @@ except:
|
|||||||
_logger.info('Oracle libraries not available. Please install "cx_Oracle"\
|
_logger.info('Oracle libraries not available. Please install "cx_Oracle"\
|
||||||
python package.')
|
python package.')
|
||||||
|
|
||||||
import psycopg2
|
|
||||||
CONNECTORS.append(('postgresql', 'PostgreSQL'))
|
CONNECTORS.append(('postgresql', 'PostgreSQL'))
|
||||||
|
|
||||||
|
|
||||||
class base_external_dbsource(orm.Model):
|
class BaseExternalDbsource(models.Model):
|
||||||
_name = "base.external.dbsource"
|
_name = "base.external.dbsource"
|
||||||
_description = 'External Database Sources'
|
_description = 'External Database Sources'
|
||||||
_columns = {
|
name = fields.Char('Datasource name', required=True, size=64)
|
||||||
'name': fields.char('Datasource name', required=True, size=64),
|
conn_string = fields.Text('Connection string', help="""
|
||||||
'conn_string': fields.text('Connection string', help="""
|
|
||||||
Sample connection strings:
|
Sample connection strings:
|
||||||
- Microsoft SQL Server:
|
- Microsoft SQL Server:
|
||||||
mssql+pymssql://username:%s@server:port/dbname?charset=utf8
|
mssql+pymssql://username:%s@server:port/dbname?charset=utf8
|
||||||
@@ -79,41 +78,45 @@ Sample connection strings:
|
|||||||
- ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa
|
- ODBC: DRIVER={FreeTDS};SERVER=server.address;Database=mydb;UID=sa
|
||||||
- ORACLE: username/%s@//server.address:port/instance
|
- ORACLE: username/%s@//server.address:port/instance
|
||||||
- PostgreSQL:
|
- PostgreSQL:
|
||||||
dbname='template1' user='dbuser' host='localhost' port='5432' password=%s
|
dbname='template1' user='dbuser' host='localhost' port='5432' \
|
||||||
|
password=%s
|
||||||
- SQLite: sqlite:///test.db
|
- SQLite: sqlite:///test.db
|
||||||
"""),
|
""")
|
||||||
'password': fields.char('Password', size=40),
|
password = fields.Char('Password', size=40)
|
||||||
'connector': fields.selection(CONNECTORS, 'Connector',
|
connector = fields.Selection(CONNECTORS, 'Connector', required=True,
|
||||||
required=True,
|
|
||||||
help="If a connector is missing from the\
|
help="If a connector is missing from the\
|
||||||
list, check the server log to confirm\
|
list, check the server log to confirm\
|
||||||
that the required components were\
|
that the required components were\
|
||||||
detected."),
|
detected.")
|
||||||
}
|
|
||||||
|
|
||||||
def conn_open(self, cr, uid, id1):
|
@api.multi
|
||||||
|
def conn_open(self):
|
||||||
|
"""The connection is open here."""
|
||||||
|
|
||||||
|
self.ensure_one()
|
||||||
# Get dbsource record
|
# Get dbsource record
|
||||||
data = self.browse(cr, uid, id1)
|
# data = self.browse(cr, uid, id1)
|
||||||
# Build the full connection string
|
# Build the full connection string
|
||||||
connStr = data.conn_string
|
connStr = self.conn_string
|
||||||
if data.password:
|
if self.password:
|
||||||
if '%s' not in data.conn_string:
|
if '%s' not in self.conn_string:
|
||||||
connStr += ';PWD=%s'
|
connStr += ';PWD=%s'
|
||||||
connStr = connStr % data.password
|
connStr = connStr % self.password
|
||||||
# Try to connect
|
# Try to connect
|
||||||
if data.connector == 'cx_Oracle':
|
if self.connector == 'cx_Oracle':
|
||||||
os.environ['NLS_LANG'] = 'AMERICAN_AMERICA.UTF8'
|
os.environ['NLS_LANG'] = 'AMERICAN_AMERICA.UTF8'
|
||||||
conn = cx_Oracle.connect(connStr)
|
conn = cx_Oracle.connect(connStr)
|
||||||
elif data.connector == 'pyodbc':
|
elif self.connector == 'pyodbc':
|
||||||
conn = pyodbc.connect(connStr)
|
conn = pyodbc.connect(connStr)
|
||||||
elif data.connector in ('sqlite', 'mysql', 'mssql'):
|
elif self.connector in ('sqlite', 'mysql', 'mssql'):
|
||||||
conn = sqlalchemy.create_engine(connStr).connect()
|
conn = sqlalchemy.create_engine(connStr).connect()
|
||||||
elif data.connector == 'postgresql':
|
elif self.connector == 'postgresql':
|
||||||
conn = psycopg2.connect(connStr)
|
conn = psycopg2.connect(connStr)
|
||||||
|
|
||||||
return conn
|
return conn
|
||||||
|
|
||||||
def execute(self, cr, uid, ids, sqlquery, sqlparams=None, metadata=False,
|
@api.multi
|
||||||
|
def execute(self, sqlquery, sqlparams=None, metadata=False,
|
||||||
context=None):
|
context=None):
|
||||||
"""Executes SQL and returns a list of rows.
|
"""Executes SQL and returns a list of rows.
|
||||||
|
|
||||||
@@ -131,10 +134,10 @@ Sample connection strings:
|
|||||||
{ 'cols': [ 'col_a', 'col_b', ...]
|
{ 'cols': [ 'col_a', 'col_b', ...]
|
||||||
, 'rows': [ (a0, b0, ...), (a1, b1, ...), ...] }
|
, 'rows': [ (a0, b0, ...), (a1, b1, ...), ...] }
|
||||||
"""
|
"""
|
||||||
data = self.browse(cr, uid, ids)
|
# data = self.browse(cr, uid, ids)
|
||||||
rows, cols = list(), list()
|
rows, cols = list(), list()
|
||||||
for obj in data:
|
for obj in self:
|
||||||
conn = self.conn_open(cr, uid, obj.id)
|
conn = obj.conn_open()
|
||||||
if obj.connector in ["sqlite", "mysql", "mssql"]:
|
if obj.connector in ["sqlite", "mysql", "mssql"]:
|
||||||
# using sqlalchemy
|
# using sqlalchemy
|
||||||
cur = conn.execute(sqlquery, sqlparams)
|
cur = conn.execute(sqlquery, sqlparams)
|
||||||
@@ -154,15 +157,17 @@ Sample connection strings:
|
|||||||
else:
|
else:
|
||||||
return rows
|
return rows
|
||||||
|
|
||||||
def connection_test(self, cr, uid, ids, context=None):
|
@api.multi
|
||||||
for obj in self.browse(cr, uid, ids, context):
|
def connection_test(self):
|
||||||
|
"""Test of connection."""
|
||||||
|
|
||||||
|
for obj in self:
|
||||||
conn = False
|
conn = False
|
||||||
try:
|
try:
|
||||||
conn = self.conn_open(cr, uid, obj.id)
|
conn = self.conn_open()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
raise orm.except_orm(_("Connection test failed!"),
|
raise UserError(_("Connection test failed: \
|
||||||
_("Here is what we got instead:\n %s")
|
Here is what we got instead:\n %s") % tools.ustr(e))
|
||||||
% tools.ustr(e))
|
|
||||||
finally:
|
finally:
|
||||||
try:
|
try:
|
||||||
if conn:
|
if conn:
|
||||||
@@ -171,5 +176,5 @@ Sample connection strings:
|
|||||||
# ignored, just a consequence of the previous exception
|
# ignored, just a consequence of the previous exception
|
||||||
pass
|
pass
|
||||||
# TODO: if OK a (wizard) message box should be displayed
|
# TODO: if OK a (wizard) message box should be displayed
|
||||||
raise orm.except_orm(_("Connection test succeeded!"),
|
raise UserError(_("Connection test succeeded: \
|
||||||
_("Everything seems properly set up!"))
|
Everything seems properly set up!"))
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
-
|
|
||||||
Connect to local Postgres.
|
|
||||||
-
|
|
||||||
!python {model: base.external.dbsource}: |
|
|
||||||
from openerp.osv.orm import except_orm
|
|
||||||
try:
|
|
||||||
self.connection_test(cr, uid, [ref("demo_postgre")])
|
|
||||||
except except_orm as e:
|
|
||||||
assert e.value == u'Everything seems properly set up!'
|
|
||||||
3
base_external_dbsource/tests/__init__.py
Normal file
3
base_external_dbsource/tests/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
|
from . import test_create_dbsource
|
||||||
58
base_external_dbsource/tests/test_create_dbsource.py
Normal file
58
base_external_dbsource/tests/test_create_dbsource.py
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from openerp.exceptions import Warning as UserError
|
||||||
|
from openerp.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))
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<openerp>
|
<odoo>
|
||||||
<data>
|
|
||||||
|
|
||||||
<!-- DBSource -->
|
<!-- DBSource -->
|
||||||
|
|
||||||
<record model="ir.ui.view" id="view_dbsource_tree">
|
<record model="ir.ui.view" id="view_dbsource_tree">
|
||||||
@@ -21,7 +19,7 @@
|
|||||||
<field name="name">base.external.dbsource.form</field>
|
<field name="name">base.external.dbsource.form</field>
|
||||||
<field name="model">base.external.dbsource</field>
|
<field name="model">base.external.dbsource</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<form string="External DB Source" version="7.0">
|
<form string="External DB Source">
|
||||||
<sheet>
|
<sheet>
|
||||||
<group>
|
<group>
|
||||||
<group>
|
<group>
|
||||||
@@ -33,7 +31,7 @@
|
|||||||
</group>
|
</group>
|
||||||
<group col="1">
|
<group col="1">
|
||||||
<field name="connector"/>
|
<field name="connector"/>
|
||||||
<field name="conn_string"/>
|
<field name="conn_string" placeholder="Please check the tooltip for connection string examples"/>
|
||||||
<button name="connection_test" string="Test Connection" type="object" icon="gtk-network"/>
|
<button name="connection_test" string="Test Connection" type="object" icon="gtk-network"/>
|
||||||
</group>
|
</group>
|
||||||
</sheet>
|
</sheet>
|
||||||
@@ -49,12 +47,5 @@
|
|||||||
<field name="view_id" ref="view_dbsource_tree"/>
|
<field name="view_id" ref="view_dbsource_tree"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem name="Database Sources"
|
<menuitem name="Database Sources" id="menu_dbsource" parent="base.next_id_9" action="action_dbsource"/>
|
||||||
id="menu_dbsource"
|
</odoo>
|
||||||
parent="base.next_id_9"
|
|
||||||
action="action_dbsource"/>
|
|
||||||
|
|
||||||
</data>
|
|
||||||
</openerp>
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user